@aws-sdk/client-iot-events 3.300.0 → 3.301.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 (26) hide show
  1. package/dist-types/commands/CreateAlarmModelCommand.d.ts +41 -53
  2. package/dist-types/commands/CreateDetectorModelCommand.d.ts +59 -140
  3. package/dist-types/commands/CreateInputCommand.d.ts +6 -6
  4. package/dist-types/commands/DeleteAlarmModelCommand.d.ts +1 -1
  5. package/dist-types/commands/DeleteDetectorModelCommand.d.ts +1 -1
  6. package/dist-types/commands/DeleteInputCommand.d.ts +1 -1
  7. package/dist-types/commands/DescribeAlarmModelCommand.d.ts +1 -1
  8. package/dist-types/commands/DescribeDetectorModelAnalysisCommand.d.ts +1 -1
  9. package/dist-types/commands/DescribeDetectorModelCommand.d.ts +1 -1
  10. package/dist-types/commands/DescribeInputCommand.d.ts +1 -1
  11. package/dist-types/commands/GetDetectorModelAnalysisResultsCommand.d.ts +1 -1
  12. package/dist-types/commands/ListAlarmModelVersionsCommand.d.ts +1 -1
  13. package/dist-types/commands/ListAlarmModelsCommand.d.ts +1 -1
  14. package/dist-types/commands/ListDetectorModelVersionsCommand.d.ts +1 -1
  15. package/dist-types/commands/ListDetectorModelsCommand.d.ts +1 -1
  16. package/dist-types/commands/ListInputRoutingsCommand.d.ts +5 -5
  17. package/dist-types/commands/ListInputsCommand.d.ts +1 -1
  18. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  19. package/dist-types/commands/PutLoggingOptionsCommand.d.ts +4 -4
  20. package/dist-types/commands/StartDetectorModelAnalysisCommand.d.ts +57 -138
  21. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  22. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  23. package/dist-types/commands/UpdateAlarmModelCommand.d.ts +39 -51
  24. package/dist-types/commands/UpdateDetectorModelCommand.d.ts +57 -138
  25. package/dist-types/commands/UpdateInputCommand.d.ts +4 -4
  26. package/package.json +3 -3
@@ -27,7 +27,7 @@ export interface DescribeAlarmModelCommandOutput extends DescribeAlarmModelRespo
27
27
  * import { IoTEventsClient, DescribeAlarmModelCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
28
28
  * // const { IoTEventsClient, DescribeAlarmModelCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
29
29
  * const client = new IoTEventsClient(config);
30
- * const input = {
30
+ * const input = { // DescribeAlarmModelRequest
31
31
  * alarmModelName: "STRING_VALUE", // required
32
32
  * alarmModelVersion: "STRING_VALUE",
33
33
  * };
@@ -29,7 +29,7 @@ export interface DescribeDetectorModelAnalysisCommandOutput extends DescribeDete
29
29
  * import { IoTEventsClient, DescribeDetectorModelAnalysisCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
30
30
  * // const { IoTEventsClient, DescribeDetectorModelAnalysisCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
31
31
  * const client = new IoTEventsClient(config);
32
- * const input = {
32
+ * const input = { // DescribeDetectorModelAnalysisRequest
33
33
  * analysisId: "STRING_VALUE", // required
34
34
  * };
35
35
  * const command = new DescribeDetectorModelAnalysisCommand(input);
@@ -27,7 +27,7 @@ export interface DescribeDetectorModelCommandOutput extends DescribeDetectorMode
27
27
  * import { IoTEventsClient, DescribeDetectorModelCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
28
28
  * // const { IoTEventsClient, DescribeDetectorModelCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
29
29
  * const client = new IoTEventsClient(config);
30
- * const input = {
30
+ * const input = { // DescribeDetectorModelRequest
31
31
  * detectorModelName: "STRING_VALUE", // required
32
32
  * detectorModelVersion: "STRING_VALUE",
33
33
  * };
@@ -26,7 +26,7 @@ export interface DescribeInputCommandOutput extends DescribeInputResponse, __Met
26
26
  * import { IoTEventsClient, DescribeInputCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
27
27
  * // const { IoTEventsClient, DescribeInputCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
28
28
  * const client = new IoTEventsClient(config);
29
- * const input = {
29
+ * const input = { // DescribeInputRequest
30
30
  * inputName: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeInputCommand(input);
@@ -29,7 +29,7 @@ export interface GetDetectorModelAnalysisResultsCommandOutput extends GetDetecto
29
29
  * import { IoTEventsClient, GetDetectorModelAnalysisResultsCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
30
30
  * // const { IoTEventsClient, GetDetectorModelAnalysisResultsCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
31
31
  * const client = new IoTEventsClient(config);
32
- * const input = {
32
+ * const input = { // GetDetectorModelAnalysisResultsRequest
33
33
  * analysisId: "STRING_VALUE", // required
34
34
  * nextToken: "STRING_VALUE",
35
35
  * maxResults: Number("int"),
@@ -27,7 +27,7 @@ export interface ListAlarmModelVersionsCommandOutput extends ListAlarmModelVersi
27
27
  * import { IoTEventsClient, ListAlarmModelVersionsCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
28
28
  * // const { IoTEventsClient, ListAlarmModelVersionsCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
29
29
  * const client = new IoTEventsClient(config);
30
- * const input = {
30
+ * const input = { // ListAlarmModelVersionsRequest
31
31
  * alarmModelName: "STRING_VALUE", // required
32
32
  * nextToken: "STRING_VALUE",
33
33
  * maxResults: Number("int"),
@@ -27,7 +27,7 @@ export interface ListAlarmModelsCommandOutput extends ListAlarmModelsResponse, _
27
27
  * import { IoTEventsClient, ListAlarmModelsCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
28
28
  * // const { IoTEventsClient, ListAlarmModelsCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
29
29
  * const client = new IoTEventsClient(config);
30
- * const input = {
30
+ * const input = { // ListAlarmModelsRequest
31
31
  * nextToken: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
33
33
  * };
@@ -27,7 +27,7 @@ export interface ListDetectorModelVersionsCommandOutput extends ListDetectorMode
27
27
  * import { IoTEventsClient, ListDetectorModelVersionsCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
28
28
  * // const { IoTEventsClient, ListDetectorModelVersionsCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
29
29
  * const client = new IoTEventsClient(config);
30
- * const input = {
30
+ * const input = { // ListDetectorModelVersionsRequest
31
31
  * detectorModelName: "STRING_VALUE", // required
32
32
  * nextToken: "STRING_VALUE",
33
33
  * maxResults: Number("int"),
@@ -27,7 +27,7 @@ export interface ListDetectorModelsCommandOutput extends ListDetectorModelsRespo
27
27
  * import { IoTEventsClient, ListDetectorModelsCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
28
28
  * // const { IoTEventsClient, ListDetectorModelsCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
29
29
  * const client = new IoTEventsClient(config);
30
- * const input = {
30
+ * const input = { // ListDetectorModelsRequest
31
31
  * nextToken: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
33
33
  * };
@@ -28,13 +28,13 @@ export interface ListInputRoutingsCommandOutput extends ListInputRoutingsRespons
28
28
  * import { IoTEventsClient, ListInputRoutingsCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
29
29
  * // const { IoTEventsClient, ListInputRoutingsCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
30
30
  * const client = new IoTEventsClient(config);
31
- * const input = {
32
- * inputIdentifier: {
33
- * iotEventsInputIdentifier: {
31
+ * const input = { // ListInputRoutingsRequest
32
+ * inputIdentifier: { // InputIdentifier
33
+ * iotEventsInputIdentifier: { // IotEventsInputIdentifier
34
34
  * inputName: "STRING_VALUE", // required
35
35
  * },
36
- * iotSiteWiseInputIdentifier: {
37
- * iotSiteWiseAssetModelPropertyIdentifier: {
36
+ * iotSiteWiseInputIdentifier: { // IotSiteWiseInputIdentifier
37
+ * iotSiteWiseAssetModelPropertyIdentifier: { // IotSiteWiseAssetModelPropertyIdentifier
38
38
  * assetModelId: "STRING_VALUE", // required
39
39
  * propertyId: "STRING_VALUE", // required
40
40
  * },
@@ -26,7 +26,7 @@ export interface ListInputsCommandOutput extends ListInputsResponse, __MetadataB
26
26
  * import { IoTEventsClient, ListInputsCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
27
27
  * // const { IoTEventsClient, ListInputsCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
28
28
  * const client = new IoTEventsClient(config);
29
- * const input = {
29
+ * const input = { // ListInputsRequest
30
30
  * nextToken: "STRING_VALUE",
31
31
  * maxResults: Number("int"),
32
32
  * };
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { IoTEventsClient, ListTagsForResourceCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
27
27
  * // const { IoTEventsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
28
28
  * const client = new IoTEventsClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -30,13 +30,13 @@ export interface PutLoggingOptionsCommandOutput extends __MetadataBearer {
30
30
  * import { IoTEventsClient, PutLoggingOptionsCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
31
31
  * // const { IoTEventsClient, PutLoggingOptionsCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
32
32
  * const client = new IoTEventsClient(config);
33
- * const input = {
34
- * loggingOptions: {
33
+ * const input = { // PutLoggingOptionsRequest
34
+ * loggingOptions: { // LoggingOptions
35
35
  * roleArn: "STRING_VALUE", // required
36
36
  * level: "STRING_VALUE", // required
37
37
  * enabled: true || false, // required
38
- * detectorDebugOptions: [
39
- * {
38
+ * detectorDebugOptions: [ // DetectorDebugOptions
39
+ * { // DetectorDebugOption
40
40
  * detectorModelName: "STRING_VALUE", // required
41
41
  * keyValue: "STRING_VALUE",
42
42
  * },
@@ -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
  * };