@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
@@ -28,62 +28,62 @@ export interface StartDetectorModelAnalysisCommandOutput extends StartDetectorMo
28
28
  * import { IoTEventsClient, StartDetectorModelAnalysisCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
29
29
  * // const { IoTEventsClient, StartDetectorModelAnalysisCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
30
30
  * const client = new IoTEventsClient(config);
31
- * const input = {
32
- * detectorModelDefinition: {
33
- * states: [ // required
34
- * {
31
+ * const input = { // StartDetectorModelAnalysisRequest
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 StartDetectorModelAnalysisCommandOutput extends StartDetectorMo
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 StartDetectorModelAnalysisCommandOutput extends StartDetectorMo
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 StartDetectorModelAnalysisCommandOutput extends StartDetectorMo
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 StartDetectorModelAnalysisCommandOutput extends StartDetectorMo
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 StartDetectorModelAnalysisCommandOutput extends StartDetectorMo
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 StartDetectorModelAnalysisCommandOutput extends StartDetectorMo
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 StartDetectorModelAnalysisCommandOutput extends StartDetectorMo
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 StartDetectorModelAnalysisCommandOutput extends StartDetectorMo
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 StartDetectorModelAnalysisCommandOutput extends StartDetectorMo
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 StartDetectorModelAnalysisCommandOutput extends StartDetectorMo
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 StartDetectorModelAnalysisCommandOutput extends StartDetectorMo
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 StartDetectorModelAnalysisCommandOutput extends StartDetectorMo
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 StartDetectorModelAnalysisCommandOutput extends StartDetectorMo
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 StartDetectorModelAnalysisCommandOutput extends StartDetectorMo
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",
@@ -27,10 +27,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
27
27
  * import { IoTEventsClient, TagResourceCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
28
28
  * // const { IoTEventsClient, TagResourceCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
29
29
  * const client = new IoTEventsClient(config);
30
- * const input = {
30
+ * const input = { // TagResourceRequest
31
31
  * resourceArn: "STRING_VALUE", // required
32
- * tags: [ // required
33
- * {
32
+ * tags: [ // Tags // required
33
+ * { // Tag
34
34
  * key: "STRING_VALUE", // required
35
35
  * value: "STRING_VALUE", // required
36
36
  * },
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { IoTEventsClient, UntagResourceCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
27
27
  * // const { IoTEventsClient, UntagResourceCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
28
28
  * const client = new IoTEventsClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tagKeys: [ // required
31
+ * tagKeys: [ // TagKeys // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -27,37 +27,37 @@ export interface UpdateAlarmModelCommandOutput extends UpdateAlarmModelResponse,
27
27
  * import { IoTEventsClient, UpdateAlarmModelCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
28
28
  * // const { IoTEventsClient, UpdateAlarmModelCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
29
29
  * const client = new IoTEventsClient(config);
30
- * const input = {
30
+ * const input = { // UpdateAlarmModelRequest
31
31
  * alarmModelName: "STRING_VALUE", // required
32
32
  * alarmModelDescription: "STRING_VALUE",
33
33
  * roleArn: "STRING_VALUE", // required
34
34
  * severity: Number("int"),
35
- * alarmRule: {
36
- * simpleRule: {
35
+ * alarmRule: { // AlarmRule
36
+ * simpleRule: { // SimpleRule
37
37
  * inputProperty: "STRING_VALUE", // required
38
38
  * comparisonOperator: "STRING_VALUE", // required
39
39
  * threshold: "STRING_VALUE", // required
40
40
  * },
41
41
  * },
42
- * alarmNotification: {
43
- * notificationActions: [
44
- * {
45
- * action: {
46
- * lambdaAction: {
42
+ * alarmNotification: { // AlarmNotification
43
+ * notificationActions: [ // NotificationActions
44
+ * { // NotificationAction
45
+ * action: { // NotificationTargetActions
46
+ * lambdaAction: { // LambdaAction
47
47
  * functionArn: "STRING_VALUE", // required
48
- * payload: {
48
+ * payload: { // Payload
49
49
  * contentExpression: "STRING_VALUE", // required
50
50
  * type: "STRING_VALUE", // required
51
51
  * },
52
52
  * },
53
53
  * },
54
- * smsConfigurations: [
55
- * {
54
+ * smsConfigurations: [ // SMSConfigurations
55
+ * { // SMSConfiguration
56
56
  * senderId: "STRING_VALUE",
57
57
  * additionalMessage: "STRING_VALUE",
58
- * recipients: [ // required
59
- * {
60
- * ssoIdentity: {
58
+ * recipients: [ // RecipientDetails // required
59
+ * { // RecipientDetail
60
+ * ssoIdentity: { // SSOIdentity
61
61
  * identityStoreId: "STRING_VALUE", // required
62
62
  * userId: "STRING_VALUE",
63
63
  * },
@@ -65,14 +65,14 @@ export interface UpdateAlarmModelCommandOutput extends UpdateAlarmModelResponse,
65
65
  * ],
66
66
  * },
67
67
  * ],
68
- * emailConfigurations: [
69
- * {
68
+ * emailConfigurations: [ // EmailConfigurations
69
+ * { // EmailConfiguration
70
70
  * from: "STRING_VALUE", // required
71
- * content: {
71
+ * content: { // EmailContent
72
72
  * subject: "STRING_VALUE",
73
73
  * additionalMessage: "STRING_VALUE",
74
74
  * },
75
- * recipients: {
75
+ * recipients: { // EmailRecipients
76
76
  * to: [
77
77
  * {
78
78
  * ssoIdentity: {
@@ -87,17 +87,17 @@ export interface UpdateAlarmModelCommandOutput extends UpdateAlarmModelResponse,
87
87
  * },
88
88
  * ],
89
89
  * },
90
- * alarmEventActions: {
91
- * alarmActions: [
92
- * {
93
- * sns: {
90
+ * alarmEventActions: { // AlarmEventActions
91
+ * alarmActions: [ // AlarmActions
92
+ * { // AlarmAction
93
+ * sns: { // SNSTopicPublishAction
94
94
  * targetArn: "STRING_VALUE", // required
95
95
  * payload: {
96
96
  * contentExpression: "STRING_VALUE", // required
97
97
  * type: "STRING_VALUE", // required
98
98
  * },
99
99
  * },
100
- * iotTopicPublish: {
100
+ * iotTopicPublish: { // IotTopicPublishAction
101
101
  * mqttTopic: "STRING_VALUE", // required
102
102
  * payload: {
103
103
  * contentExpression: "STRING_VALUE", // required
@@ -111,30 +111,24 @@ export interface UpdateAlarmModelCommandOutput extends UpdateAlarmModelResponse,
111
111
  * type: "STRING_VALUE", // required
112
112
  * },
113
113
  * },
114
- * iotEvents: {
114
+ * iotEvents: { // IotEventsAction
115
115
  * inputName: "STRING_VALUE", // required
116
116
  * payload: {
117
117
  * contentExpression: "STRING_VALUE", // required
118
118
  * type: "STRING_VALUE", // required
119
119
  * },
120
120
  * },
121
- * sqs: {
121
+ * sqs: { // SqsAction
122
122
  * queueUrl: "STRING_VALUE", // required
123
123
  * useBase64: true || false,
124
- * payload: {
125
- * contentExpression: "STRING_VALUE", // required
126
- * type: "STRING_VALUE", // required
127
- * },
124
+ * payload: "<Payload>",
128
125
  * },
129
- * firehose: {
126
+ * firehose: { // FirehoseAction
130
127
  * deliveryStreamName: "STRING_VALUE", // required
131
128
  * separator: "STRING_VALUE",
132
- * payload: {
133
- * contentExpression: "STRING_VALUE", // required
134
- * type: "STRING_VALUE", // required
135
- * },
129
+ * payload: "<Payload>",
136
130
  * },
137
- * dynamoDB: {
131
+ * dynamoDB: { // DynamoDBAction
138
132
  * hashKeyType: "STRING_VALUE",
139
133
  * hashKeyField: "STRING_VALUE", // required
140
134
  * hashKeyValue: "STRING_VALUE", // required
@@ -144,31 +138,25 @@ export interface UpdateAlarmModelCommandOutput extends UpdateAlarmModelResponse,
144
138
  * operation: "STRING_VALUE",
145
139
  * payloadField: "STRING_VALUE",
146
140
  * tableName: "STRING_VALUE", // required
147
- * payload: {
148
- * contentExpression: "STRING_VALUE", // required
149
- * type: "STRING_VALUE", // required
150
- * },
141
+ * payload: "<Payload>",
151
142
  * },
152
- * dynamoDBv2: {
143
+ * dynamoDBv2: { // DynamoDBv2Action
153
144
  * tableName: "STRING_VALUE", // required
154
- * payload: {
155
- * contentExpression: "STRING_VALUE", // required
156
- * type: "STRING_VALUE", // required
157
- * },
145
+ * payload: "<Payload>",
158
146
  * },
159
- * iotSiteWise: {
147
+ * iotSiteWise: { // IotSiteWiseAction
160
148
  * entryId: "STRING_VALUE",
161
149
  * assetId: "STRING_VALUE",
162
150
  * propertyId: "STRING_VALUE",
163
151
  * propertyAlias: "STRING_VALUE",
164
- * propertyValue: {
165
- * value: {
152
+ * propertyValue: { // AssetPropertyValue
153
+ * value: { // AssetPropertyVariant
166
154
  * stringValue: "STRING_VALUE",
167
155
  * integerValue: "STRING_VALUE",
168
156
  * doubleValue: "STRING_VALUE",
169
157
  * booleanValue: "STRING_VALUE",
170
158
  * },
171
- * timestamp: {
159
+ * timestamp: { // AssetPropertyTimestamp
172
160
  * timeInSeconds: "STRING_VALUE", // required
173
161
  * offsetInNanos: "STRING_VALUE",
174
162
  * },
@@ -178,11 +166,11 @@ export interface UpdateAlarmModelCommandOutput extends UpdateAlarmModelResponse,
178
166
  * },
179
167
  * ],
180
168
  * },
181
- * alarmCapabilities: {
182
- * initializationConfiguration: {
169
+ * alarmCapabilities: { // AlarmCapabilities
170
+ * initializationConfiguration: { // InitializationConfiguration
183
171
  * disabledOnInitialization: true || false, // required
184
172
  * },
185
- * acknowledgeFlow: {
173
+ * acknowledgeFlow: { // AcknowledgeFlow
186
174
  * enabled: true || false, // required
187
175
  * },
188
176
  * },