@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.
- package/dist-cjs/models/models_0.js +52 -61
- package/dist-es/models/models_0.js +52 -61
- package/dist-types/commands/CreateAlarmModelCommand.d.ts +41 -53
- package/dist-types/commands/CreateDetectorModelCommand.d.ts +59 -140
- package/dist-types/commands/CreateInputCommand.d.ts +6 -6
- package/dist-types/commands/DeleteAlarmModelCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDetectorModelCommand.d.ts +1 -1
- package/dist-types/commands/DeleteInputCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAlarmModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDetectorModelAnalysisCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDetectorModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInputCommand.d.ts +1 -1
- package/dist-types/commands/GetDetectorModelAnalysisResultsCommand.d.ts +1 -1
- package/dist-types/commands/ListAlarmModelVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListAlarmModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListDetectorModelVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListDetectorModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListInputRoutingsCommand.d.ts +5 -5
- package/dist-types/commands/ListInputsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutLoggingOptionsCommand.d.ts +4 -4
- package/dist-types/commands/StartDetectorModelAnalysisCommand.d.ts +57 -138
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateAlarmModelCommand.d.ts +39 -51
- package/dist-types/commands/UpdateDetectorModelCommand.d.ts +57 -138
- package/dist-types/commands/UpdateInputCommand.d.ts +4 -4
- package/dist-types/models/models_0.d.ts +97 -52
- package/dist-types/ts3.4/models/models_0.d.ts +67 -52
- package/package.json +34 -34
|
@@ -26,63 +26,63 @@ 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 = {
|
|
29
|
+
* const input = { // CreateDetectorModelRequest
|
|
30
30
|
* detectorModelName: "STRING_VALUE", // required
|
|
31
|
-
* detectorModelDefinition: {
|
|
32
|
-
* states: [ // required
|
|
33
|
-
* {
|
|
31
|
+
* detectorModelDefinition: { // DetectorModelDefinition
|
|
32
|
+
* states: [ // States // required
|
|
33
|
+
* { // State
|
|
34
34
|
* stateName: "STRING_VALUE", // required
|
|
35
|
-
* onInput: {
|
|
36
|
-
* events: [
|
|
37
|
-
* {
|
|
35
|
+
* onInput: { // OnInputLifecycle
|
|
36
|
+
* events: [ // Events
|
|
37
|
+
* { // Event
|
|
38
38
|
* eventName: "STRING_VALUE", // required
|
|
39
39
|
* condition: "STRING_VALUE",
|
|
40
|
-
* actions: [
|
|
41
|
-
* {
|
|
42
|
-
* setVariable: {
|
|
40
|
+
* actions: [ // Actions
|
|
41
|
+
* { // Action
|
|
42
|
+
* setVariable: { // SetVariableAction
|
|
43
43
|
* variableName: "STRING_VALUE", // required
|
|
44
44
|
* value: "STRING_VALUE", // required
|
|
45
45
|
* },
|
|
46
|
-
* sns: {
|
|
46
|
+
* sns: { // SNSTopicPublishAction
|
|
47
47
|
* targetArn: "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
|
-
* iotTopicPublish: {
|
|
53
|
+
* iotTopicPublish: { // IotTopicPublishAction
|
|
54
54
|
* mqttTopic: "STRING_VALUE", // required
|
|
55
55
|
* payload: {
|
|
56
56
|
* contentExpression: "STRING_VALUE", // required
|
|
57
57
|
* type: "STRING_VALUE", // required
|
|
58
58
|
* },
|
|
59
59
|
* },
|
|
60
|
-
* setTimer: {
|
|
60
|
+
* setTimer: { // SetTimerAction
|
|
61
61
|
* timerName: "STRING_VALUE", // required
|
|
62
62
|
* seconds: Number("int"),
|
|
63
63
|
* durationExpression: "STRING_VALUE",
|
|
64
64
|
* },
|
|
65
|
-
* clearTimer: {
|
|
65
|
+
* clearTimer: { // ClearTimerAction
|
|
66
66
|
* timerName: "STRING_VALUE", // required
|
|
67
67
|
* },
|
|
68
|
-
* resetTimer: {
|
|
68
|
+
* resetTimer: { // ResetTimerAction
|
|
69
69
|
* timerName: "STRING_VALUE", // required
|
|
70
70
|
* },
|
|
71
|
-
* lambda: {
|
|
71
|
+
* lambda: { // LambdaAction
|
|
72
72
|
* functionArn: "STRING_VALUE", // required
|
|
73
73
|
* payload: {
|
|
74
74
|
* contentExpression: "STRING_VALUE", // required
|
|
75
75
|
* type: "STRING_VALUE", // required
|
|
76
76
|
* },
|
|
77
77
|
* },
|
|
78
|
-
* iotEvents: {
|
|
78
|
+
* iotEvents: { // IotEventsAction
|
|
79
79
|
* inputName: "STRING_VALUE", // required
|
|
80
80
|
* payload: {
|
|
81
81
|
* contentExpression: "STRING_VALUE", // required
|
|
82
82
|
* type: "STRING_VALUE", // required
|
|
83
83
|
* },
|
|
84
84
|
* },
|
|
85
|
-
* sqs: {
|
|
85
|
+
* sqs: { // SqsAction
|
|
86
86
|
* queueUrl: "STRING_VALUE", // required
|
|
87
87
|
* useBase64: true || false,
|
|
88
88
|
* payload: {
|
|
@@ -90,15 +90,12 @@ export interface CreateDetectorModelCommandOutput extends CreateDetectorModelRes
|
|
|
90
90
|
* type: "STRING_VALUE", // required
|
|
91
91
|
* },
|
|
92
92
|
* },
|
|
93
|
-
* firehose: {
|
|
93
|
+
* firehose: { // FirehoseAction
|
|
94
94
|
* deliveryStreamName: "STRING_VALUE", // required
|
|
95
95
|
* separator: "STRING_VALUE",
|
|
96
|
-
* payload:
|
|
97
|
-
* contentExpression: "STRING_VALUE", // required
|
|
98
|
-
* type: "STRING_VALUE", // required
|
|
99
|
-
* },
|
|
96
|
+
* payload: "<Payload>",
|
|
100
97
|
* },
|
|
101
|
-
* dynamoDB: {
|
|
98
|
+
* dynamoDB: { // DynamoDBAction
|
|
102
99
|
* hashKeyType: "STRING_VALUE",
|
|
103
100
|
* hashKeyField: "STRING_VALUE", // required
|
|
104
101
|
* hashKeyValue: "STRING_VALUE", // required
|
|
@@ -108,31 +105,25 @@ export interface CreateDetectorModelCommandOutput extends CreateDetectorModelRes
|
|
|
108
105
|
* operation: "STRING_VALUE",
|
|
109
106
|
* payloadField: "STRING_VALUE",
|
|
110
107
|
* tableName: "STRING_VALUE", // required
|
|
111
|
-
* payload:
|
|
112
|
-
* contentExpression: "STRING_VALUE", // required
|
|
113
|
-
* type: "STRING_VALUE", // required
|
|
114
|
-
* },
|
|
108
|
+
* payload: "<Payload>",
|
|
115
109
|
* },
|
|
116
|
-
* dynamoDBv2: {
|
|
110
|
+
* dynamoDBv2: { // DynamoDBv2Action
|
|
117
111
|
* tableName: "STRING_VALUE", // required
|
|
118
|
-
* payload:
|
|
119
|
-
* contentExpression: "STRING_VALUE", // required
|
|
120
|
-
* type: "STRING_VALUE", // required
|
|
121
|
-
* },
|
|
112
|
+
* payload: "<Payload>",
|
|
122
113
|
* },
|
|
123
|
-
* iotSiteWise: {
|
|
114
|
+
* iotSiteWise: { // IotSiteWiseAction
|
|
124
115
|
* entryId: "STRING_VALUE",
|
|
125
116
|
* assetId: "STRING_VALUE",
|
|
126
117
|
* propertyId: "STRING_VALUE",
|
|
127
118
|
* propertyAlias: "STRING_VALUE",
|
|
128
|
-
* propertyValue: {
|
|
129
|
-
* value: {
|
|
119
|
+
* propertyValue: { // AssetPropertyValue
|
|
120
|
+
* value: { // AssetPropertyVariant
|
|
130
121
|
* stringValue: "STRING_VALUE",
|
|
131
122
|
* integerValue: "STRING_VALUE",
|
|
132
123
|
* doubleValue: "STRING_VALUE",
|
|
133
124
|
* booleanValue: "STRING_VALUE",
|
|
134
125
|
* },
|
|
135
|
-
* timestamp: {
|
|
126
|
+
* timestamp: { // AssetPropertyTimestamp
|
|
136
127
|
* timeInSeconds: "STRING_VALUE", // required
|
|
137
128
|
* offsetInNanos: "STRING_VALUE",
|
|
138
129
|
* },
|
|
@@ -143,8 +134,8 @@ export interface CreateDetectorModelCommandOutput extends CreateDetectorModelRes
|
|
|
143
134
|
* ],
|
|
144
135
|
* },
|
|
145
136
|
* ],
|
|
146
|
-
* transitionEvents: [
|
|
147
|
-
* {
|
|
137
|
+
* transitionEvents: [ // TransitionEvents
|
|
138
|
+
* { // TransitionEvent
|
|
148
139
|
* eventName: "STRING_VALUE", // required
|
|
149
140
|
* condition: "STRING_VALUE", // required
|
|
150
141
|
* actions: [
|
|
@@ -155,17 +146,11 @@ export interface CreateDetectorModelCommandOutput extends CreateDetectorModelRes
|
|
|
155
146
|
* },
|
|
156
147
|
* sns: {
|
|
157
148
|
* targetArn: "STRING_VALUE", // required
|
|
158
|
-
* payload:
|
|
159
|
-
* contentExpression: "STRING_VALUE", // required
|
|
160
|
-
* type: "STRING_VALUE", // required
|
|
161
|
-
* },
|
|
149
|
+
* payload: "<Payload>",
|
|
162
150
|
* },
|
|
163
151
|
* iotTopicPublish: {
|
|
164
152
|
* mqttTopic: "STRING_VALUE", // required
|
|
165
|
-
* payload:
|
|
166
|
-
* contentExpression: "STRING_VALUE", // required
|
|
167
|
-
* type: "STRING_VALUE", // required
|
|
168
|
-
* },
|
|
153
|
+
* payload: "<Payload>",
|
|
169
154
|
* },
|
|
170
155
|
* setTimer: {
|
|
171
156
|
* timerName: "STRING_VALUE", // required
|
|
@@ -180,33 +165,21 @@ export interface CreateDetectorModelCommandOutput extends CreateDetectorModelRes
|
|
|
180
165
|
* },
|
|
181
166
|
* lambda: {
|
|
182
167
|
* functionArn: "STRING_VALUE", // required
|
|
183
|
-
* payload:
|
|
184
|
-
* contentExpression: "STRING_VALUE", // required
|
|
185
|
-
* type: "STRING_VALUE", // required
|
|
186
|
-
* },
|
|
168
|
+
* payload: "<Payload>",
|
|
187
169
|
* },
|
|
188
170
|
* iotEvents: {
|
|
189
171
|
* inputName: "STRING_VALUE", // required
|
|
190
|
-
* payload:
|
|
191
|
-
* contentExpression: "STRING_VALUE", // required
|
|
192
|
-
* type: "STRING_VALUE", // required
|
|
193
|
-
* },
|
|
172
|
+
* payload: "<Payload>",
|
|
194
173
|
* },
|
|
195
174
|
* sqs: {
|
|
196
175
|
* queueUrl: "STRING_VALUE", // required
|
|
197
176
|
* useBase64: true || false,
|
|
198
|
-
* payload:
|
|
199
|
-
* contentExpression: "STRING_VALUE", // required
|
|
200
|
-
* type: "STRING_VALUE", // required
|
|
201
|
-
* },
|
|
177
|
+
* payload: "<Payload>",
|
|
202
178
|
* },
|
|
203
179
|
* firehose: {
|
|
204
180
|
* deliveryStreamName: "STRING_VALUE", // required
|
|
205
181
|
* separator: "STRING_VALUE",
|
|
206
|
-
* payload:
|
|
207
|
-
* contentExpression: "STRING_VALUE", // required
|
|
208
|
-
* type: "STRING_VALUE", // required
|
|
209
|
-
* },
|
|
182
|
+
* payload: "<Payload>",
|
|
210
183
|
* },
|
|
211
184
|
* dynamoDB: {
|
|
212
185
|
* hashKeyType: "STRING_VALUE",
|
|
@@ -218,17 +191,11 @@ export interface CreateDetectorModelCommandOutput extends CreateDetectorModelRes
|
|
|
218
191
|
* operation: "STRING_VALUE",
|
|
219
192
|
* payloadField: "STRING_VALUE",
|
|
220
193
|
* tableName: "STRING_VALUE", // required
|
|
221
|
-
* payload:
|
|
222
|
-
* contentExpression: "STRING_VALUE", // required
|
|
223
|
-
* type: "STRING_VALUE", // required
|
|
224
|
-
* },
|
|
194
|
+
* payload: "<Payload>",
|
|
225
195
|
* },
|
|
226
196
|
* dynamoDBv2: {
|
|
227
197
|
* tableName: "STRING_VALUE", // required
|
|
228
|
-
* payload:
|
|
229
|
-
* contentExpression: "STRING_VALUE", // required
|
|
230
|
-
* type: "STRING_VALUE", // required
|
|
231
|
-
* },
|
|
198
|
+
* payload: "<Payload>",
|
|
232
199
|
* },
|
|
233
200
|
* iotSiteWise: {
|
|
234
201
|
* entryId: "STRING_VALUE",
|
|
@@ -255,7 +222,7 @@ export interface CreateDetectorModelCommandOutput extends CreateDetectorModelRes
|
|
|
255
222
|
* },
|
|
256
223
|
* ],
|
|
257
224
|
* },
|
|
258
|
-
* onEnter: {
|
|
225
|
+
* onEnter: { // OnEnterLifecycle
|
|
259
226
|
* events: [
|
|
260
227
|
* {
|
|
261
228
|
* eventName: "STRING_VALUE", // required
|
|
@@ -268,17 +235,11 @@ export interface CreateDetectorModelCommandOutput extends CreateDetectorModelRes
|
|
|
268
235
|
* },
|
|
269
236
|
* sns: {
|
|
270
237
|
* targetArn: "STRING_VALUE", // required
|
|
271
|
-
* payload:
|
|
272
|
-
* contentExpression: "STRING_VALUE", // required
|
|
273
|
-
* type: "STRING_VALUE", // required
|
|
274
|
-
* },
|
|
238
|
+
* payload: "<Payload>",
|
|
275
239
|
* },
|
|
276
240
|
* iotTopicPublish: {
|
|
277
241
|
* mqttTopic: "STRING_VALUE", // required
|
|
278
|
-
* payload:
|
|
279
|
-
* contentExpression: "STRING_VALUE", // required
|
|
280
|
-
* type: "STRING_VALUE", // required
|
|
281
|
-
* },
|
|
242
|
+
* payload: "<Payload>",
|
|
282
243
|
* },
|
|
283
244
|
* setTimer: {
|
|
284
245
|
* timerName: "STRING_VALUE", // required
|
|
@@ -293,33 +254,21 @@ export interface CreateDetectorModelCommandOutput extends CreateDetectorModelRes
|
|
|
293
254
|
* },
|
|
294
255
|
* lambda: {
|
|
295
256
|
* functionArn: "STRING_VALUE", // required
|
|
296
|
-
* payload:
|
|
297
|
-
* contentExpression: "STRING_VALUE", // required
|
|
298
|
-
* type: "STRING_VALUE", // required
|
|
299
|
-
* },
|
|
257
|
+
* payload: "<Payload>",
|
|
300
258
|
* },
|
|
301
259
|
* iotEvents: {
|
|
302
260
|
* inputName: "STRING_VALUE", // required
|
|
303
|
-
* payload:
|
|
304
|
-
* contentExpression: "STRING_VALUE", // required
|
|
305
|
-
* type: "STRING_VALUE", // required
|
|
306
|
-
* },
|
|
261
|
+
* payload: "<Payload>",
|
|
307
262
|
* },
|
|
308
263
|
* sqs: {
|
|
309
264
|
* queueUrl: "STRING_VALUE", // required
|
|
310
265
|
* useBase64: true || false,
|
|
311
|
-
* payload:
|
|
312
|
-
* contentExpression: "STRING_VALUE", // required
|
|
313
|
-
* type: "STRING_VALUE", // required
|
|
314
|
-
* },
|
|
266
|
+
* payload: "<Payload>",
|
|
315
267
|
* },
|
|
316
268
|
* firehose: {
|
|
317
269
|
* deliveryStreamName: "STRING_VALUE", // required
|
|
318
270
|
* separator: "STRING_VALUE",
|
|
319
|
-
* payload:
|
|
320
|
-
* contentExpression: "STRING_VALUE", // required
|
|
321
|
-
* type: "STRING_VALUE", // required
|
|
322
|
-
* },
|
|
271
|
+
* payload: "<Payload>",
|
|
323
272
|
* },
|
|
324
273
|
* dynamoDB: {
|
|
325
274
|
* hashKeyType: "STRING_VALUE",
|
|
@@ -331,17 +280,11 @@ export interface CreateDetectorModelCommandOutput extends CreateDetectorModelRes
|
|
|
331
280
|
* operation: "STRING_VALUE",
|
|
332
281
|
* payloadField: "STRING_VALUE",
|
|
333
282
|
* tableName: "STRING_VALUE", // required
|
|
334
|
-
* payload:
|
|
335
|
-
* contentExpression: "STRING_VALUE", // required
|
|
336
|
-
* type: "STRING_VALUE", // required
|
|
337
|
-
* },
|
|
283
|
+
* payload: "<Payload>",
|
|
338
284
|
* },
|
|
339
285
|
* dynamoDBv2: {
|
|
340
286
|
* tableName: "STRING_VALUE", // required
|
|
341
|
-
* payload:
|
|
342
|
-
* contentExpression: "STRING_VALUE", // required
|
|
343
|
-
* type: "STRING_VALUE", // required
|
|
344
|
-
* },
|
|
287
|
+
* payload: "<Payload>",
|
|
345
288
|
* },
|
|
346
289
|
* iotSiteWise: {
|
|
347
290
|
* entryId: "STRING_VALUE",
|
|
@@ -367,7 +310,7 @@ export interface CreateDetectorModelCommandOutput extends CreateDetectorModelRes
|
|
|
367
310
|
* },
|
|
368
311
|
* ],
|
|
369
312
|
* },
|
|
370
|
-
* onExit: {
|
|
313
|
+
* onExit: { // OnExitLifecycle
|
|
371
314
|
* events: [
|
|
372
315
|
* {
|
|
373
316
|
* eventName: "STRING_VALUE", // required
|
|
@@ -380,17 +323,11 @@ export interface CreateDetectorModelCommandOutput extends CreateDetectorModelRes
|
|
|
380
323
|
* },
|
|
381
324
|
* sns: {
|
|
382
325
|
* targetArn: "STRING_VALUE", // required
|
|
383
|
-
* payload:
|
|
384
|
-
* contentExpression: "STRING_VALUE", // required
|
|
385
|
-
* type: "STRING_VALUE", // required
|
|
386
|
-
* },
|
|
326
|
+
* payload: "<Payload>",
|
|
387
327
|
* },
|
|
388
328
|
* iotTopicPublish: {
|
|
389
329
|
* mqttTopic: "STRING_VALUE", // required
|
|
390
|
-
* payload:
|
|
391
|
-
* contentExpression: "STRING_VALUE", // required
|
|
392
|
-
* type: "STRING_VALUE", // required
|
|
393
|
-
* },
|
|
330
|
+
* payload: "<Payload>",
|
|
394
331
|
* },
|
|
395
332
|
* setTimer: {
|
|
396
333
|
* timerName: "STRING_VALUE", // required
|
|
@@ -405,33 +342,21 @@ export interface CreateDetectorModelCommandOutput extends CreateDetectorModelRes
|
|
|
405
342
|
* },
|
|
406
343
|
* lambda: {
|
|
407
344
|
* functionArn: "STRING_VALUE", // required
|
|
408
|
-
* payload:
|
|
409
|
-
* contentExpression: "STRING_VALUE", // required
|
|
410
|
-
* type: "STRING_VALUE", // required
|
|
411
|
-
* },
|
|
345
|
+
* payload: "<Payload>",
|
|
412
346
|
* },
|
|
413
347
|
* iotEvents: {
|
|
414
348
|
* inputName: "STRING_VALUE", // required
|
|
415
|
-
* payload:
|
|
416
|
-
* contentExpression: "STRING_VALUE", // required
|
|
417
|
-
* type: "STRING_VALUE", // required
|
|
418
|
-
* },
|
|
349
|
+
* payload: "<Payload>",
|
|
419
350
|
* },
|
|
420
351
|
* sqs: {
|
|
421
352
|
* queueUrl: "STRING_VALUE", // required
|
|
422
353
|
* useBase64: true || false,
|
|
423
|
-
* payload:
|
|
424
|
-
* contentExpression: "STRING_VALUE", // required
|
|
425
|
-
* type: "STRING_VALUE", // required
|
|
426
|
-
* },
|
|
354
|
+
* payload: "<Payload>",
|
|
427
355
|
* },
|
|
428
356
|
* firehose: {
|
|
429
357
|
* deliveryStreamName: "STRING_VALUE", // required
|
|
430
358
|
* separator: "STRING_VALUE",
|
|
431
|
-
* payload:
|
|
432
|
-
* contentExpression: "STRING_VALUE", // required
|
|
433
|
-
* type: "STRING_VALUE", // required
|
|
434
|
-
* },
|
|
359
|
+
* payload: "<Payload>",
|
|
435
360
|
* },
|
|
436
361
|
* dynamoDB: {
|
|
437
362
|
* hashKeyType: "STRING_VALUE",
|
|
@@ -443,17 +368,11 @@ export interface CreateDetectorModelCommandOutput extends CreateDetectorModelRes
|
|
|
443
368
|
* operation: "STRING_VALUE",
|
|
444
369
|
* payloadField: "STRING_VALUE",
|
|
445
370
|
* tableName: "STRING_VALUE", // required
|
|
446
|
-
* payload:
|
|
447
|
-
* contentExpression: "STRING_VALUE", // required
|
|
448
|
-
* type: "STRING_VALUE", // required
|
|
449
|
-
* },
|
|
371
|
+
* payload: "<Payload>",
|
|
450
372
|
* },
|
|
451
373
|
* dynamoDBv2: {
|
|
452
374
|
* tableName: "STRING_VALUE", // required
|
|
453
|
-
* payload:
|
|
454
|
-
* contentExpression: "STRING_VALUE", // required
|
|
455
|
-
* type: "STRING_VALUE", // required
|
|
456
|
-
* },
|
|
375
|
+
* payload: "<Payload>",
|
|
457
376
|
* },
|
|
458
377
|
* iotSiteWise: {
|
|
459
378
|
* entryId: "STRING_VALUE",
|
|
@@ -486,8 +405,8 @@ export interface CreateDetectorModelCommandOutput extends CreateDetectorModelRes
|
|
|
486
405
|
* detectorModelDescription: "STRING_VALUE",
|
|
487
406
|
* key: "STRING_VALUE",
|
|
488
407
|
* roleArn: "STRING_VALUE", // required
|
|
489
|
-
* tags: [
|
|
490
|
-
* {
|
|
408
|
+
* tags: [ // Tags
|
|
409
|
+
* { // Tag
|
|
491
410
|
* key: "STRING_VALUE", // required
|
|
492
411
|
* value: "STRING_VALUE", // required
|
|
493
412
|
* },
|
|
@@ -26,18 +26,18 @@ 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 = {
|
|
29
|
+
* const input = { // CreateInputRequest
|
|
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
|
* ],
|
|
38
38
|
* },
|
|
39
|
-
* tags: [
|
|
40
|
-
* {
|
|
39
|
+
* tags: [ // Tags
|
|
40
|
+
* { // Tag
|
|
41
41
|
* key: "STRING_VALUE", // required
|
|
42
42
|
* value: "STRING_VALUE", // required
|
|
43
43
|
* },
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DeleteAlarmModelRequest
|
|
31
31
|
* alarmModelName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteAlarmModelCommand(input);
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DeleteDetectorModelRequest
|
|
31
31
|
* detectorModelName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteDetectorModelCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteInputRequest
|
|
30
30
|
* inputName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteInputCommand(input);
|
|
@@ -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
|
* },
|