@aws-sdk/client-iot-events 3.299.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 (27) hide show
  1. package/dist-types/commands/CreateAlarmModelCommand.d.ts +155 -0
  2. package/dist-types/commands/CreateDetectorModelCommand.d.ts +387 -0
  3. package/dist-types/commands/CreateInputCommand.d.ts +17 -0
  4. package/dist-types/commands/DeleteAlarmModelCommand.d.ts +3 -0
  5. package/dist-types/commands/DeleteDetectorModelCommand.d.ts +3 -0
  6. package/dist-types/commands/DeleteInputCommand.d.ts +3 -0
  7. package/dist-types/commands/DescribeAlarmModelCommand.d.ts +4 -0
  8. package/dist-types/commands/DescribeDetectorModelAnalysisCommand.d.ts +3 -0
  9. package/dist-types/commands/DescribeDetectorModelCommand.d.ts +4 -0
  10. package/dist-types/commands/DescribeInputCommand.d.ts +3 -0
  11. package/dist-types/commands/DescribeLoggingOptionsCommand.d.ts +1 -0
  12. package/dist-types/commands/GetDetectorModelAnalysisResultsCommand.d.ts +5 -0
  13. package/dist-types/commands/ListAlarmModelVersionsCommand.d.ts +5 -0
  14. package/dist-types/commands/ListAlarmModelsCommand.d.ts +4 -0
  15. package/dist-types/commands/ListDetectorModelVersionsCommand.d.ts +5 -0
  16. package/dist-types/commands/ListDetectorModelsCommand.d.ts +4 -0
  17. package/dist-types/commands/ListInputRoutingsCommand.d.ts +15 -0
  18. package/dist-types/commands/ListInputsCommand.d.ts +4 -0
  19. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  20. package/dist-types/commands/PutLoggingOptionsCommand.d.ts +13 -0
  21. package/dist-types/commands/StartDetectorModelAnalysisCommand.d.ts +376 -0
  22. package/dist-types/commands/TagResourceCommand.d.ts +9 -0
  23. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  24. package/dist-types/commands/UpdateAlarmModelCommand.d.ts +148 -0
  25. package/dist-types/commands/UpdateDetectorModelCommand.d.ts +380 -0
  26. package/dist-types/commands/UpdateInputCommand.d.ts +11 -0
  27. package/package.json +8 -8
@@ -28,6 +28,161 @@ export interface CreateAlarmModelCommandOutput extends CreateAlarmModelResponse,
28
28
  * import { IoTEventsClient, CreateAlarmModelCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
29
29
  * // const { IoTEventsClient, CreateAlarmModelCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
30
30
  * const client = new IoTEventsClient(config);
31
+ * const input = { // CreateAlarmModelRequest
32
+ * alarmModelName: "STRING_VALUE", // required
33
+ * alarmModelDescription: "STRING_VALUE",
34
+ * roleArn: "STRING_VALUE", // required
35
+ * tags: [ // Tags
36
+ * { // Tag
37
+ * key: "STRING_VALUE", // required
38
+ * value: "STRING_VALUE", // required
39
+ * },
40
+ * ],
41
+ * key: "STRING_VALUE",
42
+ * severity: Number("int"),
43
+ * alarmRule: { // AlarmRule
44
+ * simpleRule: { // SimpleRule
45
+ * inputProperty: "STRING_VALUE", // required
46
+ * comparisonOperator: "STRING_VALUE", // required
47
+ * threshold: "STRING_VALUE", // required
48
+ * },
49
+ * },
50
+ * alarmNotification: { // AlarmNotification
51
+ * notificationActions: [ // NotificationActions
52
+ * { // NotificationAction
53
+ * action: { // NotificationTargetActions
54
+ * lambdaAction: { // LambdaAction
55
+ * functionArn: "STRING_VALUE", // required
56
+ * payload: { // Payload
57
+ * contentExpression: "STRING_VALUE", // required
58
+ * type: "STRING_VALUE", // required
59
+ * },
60
+ * },
61
+ * },
62
+ * smsConfigurations: [ // SMSConfigurations
63
+ * { // SMSConfiguration
64
+ * senderId: "STRING_VALUE",
65
+ * additionalMessage: "STRING_VALUE",
66
+ * recipients: [ // RecipientDetails // required
67
+ * { // RecipientDetail
68
+ * ssoIdentity: { // SSOIdentity
69
+ * identityStoreId: "STRING_VALUE", // required
70
+ * userId: "STRING_VALUE",
71
+ * },
72
+ * },
73
+ * ],
74
+ * },
75
+ * ],
76
+ * emailConfigurations: [ // EmailConfigurations
77
+ * { // EmailConfiguration
78
+ * from: "STRING_VALUE", // required
79
+ * content: { // EmailContent
80
+ * subject: "STRING_VALUE",
81
+ * additionalMessage: "STRING_VALUE",
82
+ * },
83
+ * recipients: { // EmailRecipients
84
+ * to: [
85
+ * {
86
+ * ssoIdentity: {
87
+ * identityStoreId: "STRING_VALUE", // required
88
+ * userId: "STRING_VALUE",
89
+ * },
90
+ * },
91
+ * ],
92
+ * },
93
+ * },
94
+ * ],
95
+ * },
96
+ * ],
97
+ * },
98
+ * alarmEventActions: { // AlarmEventActions
99
+ * alarmActions: [ // AlarmActions
100
+ * { // AlarmAction
101
+ * sns: { // SNSTopicPublishAction
102
+ * targetArn: "STRING_VALUE", // required
103
+ * payload: {
104
+ * contentExpression: "STRING_VALUE", // required
105
+ * type: "STRING_VALUE", // required
106
+ * },
107
+ * },
108
+ * iotTopicPublish: { // IotTopicPublishAction
109
+ * mqttTopic: "STRING_VALUE", // required
110
+ * payload: {
111
+ * contentExpression: "STRING_VALUE", // required
112
+ * type: "STRING_VALUE", // required
113
+ * },
114
+ * },
115
+ * lambda: {
116
+ * functionArn: "STRING_VALUE", // required
117
+ * payload: {
118
+ * contentExpression: "STRING_VALUE", // required
119
+ * type: "STRING_VALUE", // required
120
+ * },
121
+ * },
122
+ * iotEvents: { // IotEventsAction
123
+ * inputName: "STRING_VALUE", // required
124
+ * payload: {
125
+ * contentExpression: "STRING_VALUE", // required
126
+ * type: "STRING_VALUE", // required
127
+ * },
128
+ * },
129
+ * sqs: { // SqsAction
130
+ * queueUrl: "STRING_VALUE", // required
131
+ * useBase64: true || false,
132
+ * payload: "<Payload>",
133
+ * },
134
+ * firehose: { // FirehoseAction
135
+ * deliveryStreamName: "STRING_VALUE", // required
136
+ * separator: "STRING_VALUE",
137
+ * payload: "<Payload>",
138
+ * },
139
+ * dynamoDB: { // DynamoDBAction
140
+ * hashKeyType: "STRING_VALUE",
141
+ * hashKeyField: "STRING_VALUE", // required
142
+ * hashKeyValue: "STRING_VALUE", // required
143
+ * rangeKeyType: "STRING_VALUE",
144
+ * rangeKeyField: "STRING_VALUE",
145
+ * rangeKeyValue: "STRING_VALUE",
146
+ * operation: "STRING_VALUE",
147
+ * payloadField: "STRING_VALUE",
148
+ * tableName: "STRING_VALUE", // required
149
+ * payload: "<Payload>",
150
+ * },
151
+ * dynamoDBv2: { // DynamoDBv2Action
152
+ * tableName: "STRING_VALUE", // required
153
+ * payload: "<Payload>",
154
+ * },
155
+ * iotSiteWise: { // IotSiteWiseAction
156
+ * entryId: "STRING_VALUE",
157
+ * assetId: "STRING_VALUE",
158
+ * propertyId: "STRING_VALUE",
159
+ * propertyAlias: "STRING_VALUE",
160
+ * propertyValue: { // AssetPropertyValue
161
+ * value: { // AssetPropertyVariant
162
+ * stringValue: "STRING_VALUE",
163
+ * integerValue: "STRING_VALUE",
164
+ * doubleValue: "STRING_VALUE",
165
+ * booleanValue: "STRING_VALUE",
166
+ * },
167
+ * timestamp: { // AssetPropertyTimestamp
168
+ * timeInSeconds: "STRING_VALUE", // required
169
+ * offsetInNanos: "STRING_VALUE",
170
+ * },
171
+ * quality: "STRING_VALUE",
172
+ * },
173
+ * },
174
+ * },
175
+ * ],
176
+ * },
177
+ * alarmCapabilities: { // AlarmCapabilities
178
+ * initializationConfiguration: { // InitializationConfiguration
179
+ * disabledOnInitialization: true || false, // required
180
+ * },
181
+ * acknowledgeFlow: { // AcknowledgeFlow
182
+ * enabled: true || false, // required
183
+ * },
184
+ * },
185
+ * };
31
186
  * const command = new CreateAlarmModelCommand(input);
32
187
  * const response = await client.send(command);
33
188
  * ```
@@ -26,6 +26,393 @@ export interface CreateDetectorModelCommandOutput extends CreateDetectorModelRes
26
26
  * import { IoTEventsClient, CreateDetectorModelCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
27
27
  * // const { IoTEventsClient, CreateDetectorModelCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
28
28
  * const client = new IoTEventsClient(config);
29
+ * const input = { // CreateDetectorModelRequest
30
+ * detectorModelName: "STRING_VALUE", // required
31
+ * detectorModelDefinition: { // DetectorModelDefinition
32
+ * states: [ // States // required
33
+ * { // State
34
+ * stateName: "STRING_VALUE", // required
35
+ * onInput: { // OnInputLifecycle
36
+ * events: [ // Events
37
+ * { // Event
38
+ * eventName: "STRING_VALUE", // required
39
+ * condition: "STRING_VALUE",
40
+ * actions: [ // Actions
41
+ * { // Action
42
+ * setVariable: { // SetVariableAction
43
+ * variableName: "STRING_VALUE", // required
44
+ * value: "STRING_VALUE", // required
45
+ * },
46
+ * sns: { // SNSTopicPublishAction
47
+ * targetArn: "STRING_VALUE", // required
48
+ * payload: { // Payload
49
+ * contentExpression: "STRING_VALUE", // required
50
+ * type: "STRING_VALUE", // required
51
+ * },
52
+ * },
53
+ * iotTopicPublish: { // IotTopicPublishAction
54
+ * mqttTopic: "STRING_VALUE", // required
55
+ * payload: {
56
+ * contentExpression: "STRING_VALUE", // required
57
+ * type: "STRING_VALUE", // required
58
+ * },
59
+ * },
60
+ * setTimer: { // SetTimerAction
61
+ * timerName: "STRING_VALUE", // required
62
+ * seconds: Number("int"),
63
+ * durationExpression: "STRING_VALUE",
64
+ * },
65
+ * clearTimer: { // ClearTimerAction
66
+ * timerName: "STRING_VALUE", // required
67
+ * },
68
+ * resetTimer: { // ResetTimerAction
69
+ * timerName: "STRING_VALUE", // required
70
+ * },
71
+ * lambda: { // LambdaAction
72
+ * functionArn: "STRING_VALUE", // required
73
+ * payload: {
74
+ * contentExpression: "STRING_VALUE", // required
75
+ * type: "STRING_VALUE", // required
76
+ * },
77
+ * },
78
+ * iotEvents: { // IotEventsAction
79
+ * inputName: "STRING_VALUE", // required
80
+ * payload: {
81
+ * contentExpression: "STRING_VALUE", // required
82
+ * type: "STRING_VALUE", // required
83
+ * },
84
+ * },
85
+ * sqs: { // SqsAction
86
+ * queueUrl: "STRING_VALUE", // required
87
+ * useBase64: true || false,
88
+ * payload: {
89
+ * contentExpression: "STRING_VALUE", // required
90
+ * type: "STRING_VALUE", // required
91
+ * },
92
+ * },
93
+ * firehose: { // FirehoseAction
94
+ * deliveryStreamName: "STRING_VALUE", // required
95
+ * separator: "STRING_VALUE",
96
+ * payload: "<Payload>",
97
+ * },
98
+ * dynamoDB: { // DynamoDBAction
99
+ * hashKeyType: "STRING_VALUE",
100
+ * hashKeyField: "STRING_VALUE", // required
101
+ * hashKeyValue: "STRING_VALUE", // required
102
+ * rangeKeyType: "STRING_VALUE",
103
+ * rangeKeyField: "STRING_VALUE",
104
+ * rangeKeyValue: "STRING_VALUE",
105
+ * operation: "STRING_VALUE",
106
+ * payloadField: "STRING_VALUE",
107
+ * tableName: "STRING_VALUE", // required
108
+ * payload: "<Payload>",
109
+ * },
110
+ * dynamoDBv2: { // DynamoDBv2Action
111
+ * tableName: "STRING_VALUE", // required
112
+ * payload: "<Payload>",
113
+ * },
114
+ * iotSiteWise: { // IotSiteWiseAction
115
+ * entryId: "STRING_VALUE",
116
+ * assetId: "STRING_VALUE",
117
+ * propertyId: "STRING_VALUE",
118
+ * propertyAlias: "STRING_VALUE",
119
+ * propertyValue: { // AssetPropertyValue
120
+ * value: { // AssetPropertyVariant
121
+ * stringValue: "STRING_VALUE",
122
+ * integerValue: "STRING_VALUE",
123
+ * doubleValue: "STRING_VALUE",
124
+ * booleanValue: "STRING_VALUE",
125
+ * },
126
+ * timestamp: { // AssetPropertyTimestamp
127
+ * timeInSeconds: "STRING_VALUE", // required
128
+ * offsetInNanos: "STRING_VALUE",
129
+ * },
130
+ * quality: "STRING_VALUE",
131
+ * },
132
+ * },
133
+ * },
134
+ * ],
135
+ * },
136
+ * ],
137
+ * transitionEvents: [ // TransitionEvents
138
+ * { // TransitionEvent
139
+ * eventName: "STRING_VALUE", // required
140
+ * condition: "STRING_VALUE", // required
141
+ * actions: [
142
+ * {
143
+ * setVariable: {
144
+ * variableName: "STRING_VALUE", // required
145
+ * value: "STRING_VALUE", // required
146
+ * },
147
+ * sns: {
148
+ * targetArn: "STRING_VALUE", // required
149
+ * payload: "<Payload>",
150
+ * },
151
+ * iotTopicPublish: {
152
+ * mqttTopic: "STRING_VALUE", // required
153
+ * payload: "<Payload>",
154
+ * },
155
+ * setTimer: {
156
+ * timerName: "STRING_VALUE", // required
157
+ * seconds: Number("int"),
158
+ * durationExpression: "STRING_VALUE",
159
+ * },
160
+ * clearTimer: {
161
+ * timerName: "STRING_VALUE", // required
162
+ * },
163
+ * resetTimer: {
164
+ * timerName: "STRING_VALUE", // required
165
+ * },
166
+ * lambda: {
167
+ * functionArn: "STRING_VALUE", // required
168
+ * payload: "<Payload>",
169
+ * },
170
+ * iotEvents: {
171
+ * inputName: "STRING_VALUE", // required
172
+ * payload: "<Payload>",
173
+ * },
174
+ * sqs: {
175
+ * queueUrl: "STRING_VALUE", // required
176
+ * useBase64: true || false,
177
+ * payload: "<Payload>",
178
+ * },
179
+ * firehose: {
180
+ * deliveryStreamName: "STRING_VALUE", // required
181
+ * separator: "STRING_VALUE",
182
+ * payload: "<Payload>",
183
+ * },
184
+ * dynamoDB: {
185
+ * hashKeyType: "STRING_VALUE",
186
+ * hashKeyField: "STRING_VALUE", // required
187
+ * hashKeyValue: "STRING_VALUE", // required
188
+ * rangeKeyType: "STRING_VALUE",
189
+ * rangeKeyField: "STRING_VALUE",
190
+ * rangeKeyValue: "STRING_VALUE",
191
+ * operation: "STRING_VALUE",
192
+ * payloadField: "STRING_VALUE",
193
+ * tableName: "STRING_VALUE", // required
194
+ * payload: "<Payload>",
195
+ * },
196
+ * dynamoDBv2: {
197
+ * tableName: "STRING_VALUE", // required
198
+ * payload: "<Payload>",
199
+ * },
200
+ * iotSiteWise: {
201
+ * entryId: "STRING_VALUE",
202
+ * assetId: "STRING_VALUE",
203
+ * propertyId: "STRING_VALUE",
204
+ * propertyAlias: "STRING_VALUE",
205
+ * propertyValue: {
206
+ * value: {
207
+ * stringValue: "STRING_VALUE",
208
+ * integerValue: "STRING_VALUE",
209
+ * doubleValue: "STRING_VALUE",
210
+ * booleanValue: "STRING_VALUE",
211
+ * },
212
+ * timestamp: {
213
+ * timeInSeconds: "STRING_VALUE", // required
214
+ * offsetInNanos: "STRING_VALUE",
215
+ * },
216
+ * quality: "STRING_VALUE",
217
+ * },
218
+ * },
219
+ * },
220
+ * ],
221
+ * nextState: "STRING_VALUE", // required
222
+ * },
223
+ * ],
224
+ * },
225
+ * onEnter: { // OnEnterLifecycle
226
+ * events: [
227
+ * {
228
+ * eventName: "STRING_VALUE", // required
229
+ * condition: "STRING_VALUE",
230
+ * actions: [
231
+ * {
232
+ * setVariable: {
233
+ * variableName: "STRING_VALUE", // required
234
+ * value: "STRING_VALUE", // required
235
+ * },
236
+ * sns: {
237
+ * targetArn: "STRING_VALUE", // required
238
+ * payload: "<Payload>",
239
+ * },
240
+ * iotTopicPublish: {
241
+ * mqttTopic: "STRING_VALUE", // required
242
+ * payload: "<Payload>",
243
+ * },
244
+ * setTimer: {
245
+ * timerName: "STRING_VALUE", // required
246
+ * seconds: Number("int"),
247
+ * durationExpression: "STRING_VALUE",
248
+ * },
249
+ * clearTimer: {
250
+ * timerName: "STRING_VALUE", // required
251
+ * },
252
+ * resetTimer: {
253
+ * timerName: "STRING_VALUE", // required
254
+ * },
255
+ * lambda: {
256
+ * functionArn: "STRING_VALUE", // required
257
+ * payload: "<Payload>",
258
+ * },
259
+ * iotEvents: {
260
+ * inputName: "STRING_VALUE", // required
261
+ * payload: "<Payload>",
262
+ * },
263
+ * sqs: {
264
+ * queueUrl: "STRING_VALUE", // required
265
+ * useBase64: true || false,
266
+ * payload: "<Payload>",
267
+ * },
268
+ * firehose: {
269
+ * deliveryStreamName: "STRING_VALUE", // required
270
+ * separator: "STRING_VALUE",
271
+ * payload: "<Payload>",
272
+ * },
273
+ * dynamoDB: {
274
+ * hashKeyType: "STRING_VALUE",
275
+ * hashKeyField: "STRING_VALUE", // required
276
+ * hashKeyValue: "STRING_VALUE", // required
277
+ * rangeKeyType: "STRING_VALUE",
278
+ * rangeKeyField: "STRING_VALUE",
279
+ * rangeKeyValue: "STRING_VALUE",
280
+ * operation: "STRING_VALUE",
281
+ * payloadField: "STRING_VALUE",
282
+ * tableName: "STRING_VALUE", // required
283
+ * payload: "<Payload>",
284
+ * },
285
+ * dynamoDBv2: {
286
+ * tableName: "STRING_VALUE", // required
287
+ * payload: "<Payload>",
288
+ * },
289
+ * iotSiteWise: {
290
+ * entryId: "STRING_VALUE",
291
+ * assetId: "STRING_VALUE",
292
+ * propertyId: "STRING_VALUE",
293
+ * propertyAlias: "STRING_VALUE",
294
+ * propertyValue: {
295
+ * value: {
296
+ * stringValue: "STRING_VALUE",
297
+ * integerValue: "STRING_VALUE",
298
+ * doubleValue: "STRING_VALUE",
299
+ * booleanValue: "STRING_VALUE",
300
+ * },
301
+ * timestamp: {
302
+ * timeInSeconds: "STRING_VALUE", // required
303
+ * offsetInNanos: "STRING_VALUE",
304
+ * },
305
+ * quality: "STRING_VALUE",
306
+ * },
307
+ * },
308
+ * },
309
+ * ],
310
+ * },
311
+ * ],
312
+ * },
313
+ * onExit: { // OnExitLifecycle
314
+ * events: [
315
+ * {
316
+ * eventName: "STRING_VALUE", // required
317
+ * condition: "STRING_VALUE",
318
+ * actions: [
319
+ * {
320
+ * setVariable: {
321
+ * variableName: "STRING_VALUE", // required
322
+ * value: "STRING_VALUE", // required
323
+ * },
324
+ * sns: {
325
+ * targetArn: "STRING_VALUE", // required
326
+ * payload: "<Payload>",
327
+ * },
328
+ * iotTopicPublish: {
329
+ * mqttTopic: "STRING_VALUE", // required
330
+ * payload: "<Payload>",
331
+ * },
332
+ * setTimer: {
333
+ * timerName: "STRING_VALUE", // required
334
+ * seconds: Number("int"),
335
+ * durationExpression: "STRING_VALUE",
336
+ * },
337
+ * clearTimer: {
338
+ * timerName: "STRING_VALUE", // required
339
+ * },
340
+ * resetTimer: {
341
+ * timerName: "STRING_VALUE", // required
342
+ * },
343
+ * lambda: {
344
+ * functionArn: "STRING_VALUE", // required
345
+ * payload: "<Payload>",
346
+ * },
347
+ * iotEvents: {
348
+ * inputName: "STRING_VALUE", // required
349
+ * payload: "<Payload>",
350
+ * },
351
+ * sqs: {
352
+ * queueUrl: "STRING_VALUE", // required
353
+ * useBase64: true || false,
354
+ * payload: "<Payload>",
355
+ * },
356
+ * firehose: {
357
+ * deliveryStreamName: "STRING_VALUE", // required
358
+ * separator: "STRING_VALUE",
359
+ * payload: "<Payload>",
360
+ * },
361
+ * dynamoDB: {
362
+ * hashKeyType: "STRING_VALUE",
363
+ * hashKeyField: "STRING_VALUE", // required
364
+ * hashKeyValue: "STRING_VALUE", // required
365
+ * rangeKeyType: "STRING_VALUE",
366
+ * rangeKeyField: "STRING_VALUE",
367
+ * rangeKeyValue: "STRING_VALUE",
368
+ * operation: "STRING_VALUE",
369
+ * payloadField: "STRING_VALUE",
370
+ * tableName: "STRING_VALUE", // required
371
+ * payload: "<Payload>",
372
+ * },
373
+ * dynamoDBv2: {
374
+ * tableName: "STRING_VALUE", // required
375
+ * payload: "<Payload>",
376
+ * },
377
+ * iotSiteWise: {
378
+ * entryId: "STRING_VALUE",
379
+ * assetId: "STRING_VALUE",
380
+ * propertyId: "STRING_VALUE",
381
+ * propertyAlias: "STRING_VALUE",
382
+ * propertyValue: {
383
+ * value: {
384
+ * stringValue: "STRING_VALUE",
385
+ * integerValue: "STRING_VALUE",
386
+ * doubleValue: "STRING_VALUE",
387
+ * booleanValue: "STRING_VALUE",
388
+ * },
389
+ * timestamp: {
390
+ * timeInSeconds: "STRING_VALUE", // required
391
+ * offsetInNanos: "STRING_VALUE",
392
+ * },
393
+ * quality: "STRING_VALUE",
394
+ * },
395
+ * },
396
+ * },
397
+ * ],
398
+ * },
399
+ * ],
400
+ * },
401
+ * },
402
+ * ],
403
+ * initialStateName: "STRING_VALUE", // required
404
+ * },
405
+ * detectorModelDescription: "STRING_VALUE",
406
+ * key: "STRING_VALUE",
407
+ * roleArn: "STRING_VALUE", // required
408
+ * tags: [ // Tags
409
+ * { // Tag
410
+ * key: "STRING_VALUE", // required
411
+ * value: "STRING_VALUE", // required
412
+ * },
413
+ * ],
414
+ * evaluationMethod: "STRING_VALUE",
415
+ * };
29
416
  * const command = new CreateDetectorModelCommand(input);
30
417
  * const response = await client.send(command);
31
418
  * ```
@@ -26,6 +26,23 @@ export interface CreateInputCommandOutput extends CreateInputResponse, __Metadat
26
26
  * import { IoTEventsClient, CreateInputCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
27
27
  * // const { IoTEventsClient, CreateInputCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
28
28
  * const client = new IoTEventsClient(config);
29
+ * const input = { // CreateInputRequest
30
+ * inputName: "STRING_VALUE", // required
31
+ * inputDescription: "STRING_VALUE",
32
+ * inputDefinition: { // InputDefinition
33
+ * attributes: [ // Attributes // required
34
+ * { // Attribute
35
+ * jsonPath: "STRING_VALUE", // required
36
+ * },
37
+ * ],
38
+ * },
39
+ * tags: [ // Tags
40
+ * { // Tag
41
+ * key: "STRING_VALUE", // required
42
+ * value: "STRING_VALUE", // required
43
+ * },
44
+ * ],
45
+ * };
29
46
  * const command = new CreateInputCommand(input);
30
47
  * const response = await client.send(command);
31
48
  * ```
@@ -27,6 +27,9 @@ export interface DeleteAlarmModelCommandOutput extends DeleteAlarmModelResponse,
27
27
  * import { IoTEventsClient, DeleteAlarmModelCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
28
28
  * // const { IoTEventsClient, DeleteAlarmModelCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
29
29
  * const client = new IoTEventsClient(config);
30
+ * const input = { // DeleteAlarmModelRequest
31
+ * alarmModelName: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DeleteAlarmModelCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -27,6 +27,9 @@ export interface DeleteDetectorModelCommandOutput extends DeleteDetectorModelRes
27
27
  * import { IoTEventsClient, DeleteDetectorModelCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
28
28
  * // const { IoTEventsClient, DeleteDetectorModelCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
29
29
  * const client = new IoTEventsClient(config);
30
+ * const input = { // DeleteDetectorModelRequest
31
+ * detectorModelName: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DeleteDetectorModelCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -26,6 +26,9 @@ export interface DeleteInputCommandOutput extends DeleteInputResponse, __Metadat
26
26
  * import { IoTEventsClient, DeleteInputCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
27
27
  * // const { IoTEventsClient, DeleteInputCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
28
28
  * const client = new IoTEventsClient(config);
29
+ * const input = { // DeleteInputRequest
30
+ * inputName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteInputCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -27,6 +27,10 @@ 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 = { // DescribeAlarmModelRequest
31
+ * alarmModelName: "STRING_VALUE", // required
32
+ * alarmModelVersion: "STRING_VALUE",
33
+ * };
30
34
  * const command = new DescribeAlarmModelCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -29,6 +29,9 @@ 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 = { // DescribeDetectorModelAnalysisRequest
33
+ * analysisId: "STRING_VALUE", // required
34
+ * };
32
35
  * const command = new DescribeDetectorModelAnalysisCommand(input);
33
36
  * const response = await client.send(command);
34
37
  * ```
@@ -27,6 +27,10 @@ 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 = { // DescribeDetectorModelRequest
31
+ * detectorModelName: "STRING_VALUE", // required
32
+ * detectorModelVersion: "STRING_VALUE",
33
+ * };
30
34
  * const command = new DescribeDetectorModelCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -26,6 +26,9 @@ 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 = { // DescribeInputRequest
30
+ * inputName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeInputCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,7 @@ export interface DescribeLoggingOptionsCommandOutput extends DescribeLoggingOpti
26
26
  * import { IoTEventsClient, DescribeLoggingOptionsCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
27
27
  * // const { IoTEventsClient, DescribeLoggingOptionsCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
28
28
  * const client = new IoTEventsClient(config);
29
+ * const input = {};
29
30
  * const command = new DescribeLoggingOptionsCommand(input);
30
31
  * const response = await client.send(command);
31
32
  * ```