@aws-sdk/client-iot-events 3.300.0 → 3.303.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/dist-cjs/models/models_0.js +52 -61
  2. package/dist-es/models/models_0.js +52 -61
  3. package/dist-types/commands/CreateAlarmModelCommand.d.ts +41 -53
  4. package/dist-types/commands/CreateDetectorModelCommand.d.ts +59 -140
  5. package/dist-types/commands/CreateInputCommand.d.ts +6 -6
  6. package/dist-types/commands/DeleteAlarmModelCommand.d.ts +1 -1
  7. package/dist-types/commands/DeleteDetectorModelCommand.d.ts +1 -1
  8. package/dist-types/commands/DeleteInputCommand.d.ts +1 -1
  9. package/dist-types/commands/DescribeAlarmModelCommand.d.ts +1 -1
  10. package/dist-types/commands/DescribeDetectorModelAnalysisCommand.d.ts +1 -1
  11. package/dist-types/commands/DescribeDetectorModelCommand.d.ts +1 -1
  12. package/dist-types/commands/DescribeInputCommand.d.ts +1 -1
  13. package/dist-types/commands/GetDetectorModelAnalysisResultsCommand.d.ts +1 -1
  14. package/dist-types/commands/ListAlarmModelVersionsCommand.d.ts +1 -1
  15. package/dist-types/commands/ListAlarmModelsCommand.d.ts +1 -1
  16. package/dist-types/commands/ListDetectorModelVersionsCommand.d.ts +1 -1
  17. package/dist-types/commands/ListDetectorModelsCommand.d.ts +1 -1
  18. package/dist-types/commands/ListInputRoutingsCommand.d.ts +5 -5
  19. package/dist-types/commands/ListInputsCommand.d.ts +1 -1
  20. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  21. package/dist-types/commands/PutLoggingOptionsCommand.d.ts +4 -4
  22. package/dist-types/commands/StartDetectorModelAnalysisCommand.d.ts +57 -138
  23. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  24. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  25. package/dist-types/commands/UpdateAlarmModelCommand.d.ts +39 -51
  26. package/dist-types/commands/UpdateDetectorModelCommand.d.ts +57 -138
  27. package/dist-types/commands/UpdateInputCommand.d.ts +4 -4
  28. package/dist-types/models/models_0.d.ts +97 -52
  29. package/dist-types/ts3.4/models/models_0.d.ts +67 -52
  30. package/package.json +34 -34
@@ -27,63 +27,63 @@ export interface UpdateDetectorModelCommandOutput extends UpdateDetectorModelRes
27
27
  * import { IoTEventsClient, UpdateDetectorModelCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
28
28
  * // const { IoTEventsClient, UpdateDetectorModelCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
29
29
  * const client = new IoTEventsClient(config);
30
- * const input = {
30
+ * const input = { // UpdateDetectorModelRequest
31
31
  * detectorModelName: "STRING_VALUE", // required
32
- * detectorModelDefinition: {
33
- * states: [ // required
34
- * {
32
+ * detectorModelDefinition: { // DetectorModelDefinition
33
+ * states: [ // States // required
34
+ * { // State
35
35
  * stateName: "STRING_VALUE", // required
36
- * onInput: {
37
- * events: [
38
- * {
36
+ * onInput: { // OnInputLifecycle
37
+ * events: [ // Events
38
+ * { // Event
39
39
  * eventName: "STRING_VALUE", // required
40
40
  * condition: "STRING_VALUE",
41
- * actions: [
42
- * {
43
- * setVariable: {
41
+ * actions: [ // Actions
42
+ * { // Action
43
+ * setVariable: { // SetVariableAction
44
44
  * variableName: "STRING_VALUE", // required
45
45
  * value: "STRING_VALUE", // required
46
46
  * },
47
- * sns: {
47
+ * sns: { // SNSTopicPublishAction
48
48
  * targetArn: "STRING_VALUE", // required
49
- * payload: {
49
+ * payload: { // Payload
50
50
  * contentExpression: "STRING_VALUE", // required
51
51
  * type: "STRING_VALUE", // required
52
52
  * },
53
53
  * },
54
- * iotTopicPublish: {
54
+ * iotTopicPublish: { // IotTopicPublishAction
55
55
  * mqttTopic: "STRING_VALUE", // required
56
56
  * payload: {
57
57
  * contentExpression: "STRING_VALUE", // required
58
58
  * type: "STRING_VALUE", // required
59
59
  * },
60
60
  * },
61
- * setTimer: {
61
+ * setTimer: { // SetTimerAction
62
62
  * timerName: "STRING_VALUE", // required
63
63
  * seconds: Number("int"),
64
64
  * durationExpression: "STRING_VALUE",
65
65
  * },
66
- * clearTimer: {
66
+ * clearTimer: { // ClearTimerAction
67
67
  * timerName: "STRING_VALUE", // required
68
68
  * },
69
- * resetTimer: {
69
+ * resetTimer: { // ResetTimerAction
70
70
  * timerName: "STRING_VALUE", // required
71
71
  * },
72
- * lambda: {
72
+ * lambda: { // LambdaAction
73
73
  * functionArn: "STRING_VALUE", // required
74
74
  * payload: {
75
75
  * contentExpression: "STRING_VALUE", // required
76
76
  * type: "STRING_VALUE", // required
77
77
  * },
78
78
  * },
79
- * iotEvents: {
79
+ * iotEvents: { // IotEventsAction
80
80
  * inputName: "STRING_VALUE", // required
81
81
  * payload: {
82
82
  * contentExpression: "STRING_VALUE", // required
83
83
  * type: "STRING_VALUE", // required
84
84
  * },
85
85
  * },
86
- * sqs: {
86
+ * sqs: { // SqsAction
87
87
  * queueUrl: "STRING_VALUE", // required
88
88
  * useBase64: true || false,
89
89
  * payload: {
@@ -91,15 +91,12 @@ export interface UpdateDetectorModelCommandOutput extends UpdateDetectorModelRes
91
91
  * type: "STRING_VALUE", // required
92
92
  * },
93
93
  * },
94
- * firehose: {
94
+ * firehose: { // FirehoseAction
95
95
  * deliveryStreamName: "STRING_VALUE", // required
96
96
  * separator: "STRING_VALUE",
97
- * payload: {
98
- * contentExpression: "STRING_VALUE", // required
99
- * type: "STRING_VALUE", // required
100
- * },
97
+ * payload: "<Payload>",
101
98
  * },
102
- * dynamoDB: {
99
+ * dynamoDB: { // DynamoDBAction
103
100
  * hashKeyType: "STRING_VALUE",
104
101
  * hashKeyField: "STRING_VALUE", // required
105
102
  * hashKeyValue: "STRING_VALUE", // required
@@ -109,31 +106,25 @@ export interface UpdateDetectorModelCommandOutput extends UpdateDetectorModelRes
109
106
  * operation: "STRING_VALUE",
110
107
  * payloadField: "STRING_VALUE",
111
108
  * tableName: "STRING_VALUE", // required
112
- * payload: {
113
- * contentExpression: "STRING_VALUE", // required
114
- * type: "STRING_VALUE", // required
115
- * },
109
+ * payload: "<Payload>",
116
110
  * },
117
- * dynamoDBv2: {
111
+ * dynamoDBv2: { // DynamoDBv2Action
118
112
  * tableName: "STRING_VALUE", // required
119
- * payload: {
120
- * contentExpression: "STRING_VALUE", // required
121
- * type: "STRING_VALUE", // required
122
- * },
113
+ * payload: "<Payload>",
123
114
  * },
124
- * iotSiteWise: {
115
+ * iotSiteWise: { // IotSiteWiseAction
125
116
  * entryId: "STRING_VALUE",
126
117
  * assetId: "STRING_VALUE",
127
118
  * propertyId: "STRING_VALUE",
128
119
  * propertyAlias: "STRING_VALUE",
129
- * propertyValue: {
130
- * value: {
120
+ * propertyValue: { // AssetPropertyValue
121
+ * value: { // AssetPropertyVariant
131
122
  * stringValue: "STRING_VALUE",
132
123
  * integerValue: "STRING_VALUE",
133
124
  * doubleValue: "STRING_VALUE",
134
125
  * booleanValue: "STRING_VALUE",
135
126
  * },
136
- * timestamp: {
127
+ * timestamp: { // AssetPropertyTimestamp
137
128
  * timeInSeconds: "STRING_VALUE", // required
138
129
  * offsetInNanos: "STRING_VALUE",
139
130
  * },
@@ -144,8 +135,8 @@ export interface UpdateDetectorModelCommandOutput extends UpdateDetectorModelRes
144
135
  * ],
145
136
  * },
146
137
  * ],
147
- * transitionEvents: [
148
- * {
138
+ * transitionEvents: [ // TransitionEvents
139
+ * { // TransitionEvent
149
140
  * eventName: "STRING_VALUE", // required
150
141
  * condition: "STRING_VALUE", // required
151
142
  * actions: [
@@ -156,17 +147,11 @@ export interface UpdateDetectorModelCommandOutput extends UpdateDetectorModelRes
156
147
  * },
157
148
  * sns: {
158
149
  * targetArn: "STRING_VALUE", // required
159
- * payload: {
160
- * contentExpression: "STRING_VALUE", // required
161
- * type: "STRING_VALUE", // required
162
- * },
150
+ * payload: "<Payload>",
163
151
  * },
164
152
  * iotTopicPublish: {
165
153
  * mqttTopic: "STRING_VALUE", // required
166
- * payload: {
167
- * contentExpression: "STRING_VALUE", // required
168
- * type: "STRING_VALUE", // required
169
- * },
154
+ * payload: "<Payload>",
170
155
  * },
171
156
  * setTimer: {
172
157
  * timerName: "STRING_VALUE", // required
@@ -181,33 +166,21 @@ export interface UpdateDetectorModelCommandOutput extends UpdateDetectorModelRes
181
166
  * },
182
167
  * lambda: {
183
168
  * functionArn: "STRING_VALUE", // required
184
- * payload: {
185
- * contentExpression: "STRING_VALUE", // required
186
- * type: "STRING_VALUE", // required
187
- * },
169
+ * payload: "<Payload>",
188
170
  * },
189
171
  * iotEvents: {
190
172
  * inputName: "STRING_VALUE", // required
191
- * payload: {
192
- * contentExpression: "STRING_VALUE", // required
193
- * type: "STRING_VALUE", // required
194
- * },
173
+ * payload: "<Payload>",
195
174
  * },
196
175
  * sqs: {
197
176
  * queueUrl: "STRING_VALUE", // required
198
177
  * useBase64: true || false,
199
- * payload: {
200
- * contentExpression: "STRING_VALUE", // required
201
- * type: "STRING_VALUE", // required
202
- * },
178
+ * payload: "<Payload>",
203
179
  * },
204
180
  * firehose: {
205
181
  * deliveryStreamName: "STRING_VALUE", // required
206
182
  * separator: "STRING_VALUE",
207
- * payload: {
208
- * contentExpression: "STRING_VALUE", // required
209
- * type: "STRING_VALUE", // required
210
- * },
183
+ * payload: "<Payload>",
211
184
  * },
212
185
  * dynamoDB: {
213
186
  * hashKeyType: "STRING_VALUE",
@@ -219,17 +192,11 @@ export interface UpdateDetectorModelCommandOutput extends UpdateDetectorModelRes
219
192
  * operation: "STRING_VALUE",
220
193
  * payloadField: "STRING_VALUE",
221
194
  * tableName: "STRING_VALUE", // required
222
- * payload: {
223
- * contentExpression: "STRING_VALUE", // required
224
- * type: "STRING_VALUE", // required
225
- * },
195
+ * payload: "<Payload>",
226
196
  * },
227
197
  * dynamoDBv2: {
228
198
  * tableName: "STRING_VALUE", // required
229
- * payload: {
230
- * contentExpression: "STRING_VALUE", // required
231
- * type: "STRING_VALUE", // required
232
- * },
199
+ * payload: "<Payload>",
233
200
  * },
234
201
  * iotSiteWise: {
235
202
  * entryId: "STRING_VALUE",
@@ -256,7 +223,7 @@ export interface UpdateDetectorModelCommandOutput extends UpdateDetectorModelRes
256
223
  * },
257
224
  * ],
258
225
  * },
259
- * onEnter: {
226
+ * onEnter: { // OnEnterLifecycle
260
227
  * events: [
261
228
  * {
262
229
  * eventName: "STRING_VALUE", // required
@@ -269,17 +236,11 @@ export interface UpdateDetectorModelCommandOutput extends UpdateDetectorModelRes
269
236
  * },
270
237
  * sns: {
271
238
  * targetArn: "STRING_VALUE", // required
272
- * payload: {
273
- * contentExpression: "STRING_VALUE", // required
274
- * type: "STRING_VALUE", // required
275
- * },
239
+ * payload: "<Payload>",
276
240
  * },
277
241
  * iotTopicPublish: {
278
242
  * mqttTopic: "STRING_VALUE", // required
279
- * payload: {
280
- * contentExpression: "STRING_VALUE", // required
281
- * type: "STRING_VALUE", // required
282
- * },
243
+ * payload: "<Payload>",
283
244
  * },
284
245
  * setTimer: {
285
246
  * timerName: "STRING_VALUE", // required
@@ -294,33 +255,21 @@ export interface UpdateDetectorModelCommandOutput extends UpdateDetectorModelRes
294
255
  * },
295
256
  * lambda: {
296
257
  * functionArn: "STRING_VALUE", // required
297
- * payload: {
298
- * contentExpression: "STRING_VALUE", // required
299
- * type: "STRING_VALUE", // required
300
- * },
258
+ * payload: "<Payload>",
301
259
  * },
302
260
  * iotEvents: {
303
261
  * inputName: "STRING_VALUE", // required
304
- * payload: {
305
- * contentExpression: "STRING_VALUE", // required
306
- * type: "STRING_VALUE", // required
307
- * },
262
+ * payload: "<Payload>",
308
263
  * },
309
264
  * sqs: {
310
265
  * queueUrl: "STRING_VALUE", // required
311
266
  * useBase64: true || false,
312
- * payload: {
313
- * contentExpression: "STRING_VALUE", // required
314
- * type: "STRING_VALUE", // required
315
- * },
267
+ * payload: "<Payload>",
316
268
  * },
317
269
  * firehose: {
318
270
  * deliveryStreamName: "STRING_VALUE", // required
319
271
  * separator: "STRING_VALUE",
320
- * payload: {
321
- * contentExpression: "STRING_VALUE", // required
322
- * type: "STRING_VALUE", // required
323
- * },
272
+ * payload: "<Payload>",
324
273
  * },
325
274
  * dynamoDB: {
326
275
  * hashKeyType: "STRING_VALUE",
@@ -332,17 +281,11 @@ export interface UpdateDetectorModelCommandOutput extends UpdateDetectorModelRes
332
281
  * operation: "STRING_VALUE",
333
282
  * payloadField: "STRING_VALUE",
334
283
  * tableName: "STRING_VALUE", // required
335
- * payload: {
336
- * contentExpression: "STRING_VALUE", // required
337
- * type: "STRING_VALUE", // required
338
- * },
284
+ * payload: "<Payload>",
339
285
  * },
340
286
  * dynamoDBv2: {
341
287
  * tableName: "STRING_VALUE", // required
342
- * payload: {
343
- * contentExpression: "STRING_VALUE", // required
344
- * type: "STRING_VALUE", // required
345
- * },
288
+ * payload: "<Payload>",
346
289
  * },
347
290
  * iotSiteWise: {
348
291
  * entryId: "STRING_VALUE",
@@ -368,7 +311,7 @@ export interface UpdateDetectorModelCommandOutput extends UpdateDetectorModelRes
368
311
  * },
369
312
  * ],
370
313
  * },
371
- * onExit: {
314
+ * onExit: { // OnExitLifecycle
372
315
  * events: [
373
316
  * {
374
317
  * eventName: "STRING_VALUE", // required
@@ -381,17 +324,11 @@ export interface UpdateDetectorModelCommandOutput extends UpdateDetectorModelRes
381
324
  * },
382
325
  * sns: {
383
326
  * targetArn: "STRING_VALUE", // required
384
- * payload: {
385
- * contentExpression: "STRING_VALUE", // required
386
- * type: "STRING_VALUE", // required
387
- * },
327
+ * payload: "<Payload>",
388
328
  * },
389
329
  * iotTopicPublish: {
390
330
  * mqttTopic: "STRING_VALUE", // required
391
- * payload: {
392
- * contentExpression: "STRING_VALUE", // required
393
- * type: "STRING_VALUE", // required
394
- * },
331
+ * payload: "<Payload>",
395
332
  * },
396
333
  * setTimer: {
397
334
  * timerName: "STRING_VALUE", // required
@@ -406,33 +343,21 @@ export interface UpdateDetectorModelCommandOutput extends UpdateDetectorModelRes
406
343
  * },
407
344
  * lambda: {
408
345
  * functionArn: "STRING_VALUE", // required
409
- * payload: {
410
- * contentExpression: "STRING_VALUE", // required
411
- * type: "STRING_VALUE", // required
412
- * },
346
+ * payload: "<Payload>",
413
347
  * },
414
348
  * iotEvents: {
415
349
  * inputName: "STRING_VALUE", // required
416
- * payload: {
417
- * contentExpression: "STRING_VALUE", // required
418
- * type: "STRING_VALUE", // required
419
- * },
350
+ * payload: "<Payload>",
420
351
  * },
421
352
  * sqs: {
422
353
  * queueUrl: "STRING_VALUE", // required
423
354
  * useBase64: true || false,
424
- * payload: {
425
- * contentExpression: "STRING_VALUE", // required
426
- * type: "STRING_VALUE", // required
427
- * },
355
+ * payload: "<Payload>",
428
356
  * },
429
357
  * firehose: {
430
358
  * deliveryStreamName: "STRING_VALUE", // required
431
359
  * separator: "STRING_VALUE",
432
- * payload: {
433
- * contentExpression: "STRING_VALUE", // required
434
- * type: "STRING_VALUE", // required
435
- * },
360
+ * payload: "<Payload>",
436
361
  * },
437
362
  * dynamoDB: {
438
363
  * hashKeyType: "STRING_VALUE",
@@ -444,17 +369,11 @@ export interface UpdateDetectorModelCommandOutput extends UpdateDetectorModelRes
444
369
  * operation: "STRING_VALUE",
445
370
  * payloadField: "STRING_VALUE",
446
371
  * tableName: "STRING_VALUE", // required
447
- * payload: {
448
- * contentExpression: "STRING_VALUE", // required
449
- * type: "STRING_VALUE", // required
450
- * },
372
+ * payload: "<Payload>",
451
373
  * },
452
374
  * dynamoDBv2: {
453
375
  * tableName: "STRING_VALUE", // required
454
- * payload: {
455
- * contentExpression: "STRING_VALUE", // required
456
- * type: "STRING_VALUE", // required
457
- * },
376
+ * payload: "<Payload>",
458
377
  * },
459
378
  * iotSiteWise: {
460
379
  * entryId: "STRING_VALUE",
@@ -26,12 +26,12 @@ export interface UpdateInputCommandOutput extends UpdateInputResponse, __Metadat
26
26
  * import { IoTEventsClient, UpdateInputCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
27
27
  * // const { IoTEventsClient, UpdateInputCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
28
28
  * const client = new IoTEventsClient(config);
29
- * const input = {
29
+ * const input = { // UpdateInputRequest
30
30
  * inputName: "STRING_VALUE", // required
31
31
  * inputDescription: "STRING_VALUE",
32
- * inputDefinition: {
33
- * attributes: [ // required
34
- * {
32
+ * inputDefinition: { // InputDefinition
33
+ * attributes: [ // Attributes // required
34
+ * { // Attribute
35
35
  * jsonPath: "STRING_VALUE", // required
36
36
  * },
37
37
  * ],
@@ -26,11 +26,16 @@ export interface ClearTimerAction {
26
26
  }
27
27
  /**
28
28
  * @public
29
+ * @enum
29
30
  */
30
- export declare enum PayloadType {
31
- JSON = "JSON",
32
- STRING = "STRING"
33
- }
31
+ export declare const PayloadType: {
32
+ readonly JSON: "JSON";
33
+ readonly STRING: "STRING";
34
+ };
35
+ /**
36
+ * @public
37
+ */
38
+ export type PayloadType = (typeof PayloadType)[keyof typeof PayloadType];
34
39
  /**
35
40
  * @public
36
41
  * <p>Information needed to configure the payload.</p>
@@ -939,13 +944,18 @@ export interface AlarmModelSummary {
939
944
  }
940
945
  /**
941
946
  * @public
947
+ * @enum
942
948
  */
943
- export declare enum AlarmModelVersionStatus {
944
- ACTIVATING = "ACTIVATING",
945
- ACTIVE = "ACTIVE",
946
- FAILED = "FAILED",
947
- INACTIVE = "INACTIVE"
948
- }
949
+ export declare const AlarmModelVersionStatus: {
950
+ readonly ACTIVATING: "ACTIVATING";
951
+ readonly ACTIVE: "ACTIVE";
952
+ readonly FAILED: "FAILED";
953
+ readonly INACTIVE: "INACTIVE";
954
+ };
955
+ /**
956
+ * @public
957
+ */
958
+ export type AlarmModelVersionStatus = (typeof AlarmModelVersionStatus)[keyof typeof AlarmModelVersionStatus];
949
959
  /**
950
960
  * @public
951
961
  * <p>Contains a summary of an alarm model version.</p>
@@ -1151,15 +1161,20 @@ export interface AlarmNotification {
1151
1161
  }
1152
1162
  /**
1153
1163
  * @public
1164
+ * @enum
1154
1165
  */
1155
- export declare enum ComparisonOperator {
1156
- EQUAL = "EQUAL",
1157
- GREATER = "GREATER",
1158
- GREATER_OR_EQUAL = "GREATER_OR_EQUAL",
1159
- LESS = "LESS",
1160
- LESS_OR_EQUAL = "LESS_OR_EQUAL",
1161
- NOT_EQUAL = "NOT_EQUAL"
1162
- }
1166
+ export declare const ComparisonOperator: {
1167
+ readonly EQUAL: "EQUAL";
1168
+ readonly GREATER: "GREATER";
1169
+ readonly GREATER_OR_EQUAL: "GREATER_OR_EQUAL";
1170
+ readonly LESS: "LESS";
1171
+ readonly LESS_OR_EQUAL: "LESS_OR_EQUAL";
1172
+ readonly NOT_EQUAL: "NOT_EQUAL";
1173
+ };
1174
+ /**
1175
+ * @public
1176
+ */
1177
+ export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
1163
1178
  /**
1164
1179
  * @public
1165
1180
  * <p>A rule that compares an input property value to a threshold value with a comparison operator.</p>
@@ -1192,12 +1207,17 @@ export interface AlarmRule {
1192
1207
  }
1193
1208
  /**
1194
1209
  * @public
1210
+ * @enum
1195
1211
  */
1196
- export declare enum AnalysisResultLevel {
1197
- ERROR = "ERROR",
1198
- INFO = "INFO",
1199
- WARNING = "WARNING"
1200
- }
1212
+ export declare const AnalysisResultLevel: {
1213
+ readonly ERROR: "ERROR";
1214
+ readonly INFO: "INFO";
1215
+ readonly WARNING: "WARNING";
1216
+ };
1217
+ /**
1218
+ * @public
1219
+ */
1220
+ export type AnalysisResultLevel = (typeof AnalysisResultLevel)[keyof typeof AnalysisResultLevel];
1201
1221
  /**
1202
1222
  * @public
1203
1223
  * <p>Contains information that you can use to locate the field in your detector model that the
@@ -1296,12 +1316,17 @@ export interface AnalysisResult {
1296
1316
  }
1297
1317
  /**
1298
1318
  * @public
1319
+ * @enum
1299
1320
  */
1300
- export declare enum AnalysisStatus {
1301
- COMPLETE = "COMPLETE",
1302
- FAILED = "FAILED",
1303
- RUNNING = "RUNNING"
1304
- }
1321
+ export declare const AnalysisStatus: {
1322
+ readonly COMPLETE: "COMPLETE";
1323
+ readonly FAILED: "FAILED";
1324
+ readonly RUNNING: "RUNNING";
1325
+ };
1326
+ /**
1327
+ * @public
1328
+ */
1329
+ export type AnalysisStatus = (typeof AnalysisStatus)[keyof typeof AnalysisStatus];
1305
1330
  /**
1306
1331
  * @public
1307
1332
  * <p>The attributes from the JSON payload that are made available by the input. Inputs are
@@ -1649,11 +1674,16 @@ export interface DetectorModelDefinition {
1649
1674
  }
1650
1675
  /**
1651
1676
  * @public
1677
+ * @enum
1652
1678
  */
1653
- export declare enum EvaluationMethod {
1654
- BATCH = "BATCH",
1655
- SERIAL = "SERIAL"
1656
- }
1679
+ export declare const EvaluationMethod: {
1680
+ readonly BATCH: "BATCH";
1681
+ readonly SERIAL: "SERIAL";
1682
+ };
1683
+ /**
1684
+ * @public
1685
+ */
1686
+ export type EvaluationMethod = (typeof EvaluationMethod)[keyof typeof EvaluationMethod];
1657
1687
  /**
1658
1688
  * @public
1659
1689
  */
@@ -1694,16 +1724,21 @@ export interface CreateDetectorModelRequest {
1694
1724
  }
1695
1725
  /**
1696
1726
  * @public
1727
+ * @enum
1697
1728
  */
1698
- export declare enum DetectorModelVersionStatus {
1699
- ACTIVATING = "ACTIVATING",
1700
- ACTIVE = "ACTIVE",
1701
- DEPRECATED = "DEPRECATED",
1702
- DRAFT = "DRAFT",
1703
- FAILED = "FAILED",
1704
- INACTIVE = "INACTIVE",
1705
- PAUSED = "PAUSED"
1706
- }
1729
+ export declare const DetectorModelVersionStatus: {
1730
+ readonly ACTIVATING: "ACTIVATING";
1731
+ readonly ACTIVE: "ACTIVE";
1732
+ readonly DEPRECATED: "DEPRECATED";
1733
+ readonly DRAFT: "DRAFT";
1734
+ readonly FAILED: "FAILED";
1735
+ readonly INACTIVE: "INACTIVE";
1736
+ readonly PAUSED: "PAUSED";
1737
+ };
1738
+ /**
1739
+ * @public
1740
+ */
1741
+ export type DetectorModelVersionStatus = (typeof DetectorModelVersionStatus)[keyof typeof DetectorModelVersionStatus];
1707
1742
  /**
1708
1743
  * @public
1709
1744
  * <p>Information about how the detector model is configured.</p>
@@ -1803,13 +1838,18 @@ export interface CreateInputRequest {
1803
1838
  }
1804
1839
  /**
1805
1840
  * @public
1841
+ * @enum
1806
1842
  */
1807
- export declare enum InputStatus {
1808
- ACTIVE = "ACTIVE",
1809
- CREATING = "CREATING",
1810
- DELETING = "DELETING",
1811
- UPDATING = "UPDATING"
1812
- }
1843
+ export declare const InputStatus: {
1844
+ readonly ACTIVE: "ACTIVE";
1845
+ readonly CREATING: "CREATING";
1846
+ readonly DELETING: "DELETING";
1847
+ readonly UPDATING: "UPDATING";
1848
+ };
1849
+ /**
1850
+ * @public
1851
+ */
1852
+ export type InputStatus = (typeof InputStatus)[keyof typeof InputStatus];
1813
1853
  /**
1814
1854
  * @public
1815
1855
  * <p>Information about the configuration of an input.</p>
@@ -2131,12 +2171,17 @@ export interface DetectorDebugOption {
2131
2171
  }
2132
2172
  /**
2133
2173
  * @public
2174
+ * @enum
2134
2175
  */
2135
- export declare enum LoggingLevel {
2136
- DEBUG = "DEBUG",
2137
- ERROR = "ERROR",
2138
- INFO = "INFO"
2139
- }
2176
+ export declare const LoggingLevel: {
2177
+ readonly DEBUG: "DEBUG";
2178
+ readonly ERROR: "ERROR";
2179
+ readonly INFO: "INFO";
2180
+ };
2181
+ /**
2182
+ * @public
2183
+ */
2184
+ export type LoggingLevel = (typeof LoggingLevel)[keyof typeof LoggingLevel];
2140
2185
  /**
2141
2186
  * @public
2142
2187
  * <p>The values of the AWS IoT Events logging options.</p>