@aws-sdk/client-iot-events 3.296.0 → 3.297.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-types/IoTEvents.d.ts +27 -0
- package/dist-types/IoTEventsClient.d.ts +24 -4
- package/dist-types/commands/CreateAlarmModelCommand.d.ts +16 -0
- package/dist-types/commands/CreateDetectorModelCommand.d.ts +16 -0
- package/dist-types/commands/CreateInputCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAlarmModelCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDetectorModelCommand.d.ts +16 -0
- package/dist-types/commands/DeleteInputCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAlarmModelCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDetectorModelAnalysisCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDetectorModelCommand.d.ts +16 -0
- package/dist-types/commands/DescribeInputCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLoggingOptionsCommand.d.ts +16 -0
- package/dist-types/commands/GetDetectorModelAnalysisResultsCommand.d.ts +16 -0
- package/dist-types/commands/ListAlarmModelVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListAlarmModelsCommand.d.ts +16 -0
- package/dist-types/commands/ListDetectorModelVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListDetectorModelsCommand.d.ts +16 -0
- package/dist-types/commands/ListInputRoutingsCommand.d.ts +16 -0
- package/dist-types/commands/ListInputsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutLoggingOptionsCommand.d.ts +16 -0
- package/dist-types/commands/StartDetectorModelAnalysisCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAlarmModelCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDetectorModelCommand.d.ts +16 -0
- package/dist-types/commands/UpdateInputCommand.d.ts +16 -0
- package/dist-types/models/IoTEventsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +272 -21
- package/package.json +3 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { IoTEventsServiceException as __BaseException } from "./IoTEventsServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>Specifies whether to get notified for alarm state changes.</p>
|
|
5
6
|
*/
|
|
6
7
|
export interface AcknowledgeFlow {
|
|
@@ -14,6 +15,7 @@ export interface AcknowledgeFlow {
|
|
|
14
15
|
enabled: boolean | undefined;
|
|
15
16
|
}
|
|
16
17
|
/**
|
|
18
|
+
* @public
|
|
17
19
|
* <p>Information needed to clear the timer.</p>
|
|
18
20
|
*/
|
|
19
21
|
export interface ClearTimerAction {
|
|
@@ -22,11 +24,15 @@ export interface ClearTimerAction {
|
|
|
22
24
|
*/
|
|
23
25
|
timerName: string | undefined;
|
|
24
26
|
}
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
25
30
|
export declare enum PayloadType {
|
|
26
31
|
JSON = "JSON",
|
|
27
32
|
STRING = "STRING"
|
|
28
33
|
}
|
|
29
34
|
/**
|
|
35
|
+
* @public
|
|
30
36
|
* <p>Information needed to configure the payload.</p>
|
|
31
37
|
* <p>By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload
|
|
32
38
|
* contains all attribute-value pairs that have the information about the detector model instance
|
|
@@ -38,7 +44,7 @@ export interface Payload {
|
|
|
38
44
|
* <p>The content of the payload. You can use a string expression that includes quoted strings
|
|
39
45
|
* (<code>'<string>'</code>), variables (<code>$variable.<variable-name></code>),
|
|
40
46
|
* input values (<code>$input.<input-name>.<path-to-datum></code>), string
|
|
41
|
-
* concatenations, and quoted strings that contain <code
|
|
47
|
+
* concatenations, and quoted strings that contain <code>$\{\}</code> as the content. The
|
|
42
48
|
* recommended maximum size of a content expression is 1 KB.</p>
|
|
43
49
|
*/
|
|
44
50
|
contentExpression: string | undefined;
|
|
@@ -49,6 +55,7 @@ export interface Payload {
|
|
|
49
55
|
type: PayloadType | string | undefined;
|
|
50
56
|
}
|
|
51
57
|
/**
|
|
58
|
+
* @public
|
|
52
59
|
* <p>Defines an action to write to the Amazon DynamoDB table that you created. The standard action
|
|
53
60
|
* payload contains all the information about the detector model instance and the event that
|
|
54
61
|
* triggered the action. You can customize the <a href="https://docs.aws.amazon.com/iotevents/latest/apireference/API_Payload.html">payload</a>. One column of the
|
|
@@ -69,13 +76,13 @@ export interface Payload {
|
|
|
69
76
|
* <code>$input.GreenhouseInput.name</code>.</p>
|
|
70
77
|
* </li>
|
|
71
78
|
* <li>
|
|
72
|
-
* <p>For a substitution template, you must use <code
|
|
79
|
+
* <p>For a substitution template, you must use <code>$\{\}</code>, and the template must be
|
|
73
80
|
* in single quotes. A substitution template can also contain a combination of literals,
|
|
74
81
|
* operators, functions, references, and substitution templates.</p>
|
|
75
82
|
* <p>In the following example, the value for the <code>hashKeyValue</code> parameter uses a
|
|
76
83
|
* substitution template. </p>
|
|
77
84
|
* <p>
|
|
78
|
-
* <code>'
|
|
85
|
+
* <code>'$\{$input.GreenhouseInput.temperature * 6 / 5 + 32\} in Fahrenheit'</code>
|
|
79
86
|
* </p>
|
|
80
87
|
* </li>
|
|
81
88
|
* <li>
|
|
@@ -197,6 +204,7 @@ export interface DynamoDBAction {
|
|
|
197
204
|
payload?: Payload;
|
|
198
205
|
}
|
|
199
206
|
/**
|
|
207
|
+
* @public
|
|
200
208
|
* <p>Defines an action to write to the Amazon DynamoDB table that you created. The default action
|
|
201
209
|
* payload contains all the information about the detector model instance and the event that
|
|
202
210
|
* triggered the action. You can customize the <a href="https://docs.aws.amazon.com/iotevents/latest/apireference/API_Payload.html">payload</a>. A separate column of
|
|
@@ -218,14 +226,14 @@ export interface DynamoDBAction {
|
|
|
218
226
|
* <code>$variable.ddbtableName</code>.</p>
|
|
219
227
|
* </li>
|
|
220
228
|
* <li>
|
|
221
|
-
* <p>For a substitution template, you must use <code
|
|
229
|
+
* <p>For a substitution template, you must use <code>$\{\}</code>, and the template must be
|
|
222
230
|
* in single quotes. A substitution template can also contain a combination of literals,
|
|
223
231
|
* operators, functions, references, and substitution templates.</p>
|
|
224
232
|
* <p>In the following example, the value for the <code>contentExpression</code> parameter
|
|
225
233
|
* in <code>Payload</code> uses a substitution template. </p>
|
|
226
234
|
* <p>
|
|
227
|
-
* <code>'{\"sensorID\": \"
|
|
228
|
-
* \"
|
|
235
|
+
* <code>'\{\"sensorID\": \"$\{$input.GreenhouseInput.sensor_id\}\", \"temperature\":
|
|
236
|
+
* \"$\{$input.GreenhouseInput.temperature * 9 / 5 + 32\}\"\}'</code>
|
|
229
237
|
* </p>
|
|
230
238
|
* </li>
|
|
231
239
|
* <li>
|
|
@@ -260,6 +268,7 @@ export interface DynamoDBv2Action {
|
|
|
260
268
|
payload?: Payload;
|
|
261
269
|
}
|
|
262
270
|
/**
|
|
271
|
+
* @public
|
|
263
272
|
* <p>Sends information about the detector model instance and the event that triggered the
|
|
264
273
|
* action to an Amazon Kinesis Data Firehose delivery stream.</p>
|
|
265
274
|
*/
|
|
@@ -281,6 +290,7 @@ export interface FirehoseAction {
|
|
|
281
290
|
payload?: Payload;
|
|
282
291
|
}
|
|
283
292
|
/**
|
|
293
|
+
* @public
|
|
284
294
|
* <p>Sends an AWS IoT Events input, passing in information about the detector model instance and the
|
|
285
295
|
* event that triggered the action.</p>
|
|
286
296
|
*/
|
|
@@ -295,6 +305,7 @@ export interface IotEventsAction {
|
|
|
295
305
|
payload?: Payload;
|
|
296
306
|
}
|
|
297
307
|
/**
|
|
308
|
+
* @public
|
|
298
309
|
* <p>A structure that contains timestamp information. For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_TimeInNanos.html">TimeInNanos</a> in the <i>AWS IoT SiteWise API Reference</i>.</p>
|
|
299
310
|
* <p>You must use expressions for all parameters in <code>AssetPropertyTimestamp</code>. The
|
|
300
311
|
* expressions accept literals, operators, functions, references, and substitution
|
|
@@ -313,13 +324,13 @@ export interface IotEventsAction {
|
|
|
313
324
|
* <code>$variable.time</code>.</p>
|
|
314
325
|
* </li>
|
|
315
326
|
* <li>
|
|
316
|
-
* <p>For a substitution template, you must use <code
|
|
327
|
+
* <p>For a substitution template, you must use <code>$\{\}</code>, and the template must be
|
|
317
328
|
* in single quotes. A substitution template can also contain a combination of literals,
|
|
318
329
|
* operators, functions, references, and substitution templates.</p>
|
|
319
330
|
* <p>In the following example, the value for the <code>timeInSeconds</code> parameter uses
|
|
320
331
|
* a substitution template.</p>
|
|
321
332
|
* <p>
|
|
322
|
-
* <code>'
|
|
333
|
+
* <code>'$\{$input.TemperatureInput.sensorData.timestamp / 1000\}'</code>
|
|
323
334
|
* </p>
|
|
324
335
|
* </li>
|
|
325
336
|
* </ul>
|
|
@@ -340,6 +351,7 @@ export interface AssetPropertyTimestamp {
|
|
|
340
351
|
offsetInNanos?: string;
|
|
341
352
|
}
|
|
342
353
|
/**
|
|
354
|
+
* @public
|
|
343
355
|
* <p>A structure that contains an asset property value. For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_Variant.html">Variant</a>
|
|
344
356
|
* in the <i>AWS IoT SiteWise API Reference</i>.</p>
|
|
345
357
|
* <p>You must use expressions for all parameters in <code>AssetPropertyVariant</code>. The
|
|
@@ -359,13 +371,13 @@ export interface AssetPropertyTimestamp {
|
|
|
359
371
|
* <code>$variable.offline</code>.</p>
|
|
360
372
|
* </li>
|
|
361
373
|
* <li>
|
|
362
|
-
* <p>For a substitution template, you must use <code
|
|
374
|
+
* <p>For a substitution template, you must use <code>$\{\}</code>, and the template must be
|
|
363
375
|
* in single quotes. A substitution template can also contain a combination of literals,
|
|
364
376
|
* operators, functions, references, and substitution templates. </p>
|
|
365
377
|
* <p>In the following example, the value for the <code>doubleValue</code> parameter uses a
|
|
366
378
|
* substitution template. </p>
|
|
367
379
|
* <p>
|
|
368
|
-
* <code>'
|
|
380
|
+
* <code>'$\{$input.TemperatureInput.sensorData.temperature * 6 / 5 + 32\}'</code>
|
|
369
381
|
* </p>
|
|
370
382
|
* </li>
|
|
371
383
|
* </ul>
|
|
@@ -400,6 +412,7 @@ export interface AssetPropertyVariant {
|
|
|
400
412
|
booleanValue?: string;
|
|
401
413
|
}
|
|
402
414
|
/**
|
|
415
|
+
* @public
|
|
403
416
|
* <p>A structure that contains value information. For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_AssetPropertyValue.html">AssetPropertyValue</a> in the <i>AWS IoT SiteWise API Reference</i>.</p>
|
|
404
417
|
* <p>You must use expressions for all parameters in <code>AssetPropertyValue</code>. The
|
|
405
418
|
* expressions accept literals, operators, functions, references, and substitution
|
|
@@ -439,6 +452,7 @@ export interface AssetPropertyValue {
|
|
|
439
452
|
quality?: string;
|
|
440
453
|
}
|
|
441
454
|
/**
|
|
455
|
+
* @public
|
|
442
456
|
* <p>Sends information about the detector model instance and the event that triggered the
|
|
443
457
|
* action to a specified asset property in AWS IoT SiteWise.</p>
|
|
444
458
|
* <p>You must use expressions for all parameters in <code>IotSiteWiseAction</code>. The
|
|
@@ -459,14 +473,14 @@ export interface AssetPropertyValue {
|
|
|
459
473
|
* <code>$input.TurbineInput.assetId1</code>.</p>
|
|
460
474
|
* </li>
|
|
461
475
|
* <li>
|
|
462
|
-
* <p>For a substitution template, you must use <code
|
|
476
|
+
* <p>For a substitution template, you must use <code>$\{\}</code>, and the template must be
|
|
463
477
|
* in single quotes. A substitution template can also contain a combination of literals,
|
|
464
478
|
* operators, functions, references, and substitution templates.</p>
|
|
465
479
|
* <p>In the following example, the value for the <code>propertyAlias</code> parameter uses
|
|
466
480
|
* a substitution template. </p>
|
|
467
481
|
* <p>
|
|
468
|
-
* <code>'company/windfarm
|
|
469
|
-
*
|
|
482
|
+
* <code>'company/windfarm/$\{$input.TemperatureInput.sensorData.windfarmID\}/turbine/
|
|
483
|
+
* $\{$input.TemperatureInput.sensorData.turbineID\}/temperature'</code>
|
|
470
484
|
* </p>
|
|
471
485
|
* </li>
|
|
472
486
|
* </ul>
|
|
@@ -501,6 +515,7 @@ export interface IotSiteWiseAction {
|
|
|
501
515
|
propertyValue?: AssetPropertyValue;
|
|
502
516
|
}
|
|
503
517
|
/**
|
|
518
|
+
* @public
|
|
504
519
|
* <p>Information required to publish the MQTT message through the AWS IoT message broker.</p>
|
|
505
520
|
*/
|
|
506
521
|
export interface IotTopicPublishAction {
|
|
@@ -517,6 +532,7 @@ export interface IotTopicPublishAction {
|
|
|
517
532
|
payload?: Payload;
|
|
518
533
|
}
|
|
519
534
|
/**
|
|
535
|
+
* @public
|
|
520
536
|
* <p>Calls a Lambda function, passing in information about the detector model instance and the
|
|
521
537
|
* event that triggered the action.</p>
|
|
522
538
|
*/
|
|
@@ -531,6 +547,7 @@ export interface LambdaAction {
|
|
|
531
547
|
payload?: Payload;
|
|
532
548
|
}
|
|
533
549
|
/**
|
|
550
|
+
* @public
|
|
534
551
|
* <p>Information required to reset the timer. The timer is reset to the previously evaluated
|
|
535
552
|
* result of the duration. The duration expression isn't reevaluated when you reset the
|
|
536
553
|
* timer.</p>
|
|
@@ -542,6 +559,7 @@ export interface ResetTimerAction {
|
|
|
542
559
|
timerName: string | undefined;
|
|
543
560
|
}
|
|
544
561
|
/**
|
|
562
|
+
* @public
|
|
545
563
|
* <p>Information needed to set the timer.</p>
|
|
546
564
|
*/
|
|
547
565
|
export interface SetTimerAction {
|
|
@@ -566,6 +584,7 @@ export interface SetTimerAction {
|
|
|
566
584
|
durationExpression?: string;
|
|
567
585
|
}
|
|
568
586
|
/**
|
|
587
|
+
* @public
|
|
569
588
|
* <p>Information about the variable and its new value.</p>
|
|
570
589
|
*/
|
|
571
590
|
export interface SetVariableAction {
|
|
@@ -579,6 +598,7 @@ export interface SetVariableAction {
|
|
|
579
598
|
value: string | undefined;
|
|
580
599
|
}
|
|
581
600
|
/**
|
|
601
|
+
* @public
|
|
582
602
|
* <p>Information required to publish the Amazon SNS message.</p>
|
|
583
603
|
*/
|
|
584
604
|
export interface SNSTopicPublishAction {
|
|
@@ -593,6 +613,7 @@ export interface SNSTopicPublishAction {
|
|
|
593
613
|
payload?: Payload;
|
|
594
614
|
}
|
|
595
615
|
/**
|
|
616
|
+
* @public
|
|
596
617
|
* <p>Sends information about the detector model instance and the event that triggered the
|
|
597
618
|
* action to an Amazon SQS queue.</p>
|
|
598
619
|
*/
|
|
@@ -613,6 +634,7 @@ export interface SqsAction {
|
|
|
613
634
|
payload?: Payload;
|
|
614
635
|
}
|
|
615
636
|
/**
|
|
637
|
+
* @public
|
|
616
638
|
* <p>An action to be performed when the <code>condition</code> is TRUE.</p>
|
|
617
639
|
*/
|
|
618
640
|
export interface Action {
|
|
@@ -685,6 +707,7 @@ export interface Action {
|
|
|
685
707
|
iotSiteWise?: IotSiteWiseAction;
|
|
686
708
|
}
|
|
687
709
|
/**
|
|
710
|
+
* @public
|
|
688
711
|
* <p>Specifies one of the following actions to receive notifications when the alarm state
|
|
689
712
|
* changes.</p>
|
|
690
713
|
*/
|
|
@@ -738,13 +761,13 @@ export interface AlarmAction {
|
|
|
738
761
|
* <code>$input.GreenhouseInput.name</code>.</p>
|
|
739
762
|
* </li>
|
|
740
763
|
* <li>
|
|
741
|
-
* <p>For a substitution template, you must use <code
|
|
764
|
+
* <p>For a substitution template, you must use <code>$\{\}</code>, and the template must be
|
|
742
765
|
* in single quotes. A substitution template can also contain a combination of literals,
|
|
743
766
|
* operators, functions, references, and substitution templates.</p>
|
|
744
767
|
* <p>In the following example, the value for the <code>hashKeyValue</code> parameter uses a
|
|
745
768
|
* substitution template. </p>
|
|
746
769
|
* <p>
|
|
747
|
-
* <code>'
|
|
770
|
+
* <code>'$\{$input.GreenhouseInput.temperature * 6 / 5 + 32\} in Fahrenheit'</code>
|
|
748
771
|
* </p>
|
|
749
772
|
* </li>
|
|
750
773
|
* <li>
|
|
@@ -789,14 +812,14 @@ export interface AlarmAction {
|
|
|
789
812
|
* <code>$variable.ddbtableName</code>.</p>
|
|
790
813
|
* </li>
|
|
791
814
|
* <li>
|
|
792
|
-
* <p>For a substitution template, you must use <code
|
|
815
|
+
* <p>For a substitution template, you must use <code>$\{\}</code>, and the template must be
|
|
793
816
|
* in single quotes. A substitution template can also contain a combination of literals,
|
|
794
817
|
* operators, functions, references, and substitution templates.</p>
|
|
795
818
|
* <p>In the following example, the value for the <code>contentExpression</code> parameter
|
|
796
819
|
* in <code>Payload</code> uses a substitution template. </p>
|
|
797
820
|
* <p>
|
|
798
|
-
* <code>'{\"sensorID\": \"
|
|
799
|
-
* \"
|
|
821
|
+
* <code>'\{\"sensorID\": \"$\{$input.GreenhouseInput.sensor_id\}\", \"temperature\":
|
|
822
|
+
* \"$\{$input.GreenhouseInput.temperature * 9 / 5 + 32\}\"\}'</code>
|
|
800
823
|
* </p>
|
|
801
824
|
* </li>
|
|
802
825
|
* <li>
|
|
@@ -838,14 +861,14 @@ export interface AlarmAction {
|
|
|
838
861
|
* <code>$input.TurbineInput.assetId1</code>.</p>
|
|
839
862
|
* </li>
|
|
840
863
|
* <li>
|
|
841
|
-
* <p>For a substitution template, you must use <code
|
|
864
|
+
* <p>For a substitution template, you must use <code>$\{\}</code>, and the template must be
|
|
842
865
|
* in single quotes. A substitution template can also contain a combination of literals,
|
|
843
866
|
* operators, functions, references, and substitution templates.</p>
|
|
844
867
|
* <p>In the following example, the value for the <code>propertyAlias</code> parameter uses
|
|
845
868
|
* a substitution template. </p>
|
|
846
869
|
* <p>
|
|
847
|
-
* <code>'company/windfarm
|
|
848
|
-
*
|
|
870
|
+
* <code>'company/windfarm/$\{$input.TemperatureInput.sensorData.windfarmID\}/turbine/
|
|
871
|
+
* $\{$input.TemperatureInput.sensorData.turbineID\}/temperature'</code>
|
|
849
872
|
* </p>
|
|
850
873
|
* </li>
|
|
851
874
|
* </ul>
|
|
@@ -858,6 +881,7 @@ export interface AlarmAction {
|
|
|
858
881
|
iotSiteWise?: IotSiteWiseAction;
|
|
859
882
|
}
|
|
860
883
|
/**
|
|
884
|
+
* @public
|
|
861
885
|
* <p>Specifies the default alarm state.
|
|
862
886
|
* The configuration applies to all alarms that were created based on this alarm model.</p>
|
|
863
887
|
*/
|
|
@@ -870,6 +894,7 @@ export interface InitializationConfiguration {
|
|
|
870
894
|
disabledOnInitialization: boolean | undefined;
|
|
871
895
|
}
|
|
872
896
|
/**
|
|
897
|
+
* @public
|
|
873
898
|
* <p>Contains the configuration information of alarm state changes.</p>
|
|
874
899
|
*/
|
|
875
900
|
export interface AlarmCapabilities {
|
|
@@ -884,6 +909,7 @@ export interface AlarmCapabilities {
|
|
|
884
909
|
acknowledgeFlow?: AcknowledgeFlow;
|
|
885
910
|
}
|
|
886
911
|
/**
|
|
912
|
+
* @public
|
|
887
913
|
* <p>Contains information about one or more alarm actions.</p>
|
|
888
914
|
*/
|
|
889
915
|
export interface AlarmEventActions {
|
|
@@ -894,6 +920,7 @@ export interface AlarmEventActions {
|
|
|
894
920
|
alarmActions?: AlarmAction[];
|
|
895
921
|
}
|
|
896
922
|
/**
|
|
923
|
+
* @public
|
|
897
924
|
* <p>Contains a summary of an alarm model.</p>
|
|
898
925
|
*/
|
|
899
926
|
export interface AlarmModelSummary {
|
|
@@ -910,6 +937,9 @@ export interface AlarmModelSummary {
|
|
|
910
937
|
*/
|
|
911
938
|
alarmModelName?: string;
|
|
912
939
|
}
|
|
940
|
+
/**
|
|
941
|
+
* @public
|
|
942
|
+
*/
|
|
913
943
|
export declare enum AlarmModelVersionStatus {
|
|
914
944
|
ACTIVATING = "ACTIVATING",
|
|
915
945
|
ACTIVE = "ACTIVE",
|
|
@@ -917,6 +947,7 @@ export declare enum AlarmModelVersionStatus {
|
|
|
917
947
|
INACTIVE = "INACTIVE"
|
|
918
948
|
}
|
|
919
949
|
/**
|
|
950
|
+
* @public
|
|
920
951
|
* <p>Contains a summary of an alarm model version.</p>
|
|
921
952
|
*/
|
|
922
953
|
export interface AlarmModelVersionSummary {
|
|
@@ -977,6 +1008,7 @@ export interface AlarmModelVersionSummary {
|
|
|
977
1008
|
statusMessage?: string;
|
|
978
1009
|
}
|
|
979
1010
|
/**
|
|
1011
|
+
* @public
|
|
980
1012
|
* <p>Specifies an AWS Lambda function to manage alarm notifications.
|
|
981
1013
|
* You can create one or use the <a href="https://docs.aws.amazon.com/iotevents/latest/developerguide/lambda-support.html">AWS Lambda function provided by AWS IoT Events</a>.</p>
|
|
982
1014
|
*/
|
|
@@ -988,6 +1020,7 @@ export interface NotificationTargetActions {
|
|
|
988
1020
|
lambdaAction?: LambdaAction;
|
|
989
1021
|
}
|
|
990
1022
|
/**
|
|
1023
|
+
* @public
|
|
991
1024
|
* <p>Contains the subject and message of an email.</p>
|
|
992
1025
|
*/
|
|
993
1026
|
export interface EmailContent {
|
|
@@ -1001,6 +1034,7 @@ export interface EmailContent {
|
|
|
1001
1034
|
additionalMessage?: string;
|
|
1002
1035
|
}
|
|
1003
1036
|
/**
|
|
1037
|
+
* @public
|
|
1004
1038
|
* <p>Contains information about your identity source in AWS Single Sign-On. For more information, see
|
|
1005
1039
|
* the <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">AWS Single Sign-On
|
|
1006
1040
|
* User Guide</a>.</p>
|
|
@@ -1016,6 +1050,7 @@ export interface SSOIdentity {
|
|
|
1016
1050
|
userId?: string;
|
|
1017
1051
|
}
|
|
1018
1052
|
/**
|
|
1053
|
+
* @public
|
|
1019
1054
|
* <p>The information that identifies the recipient.</p>
|
|
1020
1055
|
*/
|
|
1021
1056
|
export interface RecipientDetail {
|
|
@@ -1025,6 +1060,7 @@ export interface RecipientDetail {
|
|
|
1025
1060
|
ssoIdentity?: SSOIdentity;
|
|
1026
1061
|
}
|
|
1027
1062
|
/**
|
|
1063
|
+
* @public
|
|
1028
1064
|
* <p>Contains the information of one or more recipients who receive the emails.</p>
|
|
1029
1065
|
* <important>
|
|
1030
1066
|
* <p>You must <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/addusers.html">add the users that receive emails to your AWS SSO store</a>.</p>
|
|
@@ -1037,6 +1073,7 @@ export interface EmailRecipients {
|
|
|
1037
1073
|
to?: RecipientDetail[];
|
|
1038
1074
|
}
|
|
1039
1075
|
/**
|
|
1076
|
+
* @public
|
|
1040
1077
|
* <p>Contains the configuration information of email notifications.</p>
|
|
1041
1078
|
*/
|
|
1042
1079
|
export interface EmailConfiguration {
|
|
@@ -1061,6 +1098,7 @@ export interface EmailConfiguration {
|
|
|
1061
1098
|
recipients: EmailRecipients | undefined;
|
|
1062
1099
|
}
|
|
1063
1100
|
/**
|
|
1101
|
+
* @public
|
|
1064
1102
|
* <p>Contains the configuration information of SMS notifications.</p>
|
|
1065
1103
|
*/
|
|
1066
1104
|
export interface SMSConfiguration {
|
|
@@ -1081,6 +1119,7 @@ export interface SMSConfiguration {
|
|
|
1081
1119
|
recipients: RecipientDetail[] | undefined;
|
|
1082
1120
|
}
|
|
1083
1121
|
/**
|
|
1122
|
+
* @public
|
|
1084
1123
|
* <p>Contains the notification settings of an alarm model.
|
|
1085
1124
|
* The settings apply to all alarms that were created based on this alarm model.</p>
|
|
1086
1125
|
*/
|
|
@@ -1100,6 +1139,7 @@ export interface NotificationAction {
|
|
|
1100
1139
|
emailConfigurations?: EmailConfiguration[];
|
|
1101
1140
|
}
|
|
1102
1141
|
/**
|
|
1142
|
+
* @public
|
|
1103
1143
|
* <p>Contains information about one or more notification actions.</p>
|
|
1104
1144
|
*/
|
|
1105
1145
|
export interface AlarmNotification {
|
|
@@ -1109,6 +1149,9 @@ export interface AlarmNotification {
|
|
|
1109
1149
|
*/
|
|
1110
1150
|
notificationActions?: NotificationAction[];
|
|
1111
1151
|
}
|
|
1152
|
+
/**
|
|
1153
|
+
* @public
|
|
1154
|
+
*/
|
|
1112
1155
|
export declare enum ComparisonOperator {
|
|
1113
1156
|
EQUAL = "EQUAL",
|
|
1114
1157
|
GREATER = "GREATER",
|
|
@@ -1118,6 +1161,7 @@ export declare enum ComparisonOperator {
|
|
|
1118
1161
|
NOT_EQUAL = "NOT_EQUAL"
|
|
1119
1162
|
}
|
|
1120
1163
|
/**
|
|
1164
|
+
* @public
|
|
1121
1165
|
* <p>A rule that compares an input property value to a threshold value with a comparison operator.</p>
|
|
1122
1166
|
*/
|
|
1123
1167
|
export interface SimpleRule {
|
|
@@ -1137,6 +1181,7 @@ export interface SimpleRule {
|
|
|
1137
1181
|
threshold: string | undefined;
|
|
1138
1182
|
}
|
|
1139
1183
|
/**
|
|
1184
|
+
* @public
|
|
1140
1185
|
* <p>Defines when your alarm is invoked.</p>
|
|
1141
1186
|
*/
|
|
1142
1187
|
export interface AlarmRule {
|
|
@@ -1145,12 +1190,16 @@ export interface AlarmRule {
|
|
|
1145
1190
|
*/
|
|
1146
1191
|
simpleRule?: SimpleRule;
|
|
1147
1192
|
}
|
|
1193
|
+
/**
|
|
1194
|
+
* @public
|
|
1195
|
+
*/
|
|
1148
1196
|
export declare enum AnalysisResultLevel {
|
|
1149
1197
|
ERROR = "ERROR",
|
|
1150
1198
|
INFO = "INFO",
|
|
1151
1199
|
WARNING = "WARNING"
|
|
1152
1200
|
}
|
|
1153
1201
|
/**
|
|
1202
|
+
* @public
|
|
1154
1203
|
* <p>Contains information that you can use to locate the field in your detector model that the
|
|
1155
1204
|
* analysis result references.</p>
|
|
1156
1205
|
*/
|
|
@@ -1162,6 +1211,7 @@ export interface AnalysisResultLocation {
|
|
|
1162
1211
|
path?: string;
|
|
1163
1212
|
}
|
|
1164
1213
|
/**
|
|
1214
|
+
* @public
|
|
1165
1215
|
* <p>Contains the result of the analysis.</p>
|
|
1166
1216
|
*/
|
|
1167
1217
|
export interface AnalysisResult {
|
|
@@ -1244,12 +1294,16 @@ export interface AnalysisResult {
|
|
|
1244
1294
|
*/
|
|
1245
1295
|
locations?: AnalysisResultLocation[];
|
|
1246
1296
|
}
|
|
1297
|
+
/**
|
|
1298
|
+
* @public
|
|
1299
|
+
*/
|
|
1247
1300
|
export declare enum AnalysisStatus {
|
|
1248
1301
|
COMPLETE = "COMPLETE",
|
|
1249
1302
|
FAILED = "FAILED",
|
|
1250
1303
|
RUNNING = "RUNNING"
|
|
1251
1304
|
}
|
|
1252
1305
|
/**
|
|
1306
|
+
* @public
|
|
1253
1307
|
* <p>The attributes from the JSON payload that are made available by the input. Inputs are
|
|
1254
1308
|
* derived from messages sent to the AWS IoT Events system using <code>BatchPutMessage</code>. Each such
|
|
1255
1309
|
* message contains a JSON payload. Those attributes (and their paired values) specified here are
|
|
@@ -1268,6 +1322,7 @@ export interface Attribute {
|
|
|
1268
1322
|
jsonPath: string | undefined;
|
|
1269
1323
|
}
|
|
1270
1324
|
/**
|
|
1325
|
+
* @public
|
|
1271
1326
|
* <p>Metadata that can be used to manage the resource.</p>
|
|
1272
1327
|
*/
|
|
1273
1328
|
export interface Tag {
|
|
@@ -1280,6 +1335,9 @@ export interface Tag {
|
|
|
1280
1335
|
*/
|
|
1281
1336
|
value: string | undefined;
|
|
1282
1337
|
}
|
|
1338
|
+
/**
|
|
1339
|
+
* @public
|
|
1340
|
+
*/
|
|
1283
1341
|
export interface CreateAlarmModelRequest {
|
|
1284
1342
|
/**
|
|
1285
1343
|
* <p>A unique name that helps you identify the alarm model. You can't change this name after
|
|
@@ -1328,6 +1386,9 @@ export interface CreateAlarmModelRequest {
|
|
|
1328
1386
|
*/
|
|
1329
1387
|
alarmCapabilities?: AlarmCapabilities;
|
|
1330
1388
|
}
|
|
1389
|
+
/**
|
|
1390
|
+
* @public
|
|
1391
|
+
*/
|
|
1331
1392
|
export interface CreateAlarmModelResponse {
|
|
1332
1393
|
/**
|
|
1333
1394
|
* <p>The time the alarm model was created, in the Unix epoch format.</p>
|
|
@@ -1372,6 +1433,7 @@ export interface CreateAlarmModelResponse {
|
|
|
1372
1433
|
status?: AlarmModelVersionStatus | string;
|
|
1373
1434
|
}
|
|
1374
1435
|
/**
|
|
1436
|
+
* @public
|
|
1375
1437
|
* <p>An internal failure occurred.</p>
|
|
1376
1438
|
*/
|
|
1377
1439
|
export declare class InternalFailureException extends __BaseException {
|
|
@@ -1383,6 +1445,7 @@ export declare class InternalFailureException extends __BaseException {
|
|
|
1383
1445
|
constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
|
|
1384
1446
|
}
|
|
1385
1447
|
/**
|
|
1448
|
+
* @public
|
|
1386
1449
|
* <p>The request was invalid.</p>
|
|
1387
1450
|
*/
|
|
1388
1451
|
export declare class InvalidRequestException extends __BaseException {
|
|
@@ -1394,6 +1457,7 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
1394
1457
|
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
1395
1458
|
}
|
|
1396
1459
|
/**
|
|
1460
|
+
* @public
|
|
1397
1461
|
* <p>A limit was exceeded.</p>
|
|
1398
1462
|
*/
|
|
1399
1463
|
export declare class LimitExceededException extends __BaseException {
|
|
@@ -1405,6 +1469,7 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
1405
1469
|
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
1406
1470
|
}
|
|
1407
1471
|
/**
|
|
1472
|
+
* @public
|
|
1408
1473
|
* <p>The resource already exists.</p>
|
|
1409
1474
|
*/
|
|
1410
1475
|
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
@@ -1424,6 +1489,7 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
|
1424
1489
|
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
1425
1490
|
}
|
|
1426
1491
|
/**
|
|
1492
|
+
* @public
|
|
1427
1493
|
* <p>The resource is in use.</p>
|
|
1428
1494
|
*/
|
|
1429
1495
|
export declare class ResourceInUseException extends __BaseException {
|
|
@@ -1435,6 +1501,7 @@ export declare class ResourceInUseException extends __BaseException {
|
|
|
1435
1501
|
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
1436
1502
|
}
|
|
1437
1503
|
/**
|
|
1504
|
+
* @public
|
|
1438
1505
|
* <p>The service is currently unavailable.</p>
|
|
1439
1506
|
*/
|
|
1440
1507
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
@@ -1446,6 +1513,7 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
1446
1513
|
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
1447
1514
|
}
|
|
1448
1515
|
/**
|
|
1516
|
+
* @public
|
|
1449
1517
|
* <p>The request could not be completed due to throttling.</p>
|
|
1450
1518
|
*/
|
|
1451
1519
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -1457,6 +1525,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
1457
1525
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
1458
1526
|
}
|
|
1459
1527
|
/**
|
|
1528
|
+
* @public
|
|
1460
1529
|
* <p>Specifies the <code>actions</code> to be performed when the <code>condition</code>
|
|
1461
1530
|
* evaluates to TRUE.</p>
|
|
1462
1531
|
*/
|
|
@@ -1477,6 +1546,7 @@ export interface Event {
|
|
|
1477
1546
|
actions?: Action[];
|
|
1478
1547
|
}
|
|
1479
1548
|
/**
|
|
1549
|
+
* @public
|
|
1480
1550
|
* <p>When entering this state, perform these <code>actions</code> if the <code>condition</code>
|
|
1481
1551
|
* is TRUE.</p>
|
|
1482
1552
|
*/
|
|
@@ -1488,6 +1558,7 @@ export interface OnEnterLifecycle {
|
|
|
1488
1558
|
events?: Event[];
|
|
1489
1559
|
}
|
|
1490
1560
|
/**
|
|
1561
|
+
* @public
|
|
1491
1562
|
* <p>When exiting this state, perform these <code>actions</code> if the specified
|
|
1492
1563
|
* <code>condition</code> is <code>TRUE</code>.</p>
|
|
1493
1564
|
*/
|
|
@@ -1499,6 +1570,7 @@ export interface OnExitLifecycle {
|
|
|
1499
1570
|
events?: Event[];
|
|
1500
1571
|
}
|
|
1501
1572
|
/**
|
|
1573
|
+
* @public
|
|
1502
1574
|
* <p>Specifies the actions performed and the next state entered when a <code>condition</code>
|
|
1503
1575
|
* evaluates to TRUE.</p>
|
|
1504
1576
|
*/
|
|
@@ -1522,6 +1594,7 @@ export interface TransitionEvent {
|
|
|
1522
1594
|
nextState: string | undefined;
|
|
1523
1595
|
}
|
|
1524
1596
|
/**
|
|
1597
|
+
* @public
|
|
1525
1598
|
* <p>Specifies the actions performed when the <code>condition</code> evaluates to TRUE.</p>
|
|
1526
1599
|
*/
|
|
1527
1600
|
export interface OnInputLifecycle {
|
|
@@ -1536,6 +1609,7 @@ export interface OnInputLifecycle {
|
|
|
1536
1609
|
transitionEvents?: TransitionEvent[];
|
|
1537
1610
|
}
|
|
1538
1611
|
/**
|
|
1612
|
+
* @public
|
|
1539
1613
|
* <p>Information that defines a state of a detector.</p>
|
|
1540
1614
|
*/
|
|
1541
1615
|
export interface State {
|
|
@@ -1560,6 +1634,7 @@ export interface State {
|
|
|
1560
1634
|
onExit?: OnExitLifecycle;
|
|
1561
1635
|
}
|
|
1562
1636
|
/**
|
|
1637
|
+
* @public
|
|
1563
1638
|
* <p>Information that defines how a detector operates.</p>
|
|
1564
1639
|
*/
|
|
1565
1640
|
export interface DetectorModelDefinition {
|
|
@@ -1572,10 +1647,16 @@ export interface DetectorModelDefinition {
|
|
|
1572
1647
|
*/
|
|
1573
1648
|
initialStateName: string | undefined;
|
|
1574
1649
|
}
|
|
1650
|
+
/**
|
|
1651
|
+
* @public
|
|
1652
|
+
*/
|
|
1575
1653
|
export declare enum EvaluationMethod {
|
|
1576
1654
|
BATCH = "BATCH",
|
|
1577
1655
|
SERIAL = "SERIAL"
|
|
1578
1656
|
}
|
|
1657
|
+
/**
|
|
1658
|
+
* @public
|
|
1659
|
+
*/
|
|
1579
1660
|
export interface CreateDetectorModelRequest {
|
|
1580
1661
|
/**
|
|
1581
1662
|
* <p>The name of the detector model.</p>
|
|
@@ -1611,6 +1692,9 @@ export interface CreateDetectorModelRequest {
|
|
|
1611
1692
|
*/
|
|
1612
1693
|
evaluationMethod?: EvaluationMethod | string;
|
|
1613
1694
|
}
|
|
1695
|
+
/**
|
|
1696
|
+
* @public
|
|
1697
|
+
*/
|
|
1614
1698
|
export declare enum DetectorModelVersionStatus {
|
|
1615
1699
|
ACTIVATING = "ACTIVATING",
|
|
1616
1700
|
ACTIVE = "ACTIVE",
|
|
@@ -1621,6 +1705,7 @@ export declare enum DetectorModelVersionStatus {
|
|
|
1621
1705
|
PAUSED = "PAUSED"
|
|
1622
1706
|
}
|
|
1623
1707
|
/**
|
|
1708
|
+
* @public
|
|
1624
1709
|
* <p>Information about how the detector model is configured.</p>
|
|
1625
1710
|
*/
|
|
1626
1711
|
export interface DetectorModelConfiguration {
|
|
@@ -1672,6 +1757,9 @@ export interface DetectorModelConfiguration {
|
|
|
1672
1757
|
*/
|
|
1673
1758
|
evaluationMethod?: EvaluationMethod | string;
|
|
1674
1759
|
}
|
|
1760
|
+
/**
|
|
1761
|
+
* @public
|
|
1762
|
+
*/
|
|
1675
1763
|
export interface CreateDetectorModelResponse {
|
|
1676
1764
|
/**
|
|
1677
1765
|
* <p>Information about how the detector model is configured.</p>
|
|
@@ -1679,6 +1767,7 @@ export interface CreateDetectorModelResponse {
|
|
|
1679
1767
|
detectorModelConfiguration?: DetectorModelConfiguration;
|
|
1680
1768
|
}
|
|
1681
1769
|
/**
|
|
1770
|
+
* @public
|
|
1682
1771
|
* <p>The definition of the input.</p>
|
|
1683
1772
|
*/
|
|
1684
1773
|
export interface InputDefinition {
|
|
@@ -1691,6 +1780,9 @@ export interface InputDefinition {
|
|
|
1691
1780
|
*/
|
|
1692
1781
|
attributes: Attribute[] | undefined;
|
|
1693
1782
|
}
|
|
1783
|
+
/**
|
|
1784
|
+
* @public
|
|
1785
|
+
*/
|
|
1694
1786
|
export interface CreateInputRequest {
|
|
1695
1787
|
/**
|
|
1696
1788
|
* <p>The name you want to give to the input.</p>
|
|
@@ -1709,6 +1801,9 @@ export interface CreateInputRequest {
|
|
|
1709
1801
|
*/
|
|
1710
1802
|
tags?: Tag[];
|
|
1711
1803
|
}
|
|
1804
|
+
/**
|
|
1805
|
+
* @public
|
|
1806
|
+
*/
|
|
1712
1807
|
export declare enum InputStatus {
|
|
1713
1808
|
ACTIVE = "ACTIVE",
|
|
1714
1809
|
CREATING = "CREATING",
|
|
@@ -1716,6 +1811,7 @@ export declare enum InputStatus {
|
|
|
1716
1811
|
UPDATING = "UPDATING"
|
|
1717
1812
|
}
|
|
1718
1813
|
/**
|
|
1814
|
+
* @public
|
|
1719
1815
|
* <p>Information about the configuration of an input.</p>
|
|
1720
1816
|
*/
|
|
1721
1817
|
export interface InputConfiguration {
|
|
@@ -1744,21 +1840,31 @@ export interface InputConfiguration {
|
|
|
1744
1840
|
*/
|
|
1745
1841
|
status: InputStatus | string | undefined;
|
|
1746
1842
|
}
|
|
1843
|
+
/**
|
|
1844
|
+
* @public
|
|
1845
|
+
*/
|
|
1747
1846
|
export interface CreateInputResponse {
|
|
1748
1847
|
/**
|
|
1749
1848
|
* <p>Information about the configuration of the input.</p>
|
|
1750
1849
|
*/
|
|
1751
1850
|
inputConfiguration?: InputConfiguration;
|
|
1752
1851
|
}
|
|
1852
|
+
/**
|
|
1853
|
+
* @public
|
|
1854
|
+
*/
|
|
1753
1855
|
export interface DeleteAlarmModelRequest {
|
|
1754
1856
|
/**
|
|
1755
1857
|
* <p>The name of the alarm model.</p>
|
|
1756
1858
|
*/
|
|
1757
1859
|
alarmModelName: string | undefined;
|
|
1758
1860
|
}
|
|
1861
|
+
/**
|
|
1862
|
+
* @public
|
|
1863
|
+
*/
|
|
1759
1864
|
export interface DeleteAlarmModelResponse {
|
|
1760
1865
|
}
|
|
1761
1866
|
/**
|
|
1867
|
+
* @public
|
|
1762
1868
|
* <p>The resource was not found.</p>
|
|
1763
1869
|
*/
|
|
1764
1870
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -1769,22 +1875,37 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
1769
1875
|
*/
|
|
1770
1876
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
1771
1877
|
}
|
|
1878
|
+
/**
|
|
1879
|
+
* @public
|
|
1880
|
+
*/
|
|
1772
1881
|
export interface DeleteDetectorModelRequest {
|
|
1773
1882
|
/**
|
|
1774
1883
|
* <p>The name of the detector model to be deleted.</p>
|
|
1775
1884
|
*/
|
|
1776
1885
|
detectorModelName: string | undefined;
|
|
1777
1886
|
}
|
|
1887
|
+
/**
|
|
1888
|
+
* @public
|
|
1889
|
+
*/
|
|
1778
1890
|
export interface DeleteDetectorModelResponse {
|
|
1779
1891
|
}
|
|
1892
|
+
/**
|
|
1893
|
+
* @public
|
|
1894
|
+
*/
|
|
1780
1895
|
export interface DeleteInputRequest {
|
|
1781
1896
|
/**
|
|
1782
1897
|
* <p>The name of the input to delete.</p>
|
|
1783
1898
|
*/
|
|
1784
1899
|
inputName: string | undefined;
|
|
1785
1900
|
}
|
|
1901
|
+
/**
|
|
1902
|
+
* @public
|
|
1903
|
+
*/
|
|
1786
1904
|
export interface DeleteInputResponse {
|
|
1787
1905
|
}
|
|
1906
|
+
/**
|
|
1907
|
+
* @public
|
|
1908
|
+
*/
|
|
1788
1909
|
export interface DescribeAlarmModelRequest {
|
|
1789
1910
|
/**
|
|
1790
1911
|
* <p>The name of the alarm model.</p>
|
|
@@ -1795,6 +1916,9 @@ export interface DescribeAlarmModelRequest {
|
|
|
1795
1916
|
*/
|
|
1796
1917
|
alarmModelVersion?: string;
|
|
1797
1918
|
}
|
|
1919
|
+
/**
|
|
1920
|
+
* @public
|
|
1921
|
+
*/
|
|
1798
1922
|
export interface DescribeAlarmModelResponse {
|
|
1799
1923
|
/**
|
|
1800
1924
|
* <p>The time the alarm model was created, in the Unix epoch format.</p>
|
|
@@ -1882,6 +2006,9 @@ export interface DescribeAlarmModelResponse {
|
|
|
1882
2006
|
*/
|
|
1883
2007
|
alarmCapabilities?: AlarmCapabilities;
|
|
1884
2008
|
}
|
|
2009
|
+
/**
|
|
2010
|
+
* @public
|
|
2011
|
+
*/
|
|
1885
2012
|
export interface DescribeDetectorModelRequest {
|
|
1886
2013
|
/**
|
|
1887
2014
|
* <p>The name of the detector model.</p>
|
|
@@ -1893,6 +2020,7 @@ export interface DescribeDetectorModelRequest {
|
|
|
1893
2020
|
detectorModelVersion?: string;
|
|
1894
2021
|
}
|
|
1895
2022
|
/**
|
|
2023
|
+
* @public
|
|
1896
2024
|
* <p>Information about the detector model.</p>
|
|
1897
2025
|
*/
|
|
1898
2026
|
export interface DetectorModel {
|
|
@@ -1905,18 +2033,27 @@ export interface DetectorModel {
|
|
|
1905
2033
|
*/
|
|
1906
2034
|
detectorModelConfiguration?: DetectorModelConfiguration;
|
|
1907
2035
|
}
|
|
2036
|
+
/**
|
|
2037
|
+
* @public
|
|
2038
|
+
*/
|
|
1908
2039
|
export interface DescribeDetectorModelResponse {
|
|
1909
2040
|
/**
|
|
1910
2041
|
* <p>Information about the detector model.</p>
|
|
1911
2042
|
*/
|
|
1912
2043
|
detectorModel?: DetectorModel;
|
|
1913
2044
|
}
|
|
2045
|
+
/**
|
|
2046
|
+
* @public
|
|
2047
|
+
*/
|
|
1914
2048
|
export interface DescribeDetectorModelAnalysisRequest {
|
|
1915
2049
|
/**
|
|
1916
2050
|
* <p>The ID of the analysis result that you want to retrieve.</p>
|
|
1917
2051
|
*/
|
|
1918
2052
|
analysisId: string | undefined;
|
|
1919
2053
|
}
|
|
2054
|
+
/**
|
|
2055
|
+
* @public
|
|
2056
|
+
*/
|
|
1920
2057
|
export interface DescribeDetectorModelAnalysisResponse {
|
|
1921
2058
|
/**
|
|
1922
2059
|
* <p>The status of the analysis activity. The status can be one of the following values:</p>
|
|
@@ -1939,6 +2076,9 @@ export interface DescribeDetectorModelAnalysisResponse {
|
|
|
1939
2076
|
*/
|
|
1940
2077
|
status?: AnalysisStatus | string;
|
|
1941
2078
|
}
|
|
2079
|
+
/**
|
|
2080
|
+
* @public
|
|
2081
|
+
*/
|
|
1942
2082
|
export interface DescribeInputRequest {
|
|
1943
2083
|
/**
|
|
1944
2084
|
* <p>The name of the input.</p>
|
|
@@ -1946,6 +2086,7 @@ export interface DescribeInputRequest {
|
|
|
1946
2086
|
inputName: string | undefined;
|
|
1947
2087
|
}
|
|
1948
2088
|
/**
|
|
2089
|
+
* @public
|
|
1949
2090
|
* <p>Information about the input.</p>
|
|
1950
2091
|
*/
|
|
1951
2092
|
export interface Input {
|
|
@@ -1958,15 +2099,22 @@ export interface Input {
|
|
|
1958
2099
|
*/
|
|
1959
2100
|
inputDefinition?: InputDefinition;
|
|
1960
2101
|
}
|
|
2102
|
+
/**
|
|
2103
|
+
* @public
|
|
2104
|
+
*/
|
|
1961
2105
|
export interface DescribeInputResponse {
|
|
1962
2106
|
/**
|
|
1963
2107
|
* <p>Information about the input.</p>
|
|
1964
2108
|
*/
|
|
1965
2109
|
input?: Input;
|
|
1966
2110
|
}
|
|
2111
|
+
/**
|
|
2112
|
+
* @public
|
|
2113
|
+
*/
|
|
1967
2114
|
export interface DescribeLoggingOptionsRequest {
|
|
1968
2115
|
}
|
|
1969
2116
|
/**
|
|
2117
|
+
* @public
|
|
1970
2118
|
* <p>The detector model and the specific detectors (instances) for which the logging level is
|
|
1971
2119
|
* given.</p>
|
|
1972
2120
|
*/
|
|
@@ -1981,12 +2129,16 @@ export interface DetectorDebugOption {
|
|
|
1981
2129
|
*/
|
|
1982
2130
|
keyValue?: string;
|
|
1983
2131
|
}
|
|
2132
|
+
/**
|
|
2133
|
+
* @public
|
|
2134
|
+
*/
|
|
1984
2135
|
export declare enum LoggingLevel {
|
|
1985
2136
|
DEBUG = "DEBUG",
|
|
1986
2137
|
ERROR = "ERROR",
|
|
1987
2138
|
INFO = "INFO"
|
|
1988
2139
|
}
|
|
1989
2140
|
/**
|
|
2141
|
+
* @public
|
|
1990
2142
|
* <p>The values of the AWS IoT Events logging options.</p>
|
|
1991
2143
|
*/
|
|
1992
2144
|
export interface LoggingOptions {
|
|
@@ -2008,6 +2160,9 @@ export interface LoggingOptions {
|
|
|
2008
2160
|
*/
|
|
2009
2161
|
detectorDebugOptions?: DetectorDebugOption[];
|
|
2010
2162
|
}
|
|
2163
|
+
/**
|
|
2164
|
+
* @public
|
|
2165
|
+
*/
|
|
2011
2166
|
export interface DescribeLoggingOptionsResponse {
|
|
2012
2167
|
/**
|
|
2013
2168
|
* <p>The current settings of the AWS IoT Events logging options.</p>
|
|
@@ -2015,6 +2170,7 @@ export interface DescribeLoggingOptionsResponse {
|
|
|
2015
2170
|
loggingOptions?: LoggingOptions;
|
|
2016
2171
|
}
|
|
2017
2172
|
/**
|
|
2173
|
+
* @public
|
|
2018
2174
|
* <p>The requested operation is not supported.</p>
|
|
2019
2175
|
*/
|
|
2020
2176
|
export declare class UnsupportedOperationException extends __BaseException {
|
|
@@ -2026,6 +2182,7 @@ export declare class UnsupportedOperationException extends __BaseException {
|
|
|
2026
2182
|
constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
|
|
2027
2183
|
}
|
|
2028
2184
|
/**
|
|
2185
|
+
* @public
|
|
2029
2186
|
* <p>Information about the detector model.</p>
|
|
2030
2187
|
*/
|
|
2031
2188
|
export interface DetectorModelSummary {
|
|
@@ -2043,6 +2200,7 @@ export interface DetectorModelSummary {
|
|
|
2043
2200
|
creationTime?: Date;
|
|
2044
2201
|
}
|
|
2045
2202
|
/**
|
|
2203
|
+
* @public
|
|
2046
2204
|
* <p>Information about the detector model version.</p>
|
|
2047
2205
|
*/
|
|
2048
2206
|
export interface DetectorModelVersionSummary {
|
|
@@ -2080,6 +2238,9 @@ export interface DetectorModelVersionSummary {
|
|
|
2080
2238
|
*/
|
|
2081
2239
|
evaluationMethod?: EvaluationMethod | string;
|
|
2082
2240
|
}
|
|
2241
|
+
/**
|
|
2242
|
+
* @public
|
|
2243
|
+
*/
|
|
2083
2244
|
export interface GetDetectorModelAnalysisResultsRequest {
|
|
2084
2245
|
/**
|
|
2085
2246
|
* <p>The ID of the analysis result that you want to retrieve.</p>
|
|
@@ -2094,6 +2255,9 @@ export interface GetDetectorModelAnalysisResultsRequest {
|
|
|
2094
2255
|
*/
|
|
2095
2256
|
maxResults?: number;
|
|
2096
2257
|
}
|
|
2258
|
+
/**
|
|
2259
|
+
* @public
|
|
2260
|
+
*/
|
|
2097
2261
|
export interface GetDetectorModelAnalysisResultsResponse {
|
|
2098
2262
|
/**
|
|
2099
2263
|
* <p>Contains information about one or more analysis results.</p>
|
|
@@ -2106,6 +2270,7 @@ export interface GetDetectorModelAnalysisResultsResponse {
|
|
|
2106
2270
|
nextToken?: string;
|
|
2107
2271
|
}
|
|
2108
2272
|
/**
|
|
2273
|
+
* @public
|
|
2109
2274
|
* <p>
|
|
2110
2275
|
* The identifier of the input routed to AWS IoT Events.
|
|
2111
2276
|
* </p>
|
|
@@ -2119,6 +2284,7 @@ export interface IotEventsInputIdentifier {
|
|
|
2119
2284
|
inputName: string | undefined;
|
|
2120
2285
|
}
|
|
2121
2286
|
/**
|
|
2287
|
+
* @public
|
|
2122
2288
|
* <p>
|
|
2123
2289
|
* The asset model property identifer of the input routed from AWS IoT SiteWise.
|
|
2124
2290
|
* </p>
|
|
@@ -2138,6 +2304,7 @@ export interface IotSiteWiseAssetModelPropertyIdentifier {
|
|
|
2138
2304
|
propertyId: string | undefined;
|
|
2139
2305
|
}
|
|
2140
2306
|
/**
|
|
2307
|
+
* @public
|
|
2141
2308
|
* <p>
|
|
2142
2309
|
* The identifer of the input routed from AWS IoT SiteWise.
|
|
2143
2310
|
* </p>
|
|
@@ -2151,6 +2318,7 @@ export interface IotSiteWiseInputIdentifier {
|
|
|
2151
2318
|
iotSiteWiseAssetModelPropertyIdentifier?: IotSiteWiseAssetModelPropertyIdentifier;
|
|
2152
2319
|
}
|
|
2153
2320
|
/**
|
|
2321
|
+
* @public
|
|
2154
2322
|
* <p>
|
|
2155
2323
|
* The identifer of the input.
|
|
2156
2324
|
* </p>
|
|
@@ -2170,6 +2338,7 @@ export interface InputIdentifier {
|
|
|
2170
2338
|
iotSiteWiseInputIdentifier?: IotSiteWiseInputIdentifier;
|
|
2171
2339
|
}
|
|
2172
2340
|
/**
|
|
2341
|
+
* @public
|
|
2173
2342
|
* <p>Information about the input.</p>
|
|
2174
2343
|
*/
|
|
2175
2344
|
export interface InputSummary {
|
|
@@ -2198,6 +2367,9 @@ export interface InputSummary {
|
|
|
2198
2367
|
*/
|
|
2199
2368
|
status?: InputStatus | string;
|
|
2200
2369
|
}
|
|
2370
|
+
/**
|
|
2371
|
+
* @public
|
|
2372
|
+
*/
|
|
2201
2373
|
export interface ListAlarmModelsRequest {
|
|
2202
2374
|
/**
|
|
2203
2375
|
* <p>The token that you can use to return the next set of results.</p>
|
|
@@ -2208,6 +2380,9 @@ export interface ListAlarmModelsRequest {
|
|
|
2208
2380
|
*/
|
|
2209
2381
|
maxResults?: number;
|
|
2210
2382
|
}
|
|
2383
|
+
/**
|
|
2384
|
+
* @public
|
|
2385
|
+
*/
|
|
2211
2386
|
export interface ListAlarmModelsResponse {
|
|
2212
2387
|
/**
|
|
2213
2388
|
* <p>A list that summarizes each alarm model.</p>
|
|
@@ -2219,6 +2394,9 @@ export interface ListAlarmModelsResponse {
|
|
|
2219
2394
|
*/
|
|
2220
2395
|
nextToken?: string;
|
|
2221
2396
|
}
|
|
2397
|
+
/**
|
|
2398
|
+
* @public
|
|
2399
|
+
*/
|
|
2222
2400
|
export interface ListAlarmModelVersionsRequest {
|
|
2223
2401
|
/**
|
|
2224
2402
|
* <p>The name of the alarm model.</p>
|
|
@@ -2233,6 +2411,9 @@ export interface ListAlarmModelVersionsRequest {
|
|
|
2233
2411
|
*/
|
|
2234
2412
|
maxResults?: number;
|
|
2235
2413
|
}
|
|
2414
|
+
/**
|
|
2415
|
+
* @public
|
|
2416
|
+
*/
|
|
2236
2417
|
export interface ListAlarmModelVersionsResponse {
|
|
2237
2418
|
/**
|
|
2238
2419
|
* <p>A list that summarizes each alarm model version.</p>
|
|
@@ -2244,6 +2425,9 @@ export interface ListAlarmModelVersionsResponse {
|
|
|
2244
2425
|
*/
|
|
2245
2426
|
nextToken?: string;
|
|
2246
2427
|
}
|
|
2428
|
+
/**
|
|
2429
|
+
* @public
|
|
2430
|
+
*/
|
|
2247
2431
|
export interface ListDetectorModelsRequest {
|
|
2248
2432
|
/**
|
|
2249
2433
|
* <p>The token that you can use to return the next set of results.</p>
|
|
@@ -2254,6 +2438,9 @@ export interface ListDetectorModelsRequest {
|
|
|
2254
2438
|
*/
|
|
2255
2439
|
maxResults?: number;
|
|
2256
2440
|
}
|
|
2441
|
+
/**
|
|
2442
|
+
* @public
|
|
2443
|
+
*/
|
|
2257
2444
|
export interface ListDetectorModelsResponse {
|
|
2258
2445
|
/**
|
|
2259
2446
|
* <p>Summary information about the detector models.</p>
|
|
@@ -2265,6 +2452,9 @@ export interface ListDetectorModelsResponse {
|
|
|
2265
2452
|
*/
|
|
2266
2453
|
nextToken?: string;
|
|
2267
2454
|
}
|
|
2455
|
+
/**
|
|
2456
|
+
* @public
|
|
2457
|
+
*/
|
|
2268
2458
|
export interface ListDetectorModelVersionsRequest {
|
|
2269
2459
|
/**
|
|
2270
2460
|
* <p>The name of the detector model whose versions are returned.</p>
|
|
@@ -2279,6 +2469,9 @@ export interface ListDetectorModelVersionsRequest {
|
|
|
2279
2469
|
*/
|
|
2280
2470
|
maxResults?: number;
|
|
2281
2471
|
}
|
|
2472
|
+
/**
|
|
2473
|
+
* @public
|
|
2474
|
+
*/
|
|
2282
2475
|
export interface ListDetectorModelVersionsResponse {
|
|
2283
2476
|
/**
|
|
2284
2477
|
* <p>Summary information about the detector model versions.</p>
|
|
@@ -2290,6 +2483,9 @@ export interface ListDetectorModelVersionsResponse {
|
|
|
2290
2483
|
*/
|
|
2291
2484
|
nextToken?: string;
|
|
2292
2485
|
}
|
|
2486
|
+
/**
|
|
2487
|
+
* @public
|
|
2488
|
+
*/
|
|
2293
2489
|
export interface ListInputRoutingsRequest {
|
|
2294
2490
|
/**
|
|
2295
2491
|
* <p>
|
|
@@ -2311,6 +2507,7 @@ export interface ListInputRoutingsRequest {
|
|
|
2311
2507
|
nextToken?: string;
|
|
2312
2508
|
}
|
|
2313
2509
|
/**
|
|
2510
|
+
* @public
|
|
2314
2511
|
* <p>
|
|
2315
2512
|
* Contains information about the routed resource.
|
|
2316
2513
|
* </p>
|
|
@@ -2329,6 +2526,9 @@ export interface RoutedResource {
|
|
|
2329
2526
|
*/
|
|
2330
2527
|
arn?: string;
|
|
2331
2528
|
}
|
|
2529
|
+
/**
|
|
2530
|
+
* @public
|
|
2531
|
+
*/
|
|
2332
2532
|
export interface ListInputRoutingsResponse {
|
|
2333
2533
|
/**
|
|
2334
2534
|
* <p>
|
|
@@ -2344,6 +2544,9 @@ export interface ListInputRoutingsResponse {
|
|
|
2344
2544
|
*/
|
|
2345
2545
|
nextToken?: string;
|
|
2346
2546
|
}
|
|
2547
|
+
/**
|
|
2548
|
+
* @public
|
|
2549
|
+
*/
|
|
2347
2550
|
export interface ListInputsRequest {
|
|
2348
2551
|
/**
|
|
2349
2552
|
* <p>The token that you can use to return the next set of results.</p>
|
|
@@ -2354,6 +2557,9 @@ export interface ListInputsRequest {
|
|
|
2354
2557
|
*/
|
|
2355
2558
|
maxResults?: number;
|
|
2356
2559
|
}
|
|
2560
|
+
/**
|
|
2561
|
+
* @public
|
|
2562
|
+
*/
|
|
2357
2563
|
export interface ListInputsResponse {
|
|
2358
2564
|
/**
|
|
2359
2565
|
* <p>Summary information about the inputs.</p>
|
|
@@ -2365,36 +2571,54 @@ export interface ListInputsResponse {
|
|
|
2365
2571
|
*/
|
|
2366
2572
|
nextToken?: string;
|
|
2367
2573
|
}
|
|
2574
|
+
/**
|
|
2575
|
+
* @public
|
|
2576
|
+
*/
|
|
2368
2577
|
export interface ListTagsForResourceRequest {
|
|
2369
2578
|
/**
|
|
2370
2579
|
* <p>The ARN of the resource.</p>
|
|
2371
2580
|
*/
|
|
2372
2581
|
resourceArn: string | undefined;
|
|
2373
2582
|
}
|
|
2583
|
+
/**
|
|
2584
|
+
* @public
|
|
2585
|
+
*/
|
|
2374
2586
|
export interface ListTagsForResourceResponse {
|
|
2375
2587
|
/**
|
|
2376
2588
|
* <p>The list of tags assigned to the resource.</p>
|
|
2377
2589
|
*/
|
|
2378
2590
|
tags?: Tag[];
|
|
2379
2591
|
}
|
|
2592
|
+
/**
|
|
2593
|
+
* @public
|
|
2594
|
+
*/
|
|
2380
2595
|
export interface PutLoggingOptionsRequest {
|
|
2381
2596
|
/**
|
|
2382
2597
|
* <p>The new values of the AWS IoT Events logging options.</p>
|
|
2383
2598
|
*/
|
|
2384
2599
|
loggingOptions: LoggingOptions | undefined;
|
|
2385
2600
|
}
|
|
2601
|
+
/**
|
|
2602
|
+
* @public
|
|
2603
|
+
*/
|
|
2386
2604
|
export interface StartDetectorModelAnalysisRequest {
|
|
2387
2605
|
/**
|
|
2388
2606
|
* <p>Information that defines how a detector operates.</p>
|
|
2389
2607
|
*/
|
|
2390
2608
|
detectorModelDefinition: DetectorModelDefinition | undefined;
|
|
2391
2609
|
}
|
|
2610
|
+
/**
|
|
2611
|
+
* @public
|
|
2612
|
+
*/
|
|
2392
2613
|
export interface StartDetectorModelAnalysisResponse {
|
|
2393
2614
|
/**
|
|
2394
2615
|
* <p>The ID that you can use to retrieve the analysis result.</p>
|
|
2395
2616
|
*/
|
|
2396
2617
|
analysisId?: string;
|
|
2397
2618
|
}
|
|
2619
|
+
/**
|
|
2620
|
+
* @public
|
|
2621
|
+
*/
|
|
2398
2622
|
export interface TagResourceRequest {
|
|
2399
2623
|
/**
|
|
2400
2624
|
* <p>The ARN of the resource.</p>
|
|
@@ -2405,8 +2629,14 @@ export interface TagResourceRequest {
|
|
|
2405
2629
|
*/
|
|
2406
2630
|
tags: Tag[] | undefined;
|
|
2407
2631
|
}
|
|
2632
|
+
/**
|
|
2633
|
+
* @public
|
|
2634
|
+
*/
|
|
2408
2635
|
export interface TagResourceResponse {
|
|
2409
2636
|
}
|
|
2637
|
+
/**
|
|
2638
|
+
* @public
|
|
2639
|
+
*/
|
|
2410
2640
|
export interface UntagResourceRequest {
|
|
2411
2641
|
/**
|
|
2412
2642
|
* <p>The ARN of the resource.</p>
|
|
@@ -2417,8 +2647,14 @@ export interface UntagResourceRequest {
|
|
|
2417
2647
|
*/
|
|
2418
2648
|
tagKeys: string[] | undefined;
|
|
2419
2649
|
}
|
|
2650
|
+
/**
|
|
2651
|
+
* @public
|
|
2652
|
+
*/
|
|
2420
2653
|
export interface UntagResourceResponse {
|
|
2421
2654
|
}
|
|
2655
|
+
/**
|
|
2656
|
+
* @public
|
|
2657
|
+
*/
|
|
2422
2658
|
export interface UpdateAlarmModelRequest {
|
|
2423
2659
|
/**
|
|
2424
2660
|
* <p>The name of the alarm model.</p>
|
|
@@ -2453,6 +2689,9 @@ export interface UpdateAlarmModelRequest {
|
|
|
2453
2689
|
*/
|
|
2454
2690
|
alarmCapabilities?: AlarmCapabilities;
|
|
2455
2691
|
}
|
|
2692
|
+
/**
|
|
2693
|
+
* @public
|
|
2694
|
+
*/
|
|
2456
2695
|
export interface UpdateAlarmModelResponse {
|
|
2457
2696
|
/**
|
|
2458
2697
|
* <p>The time the alarm model was created, in the Unix epoch format.</p>
|
|
@@ -2496,6 +2735,9 @@ export interface UpdateAlarmModelResponse {
|
|
|
2496
2735
|
*/
|
|
2497
2736
|
status?: AlarmModelVersionStatus | string;
|
|
2498
2737
|
}
|
|
2738
|
+
/**
|
|
2739
|
+
* @public
|
|
2740
|
+
*/
|
|
2499
2741
|
export interface UpdateDetectorModelRequest {
|
|
2500
2742
|
/**
|
|
2501
2743
|
* <p>The name of the detector model that is updated.</p>
|
|
@@ -2519,12 +2761,18 @@ export interface UpdateDetectorModelRequest {
|
|
|
2519
2761
|
*/
|
|
2520
2762
|
evaluationMethod?: EvaluationMethod | string;
|
|
2521
2763
|
}
|
|
2764
|
+
/**
|
|
2765
|
+
* @public
|
|
2766
|
+
*/
|
|
2522
2767
|
export interface UpdateDetectorModelResponse {
|
|
2523
2768
|
/**
|
|
2524
2769
|
* <p>Information about how the detector model is configured.</p>
|
|
2525
2770
|
*/
|
|
2526
2771
|
detectorModelConfiguration?: DetectorModelConfiguration;
|
|
2527
2772
|
}
|
|
2773
|
+
/**
|
|
2774
|
+
* @public
|
|
2775
|
+
*/
|
|
2528
2776
|
export interface UpdateInputRequest {
|
|
2529
2777
|
/**
|
|
2530
2778
|
* <p>The name of the input you want to update.</p>
|
|
@@ -2539,6 +2787,9 @@ export interface UpdateInputRequest {
|
|
|
2539
2787
|
*/
|
|
2540
2788
|
inputDefinition: InputDefinition | undefined;
|
|
2541
2789
|
}
|
|
2790
|
+
/**
|
|
2791
|
+
* @public
|
|
2792
|
+
*/
|
|
2542
2793
|
export interface UpdateInputResponse {
|
|
2543
2794
|
/**
|
|
2544
2795
|
* <p>Information about the configuration of the input.</p>
|