@aws-sdk/client-iot-events-data 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/IoTEventsData.d.ts +13 -0
- package/dist-types/IoTEventsDataClient.d.ts +24 -4
- package/dist-types/commands/BatchAcknowledgeAlarmCommand.d.ts +16 -0
- package/dist-types/commands/BatchDeleteDetectorCommand.d.ts +16 -0
- package/dist-types/commands/BatchDisableAlarmCommand.d.ts +16 -0
- package/dist-types/commands/BatchEnableAlarmCommand.d.ts +16 -0
- package/dist-types/commands/BatchPutMessageCommand.d.ts +16 -0
- package/dist-types/commands/BatchResetAlarmCommand.d.ts +16 -0
- package/dist-types/commands/BatchSnoozeAlarmCommand.d.ts +16 -0
- package/dist-types/commands/BatchUpdateDetectorCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAlarmCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDetectorCommand.d.ts +16 -0
- package/dist-types/commands/ListAlarmsCommand.d.ts +16 -0
- package/dist-types/commands/ListDetectorsCommand.d.ts +16 -0
- package/dist-types/models/IoTEventsDataServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +132 -2
- package/package.json +3 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { IoTEventsDataServiceException as __BaseException } from "./IoTEventsDataServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>Contains the configuration information of an acknowledge action.</p>
|
|
5
6
|
*/
|
|
6
7
|
export interface AcknowledgeActionConfiguration {
|
|
@@ -10,6 +11,7 @@ export interface AcknowledgeActionConfiguration {
|
|
|
10
11
|
note?: string;
|
|
11
12
|
}
|
|
12
13
|
/**
|
|
14
|
+
* @public
|
|
13
15
|
* <p>Information needed to acknowledge the alarm.</p>
|
|
14
16
|
*/
|
|
15
17
|
export interface AcknowledgeAlarmActionRequest {
|
|
@@ -31,6 +33,9 @@ export interface AcknowledgeAlarmActionRequest {
|
|
|
31
33
|
*/
|
|
32
34
|
note?: string;
|
|
33
35
|
}
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
34
39
|
export declare enum CustomerActionName {
|
|
35
40
|
ACKNOWLEDGE = "ACKNOWLEDGE",
|
|
36
41
|
DISABLE = "DISABLE",
|
|
@@ -39,6 +44,7 @@ export declare enum CustomerActionName {
|
|
|
39
44
|
SNOOZE = "SNOOZE"
|
|
40
45
|
}
|
|
41
46
|
/**
|
|
47
|
+
* @public
|
|
42
48
|
* <p>Contains the configuration information of a disable action.</p>
|
|
43
49
|
*/
|
|
44
50
|
export interface DisableActionConfiguration {
|
|
@@ -48,6 +54,7 @@ export interface DisableActionConfiguration {
|
|
|
48
54
|
note?: string;
|
|
49
55
|
}
|
|
50
56
|
/**
|
|
57
|
+
* @public
|
|
51
58
|
* <p>Contains the configuration information of an enable action.</p>
|
|
52
59
|
*/
|
|
53
60
|
export interface EnableActionConfiguration {
|
|
@@ -57,6 +64,7 @@ export interface EnableActionConfiguration {
|
|
|
57
64
|
note?: string;
|
|
58
65
|
}
|
|
59
66
|
/**
|
|
67
|
+
* @public
|
|
60
68
|
* <p>Contains the configuration information of a reset action.</p>
|
|
61
69
|
*/
|
|
62
70
|
export interface ResetActionConfiguration {
|
|
@@ -66,6 +74,7 @@ export interface ResetActionConfiguration {
|
|
|
66
74
|
note?: string;
|
|
67
75
|
}
|
|
68
76
|
/**
|
|
77
|
+
* @public
|
|
69
78
|
* <p>Contains the configuration information of a snooze action.</p>
|
|
70
79
|
*/
|
|
71
80
|
export interface SnoozeActionConfiguration {
|
|
@@ -79,6 +88,7 @@ export interface SnoozeActionConfiguration {
|
|
|
79
88
|
note?: string;
|
|
80
89
|
}
|
|
81
90
|
/**
|
|
91
|
+
* @public
|
|
82
92
|
* <p>Contains information about the action that you can take to respond to the alarm.</p>
|
|
83
93
|
*/
|
|
84
94
|
export interface CustomerAction {
|
|
@@ -130,6 +140,9 @@ export interface CustomerAction {
|
|
|
130
140
|
*/
|
|
131
141
|
resetActionConfiguration?: ResetActionConfiguration;
|
|
132
142
|
}
|
|
143
|
+
/**
|
|
144
|
+
* @public
|
|
145
|
+
*/
|
|
133
146
|
export declare enum ComparisonOperator {
|
|
134
147
|
EQUAL = "EQUAL",
|
|
135
148
|
GREATER = "GREATER",
|
|
@@ -139,6 +152,7 @@ export declare enum ComparisonOperator {
|
|
|
139
152
|
NOT_EQUAL = "NOT_EQUAL"
|
|
140
153
|
}
|
|
141
154
|
/**
|
|
155
|
+
* @public
|
|
142
156
|
* <p>Information needed to compare two values with a comparison operator.</p>
|
|
143
157
|
*/
|
|
144
158
|
export interface SimpleRuleEvaluation {
|
|
@@ -156,6 +170,7 @@ export interface SimpleRuleEvaluation {
|
|
|
156
170
|
thresholdValue?: string;
|
|
157
171
|
}
|
|
158
172
|
/**
|
|
173
|
+
* @public
|
|
159
174
|
* <p>Information needed to evaluate data.</p>
|
|
160
175
|
*/
|
|
161
176
|
export interface RuleEvaluation {
|
|
@@ -164,6 +179,9 @@ export interface RuleEvaluation {
|
|
|
164
179
|
*/
|
|
165
180
|
simpleRuleEvaluation?: SimpleRuleEvaluation;
|
|
166
181
|
}
|
|
182
|
+
/**
|
|
183
|
+
* @public
|
|
184
|
+
*/
|
|
167
185
|
export declare enum AlarmStateName {
|
|
168
186
|
ACKNOWLEDGED = "ACKNOWLEDGED",
|
|
169
187
|
ACTIVE = "ACTIVE",
|
|
@@ -172,13 +190,20 @@ export declare enum AlarmStateName {
|
|
|
172
190
|
NORMAL = "NORMAL",
|
|
173
191
|
SNOOZE_DISABLED = "SNOOZE_DISABLED"
|
|
174
192
|
}
|
|
193
|
+
/**
|
|
194
|
+
* @public
|
|
195
|
+
*/
|
|
175
196
|
export declare enum EventType {
|
|
176
197
|
STATE_CHANGE = "STATE_CHANGE"
|
|
177
198
|
}
|
|
199
|
+
/**
|
|
200
|
+
* @public
|
|
201
|
+
*/
|
|
178
202
|
export declare enum TriggerType {
|
|
179
203
|
SNOOZE_TIMEOUT = "SNOOZE_TIMEOUT"
|
|
180
204
|
}
|
|
181
205
|
/**
|
|
206
|
+
* @public
|
|
182
207
|
* <p>Contains the configuration information of alarm state changes.</p>
|
|
183
208
|
*/
|
|
184
209
|
export interface StateChangeConfiguration {
|
|
@@ -189,6 +214,7 @@ export interface StateChangeConfiguration {
|
|
|
189
214
|
triggerType?: TriggerType | string;
|
|
190
215
|
}
|
|
191
216
|
/**
|
|
217
|
+
* @public
|
|
192
218
|
* <p>Contains information about alarm state changes.</p>
|
|
193
219
|
*/
|
|
194
220
|
export interface SystemEvent {
|
|
@@ -203,6 +229,7 @@ export interface SystemEvent {
|
|
|
203
229
|
stateChangeConfiguration?: StateChangeConfiguration;
|
|
204
230
|
}
|
|
205
231
|
/**
|
|
232
|
+
* @public
|
|
206
233
|
* <p>Contains information about the current state of the alarm.</p>
|
|
207
234
|
*/
|
|
208
235
|
export interface AlarmState {
|
|
@@ -259,6 +286,7 @@ export interface AlarmState {
|
|
|
259
286
|
systemEvent?: SystemEvent;
|
|
260
287
|
}
|
|
261
288
|
/**
|
|
289
|
+
* @public
|
|
262
290
|
* <p>Contains information about an alarm.</p>
|
|
263
291
|
*/
|
|
264
292
|
export interface Alarm {
|
|
@@ -293,6 +321,7 @@ export interface Alarm {
|
|
|
293
321
|
lastUpdateTime?: Date;
|
|
294
322
|
}
|
|
295
323
|
/**
|
|
324
|
+
* @public
|
|
296
325
|
* <p>Contains a summary of an alarm.</p>
|
|
297
326
|
*/
|
|
298
327
|
export interface AlarmSummary {
|
|
@@ -357,12 +386,18 @@ export interface AlarmSummary {
|
|
|
357
386
|
*/
|
|
358
387
|
lastUpdateTime?: Date;
|
|
359
388
|
}
|
|
389
|
+
/**
|
|
390
|
+
* @public
|
|
391
|
+
*/
|
|
360
392
|
export interface BatchAcknowledgeAlarmRequest {
|
|
361
393
|
/**
|
|
362
394
|
* <p>The list of acknowledge action requests. You can specify up to 10 requests per operation.</p>
|
|
363
395
|
*/
|
|
364
396
|
acknowledgeActionRequests: AcknowledgeAlarmActionRequest[] | undefined;
|
|
365
397
|
}
|
|
398
|
+
/**
|
|
399
|
+
* @public
|
|
400
|
+
*/
|
|
366
401
|
export declare enum ErrorCode {
|
|
367
402
|
InternalFailureException = "InternalFailureException",
|
|
368
403
|
InvalidRequestException = "InvalidRequestException",
|
|
@@ -371,6 +406,7 @@ export declare enum ErrorCode {
|
|
|
371
406
|
ThrottlingException = "ThrottlingException"
|
|
372
407
|
}
|
|
373
408
|
/**
|
|
409
|
+
* @public
|
|
374
410
|
* <p>Contains error messages associated with one of the following requests:</p>
|
|
375
411
|
* <ul>
|
|
376
412
|
* <li>
|
|
@@ -414,6 +450,9 @@ export interface BatchAlarmActionErrorEntry {
|
|
|
414
450
|
*/
|
|
415
451
|
errorMessage?: string;
|
|
416
452
|
}
|
|
453
|
+
/**
|
|
454
|
+
* @public
|
|
455
|
+
*/
|
|
417
456
|
export interface BatchAcknowledgeAlarmResponse {
|
|
418
457
|
/**
|
|
419
458
|
* <p>A list of errors associated with the request, or <code>null</code> if there are no errors.
|
|
@@ -422,6 +461,7 @@ export interface BatchAcknowledgeAlarmResponse {
|
|
|
422
461
|
errorEntries?: BatchAlarmActionErrorEntry[];
|
|
423
462
|
}
|
|
424
463
|
/**
|
|
464
|
+
* @public
|
|
425
465
|
* <p>An internal failure occurred.</p>
|
|
426
466
|
*/
|
|
427
467
|
export declare class InternalFailureException extends __BaseException {
|
|
@@ -433,6 +473,7 @@ export declare class InternalFailureException extends __BaseException {
|
|
|
433
473
|
constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
|
|
434
474
|
}
|
|
435
475
|
/**
|
|
476
|
+
* @public
|
|
436
477
|
* <p>The request was invalid.</p>
|
|
437
478
|
*/
|
|
438
479
|
export declare class InvalidRequestException extends __BaseException {
|
|
@@ -444,6 +485,7 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
444
485
|
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
445
486
|
}
|
|
446
487
|
/**
|
|
488
|
+
* @public
|
|
447
489
|
* <p>The service is currently unavailable.</p>
|
|
448
490
|
*/
|
|
449
491
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
@@ -455,6 +497,7 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
455
497
|
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
456
498
|
}
|
|
457
499
|
/**
|
|
500
|
+
* @public
|
|
458
501
|
* <p>The request could not be completed due to throttling.</p>
|
|
459
502
|
*/
|
|
460
503
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -466,6 +509,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
466
509
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
467
510
|
}
|
|
468
511
|
/**
|
|
512
|
+
* @public
|
|
469
513
|
* <p>Information used to delete the detector model.</p>
|
|
470
514
|
*/
|
|
471
515
|
export interface DeleteDetectorRequest {
|
|
@@ -482,6 +526,9 @@ export interface DeleteDetectorRequest {
|
|
|
482
526
|
*/
|
|
483
527
|
keyValue?: string;
|
|
484
528
|
}
|
|
529
|
+
/**
|
|
530
|
+
* @public
|
|
531
|
+
*/
|
|
485
532
|
export interface BatchDeleteDetectorRequest {
|
|
486
533
|
/**
|
|
487
534
|
* <p>The list of one or more detectors to be deleted.</p>
|
|
@@ -489,6 +536,7 @@ export interface BatchDeleteDetectorRequest {
|
|
|
489
536
|
detectors: DeleteDetectorRequest[] | undefined;
|
|
490
537
|
}
|
|
491
538
|
/**
|
|
539
|
+
* @public
|
|
492
540
|
* <p>Contains error messages associated with the deletion request.</p>
|
|
493
541
|
*/
|
|
494
542
|
export interface BatchDeleteDetectorErrorEntry {
|
|
@@ -505,6 +553,9 @@ export interface BatchDeleteDetectorErrorEntry {
|
|
|
505
553
|
*/
|
|
506
554
|
errorMessage?: string;
|
|
507
555
|
}
|
|
556
|
+
/**
|
|
557
|
+
* @public
|
|
558
|
+
*/
|
|
508
559
|
export interface BatchDeleteDetectorResponse {
|
|
509
560
|
/**
|
|
510
561
|
* <p>A list of errors associated with the request, or an empty array (<code>[]</code>) if there are no errors. Each error entry contains a <code>messageId</code> that helps you identify the entry that failed.</p>
|
|
@@ -512,6 +563,7 @@ export interface BatchDeleteDetectorResponse {
|
|
|
512
563
|
batchDeleteDetectorErrorEntries?: BatchDeleteDetectorErrorEntry[];
|
|
513
564
|
}
|
|
514
565
|
/**
|
|
566
|
+
* @public
|
|
515
567
|
* <p>Information used to disable the alarm.</p>
|
|
516
568
|
*/
|
|
517
569
|
export interface DisableAlarmActionRequest {
|
|
@@ -533,12 +585,18 @@ export interface DisableAlarmActionRequest {
|
|
|
533
585
|
*/
|
|
534
586
|
note?: string;
|
|
535
587
|
}
|
|
588
|
+
/**
|
|
589
|
+
* @public
|
|
590
|
+
*/
|
|
536
591
|
export interface BatchDisableAlarmRequest {
|
|
537
592
|
/**
|
|
538
593
|
* <p>The list of disable action requests. You can specify up to 10 requests per operation.</p>
|
|
539
594
|
*/
|
|
540
595
|
disableActionRequests: DisableAlarmActionRequest[] | undefined;
|
|
541
596
|
}
|
|
597
|
+
/**
|
|
598
|
+
* @public
|
|
599
|
+
*/
|
|
542
600
|
export interface BatchDisableAlarmResponse {
|
|
543
601
|
/**
|
|
544
602
|
* <p>A list of errors associated with the request, or <code>null</code> if there are no errors.
|
|
@@ -547,6 +605,7 @@ export interface BatchDisableAlarmResponse {
|
|
|
547
605
|
errorEntries?: BatchAlarmActionErrorEntry[];
|
|
548
606
|
}
|
|
549
607
|
/**
|
|
608
|
+
* @public
|
|
550
609
|
* <p>Information needed to enable the alarm.</p>
|
|
551
610
|
*/
|
|
552
611
|
export interface EnableAlarmActionRequest {
|
|
@@ -568,12 +627,18 @@ export interface EnableAlarmActionRequest {
|
|
|
568
627
|
*/
|
|
569
628
|
note?: string;
|
|
570
629
|
}
|
|
630
|
+
/**
|
|
631
|
+
* @public
|
|
632
|
+
*/
|
|
571
633
|
export interface BatchEnableAlarmRequest {
|
|
572
634
|
/**
|
|
573
635
|
* <p>The list of enable action requests. You can specify up to 10 requests per operation.</p>
|
|
574
636
|
*/
|
|
575
637
|
enableActionRequests: EnableAlarmActionRequest[] | undefined;
|
|
576
638
|
}
|
|
639
|
+
/**
|
|
640
|
+
* @public
|
|
641
|
+
*/
|
|
577
642
|
export interface BatchEnableAlarmResponse {
|
|
578
643
|
/**
|
|
579
644
|
* <p>A list of errors associated with the request, or <code>null</code> if there are no errors.
|
|
@@ -582,6 +647,7 @@ export interface BatchEnableAlarmResponse {
|
|
|
582
647
|
errorEntries?: BatchAlarmActionErrorEntry[];
|
|
583
648
|
}
|
|
584
649
|
/**
|
|
650
|
+
* @public
|
|
585
651
|
* <p>Contains information about a timestamp.</p>
|
|
586
652
|
*/
|
|
587
653
|
export interface TimestampValue {
|
|
@@ -591,6 +657,7 @@ export interface TimestampValue {
|
|
|
591
657
|
timeInMillis?: number;
|
|
592
658
|
}
|
|
593
659
|
/**
|
|
660
|
+
* @public
|
|
594
661
|
* <p>Information about a message.</p>
|
|
595
662
|
*/
|
|
596
663
|
export interface Message {
|
|
@@ -613,15 +680,19 @@ export interface Message {
|
|
|
613
680
|
*/
|
|
614
681
|
timestamp?: TimestampValue;
|
|
615
682
|
}
|
|
683
|
+
/**
|
|
684
|
+
* @public
|
|
685
|
+
*/
|
|
616
686
|
export interface BatchPutMessageRequest {
|
|
617
687
|
/**
|
|
618
|
-
* <p>The list of messages to send. Each message has the following format: <code>'{ "messageId":
|
|
619
|
-
* "string", "inputName": "string", "payload": "string"}'</code>
|
|
688
|
+
* <p>The list of messages to send. Each message has the following format: <code>'\{ "messageId":
|
|
689
|
+
* "string", "inputName": "string", "payload": "string"\}'</code>
|
|
620
690
|
* </p>
|
|
621
691
|
*/
|
|
622
692
|
messages: Message[] | undefined;
|
|
623
693
|
}
|
|
624
694
|
/**
|
|
695
|
+
* @public
|
|
625
696
|
* <p>Contains information about the errors encountered.</p>
|
|
626
697
|
*/
|
|
627
698
|
export interface BatchPutMessageErrorEntry {
|
|
@@ -639,6 +710,9 @@ export interface BatchPutMessageErrorEntry {
|
|
|
639
710
|
*/
|
|
640
711
|
errorMessage?: string;
|
|
641
712
|
}
|
|
713
|
+
/**
|
|
714
|
+
* @public
|
|
715
|
+
*/
|
|
642
716
|
export interface BatchPutMessageResponse {
|
|
643
717
|
/**
|
|
644
718
|
* <p>A list of any errors encountered when sending the messages.</p>
|
|
@@ -646,6 +720,7 @@ export interface BatchPutMessageResponse {
|
|
|
646
720
|
BatchPutMessageErrorEntries?: BatchPutMessageErrorEntry[];
|
|
647
721
|
}
|
|
648
722
|
/**
|
|
723
|
+
* @public
|
|
649
724
|
* <p>Information needed to reset the alarm.</p>
|
|
650
725
|
*/
|
|
651
726
|
export interface ResetAlarmActionRequest {
|
|
@@ -667,12 +742,18 @@ export interface ResetAlarmActionRequest {
|
|
|
667
742
|
*/
|
|
668
743
|
note?: string;
|
|
669
744
|
}
|
|
745
|
+
/**
|
|
746
|
+
* @public
|
|
747
|
+
*/
|
|
670
748
|
export interface BatchResetAlarmRequest {
|
|
671
749
|
/**
|
|
672
750
|
* <p>The list of reset action requests. You can specify up to 10 requests per operation.</p>
|
|
673
751
|
*/
|
|
674
752
|
resetActionRequests: ResetAlarmActionRequest[] | undefined;
|
|
675
753
|
}
|
|
754
|
+
/**
|
|
755
|
+
* @public
|
|
756
|
+
*/
|
|
676
757
|
export interface BatchResetAlarmResponse {
|
|
677
758
|
/**
|
|
678
759
|
* <p>A list of errors associated with the request, or <code>null</code> if there are no errors.
|
|
@@ -681,6 +762,7 @@ export interface BatchResetAlarmResponse {
|
|
|
681
762
|
errorEntries?: BatchAlarmActionErrorEntry[];
|
|
682
763
|
}
|
|
683
764
|
/**
|
|
765
|
+
* @public
|
|
684
766
|
* <p>Information needed to snooze the alarm.</p>
|
|
685
767
|
*/
|
|
686
768
|
export interface SnoozeAlarmActionRequest {
|
|
@@ -706,12 +788,18 @@ export interface SnoozeAlarmActionRequest {
|
|
|
706
788
|
*/
|
|
707
789
|
snoozeDuration: number | undefined;
|
|
708
790
|
}
|
|
791
|
+
/**
|
|
792
|
+
* @public
|
|
793
|
+
*/
|
|
709
794
|
export interface BatchSnoozeAlarmRequest {
|
|
710
795
|
/**
|
|
711
796
|
* <p>The list of snooze action requests. You can specify up to 10 requests per operation.</p>
|
|
712
797
|
*/
|
|
713
798
|
snoozeActionRequests: SnoozeAlarmActionRequest[] | undefined;
|
|
714
799
|
}
|
|
800
|
+
/**
|
|
801
|
+
* @public
|
|
802
|
+
*/
|
|
715
803
|
export interface BatchSnoozeAlarmResponse {
|
|
716
804
|
/**
|
|
717
805
|
* <p>A list of errors associated with the request, or <code>null</code> if there are no errors.
|
|
@@ -720,6 +808,7 @@ export interface BatchSnoozeAlarmResponse {
|
|
|
720
808
|
errorEntries?: BatchAlarmActionErrorEntry[];
|
|
721
809
|
}
|
|
722
810
|
/**
|
|
811
|
+
* @public
|
|
723
812
|
* <p>The new setting of a timer.</p>
|
|
724
813
|
*/
|
|
725
814
|
export interface TimerDefinition {
|
|
@@ -733,6 +822,7 @@ export interface TimerDefinition {
|
|
|
733
822
|
seconds: number | undefined;
|
|
734
823
|
}
|
|
735
824
|
/**
|
|
825
|
+
* @public
|
|
736
826
|
* <p>The new value of the variable.</p>
|
|
737
827
|
*/
|
|
738
828
|
export interface VariableDefinition {
|
|
@@ -746,6 +836,7 @@ export interface VariableDefinition {
|
|
|
746
836
|
value: string | undefined;
|
|
747
837
|
}
|
|
748
838
|
/**
|
|
839
|
+
* @public
|
|
749
840
|
* <p>The new state, variable values, and timer settings of the detector (instance).</p>
|
|
750
841
|
*/
|
|
751
842
|
export interface DetectorStateDefinition {
|
|
@@ -765,6 +856,7 @@ export interface DetectorStateDefinition {
|
|
|
765
856
|
timers: TimerDefinition[] | undefined;
|
|
766
857
|
}
|
|
767
858
|
/**
|
|
859
|
+
* @public
|
|
768
860
|
* <p>Information used to update the detector (instance).</p>
|
|
769
861
|
*/
|
|
770
862
|
export interface UpdateDetectorRequest {
|
|
@@ -787,6 +879,9 @@ export interface UpdateDetectorRequest {
|
|
|
787
879
|
*/
|
|
788
880
|
state: DetectorStateDefinition | undefined;
|
|
789
881
|
}
|
|
882
|
+
/**
|
|
883
|
+
* @public
|
|
884
|
+
*/
|
|
790
885
|
export interface BatchUpdateDetectorRequest {
|
|
791
886
|
/**
|
|
792
887
|
* <p>The list of detectors (instances) to update, along with the values to update.</p>
|
|
@@ -794,6 +889,7 @@ export interface BatchUpdateDetectorRequest {
|
|
|
794
889
|
detectors: UpdateDetectorRequest[] | undefined;
|
|
795
890
|
}
|
|
796
891
|
/**
|
|
892
|
+
* @public
|
|
797
893
|
* <p>Information about the error that occurred when attempting to update a detector.</p>
|
|
798
894
|
*/
|
|
799
895
|
export interface BatchUpdateDetectorErrorEntry {
|
|
@@ -811,6 +907,9 @@ export interface BatchUpdateDetectorErrorEntry {
|
|
|
811
907
|
*/
|
|
812
908
|
errorMessage?: string;
|
|
813
909
|
}
|
|
910
|
+
/**
|
|
911
|
+
* @public
|
|
912
|
+
*/
|
|
814
913
|
export interface BatchUpdateDetectorResponse {
|
|
815
914
|
/**
|
|
816
915
|
* <p>A list of those detector updates that resulted in errors. (If an error is listed here, the
|
|
@@ -818,6 +917,9 @@ export interface BatchUpdateDetectorResponse {
|
|
|
818
917
|
*/
|
|
819
918
|
batchUpdateDetectorErrorEntries?: BatchUpdateDetectorErrorEntry[];
|
|
820
919
|
}
|
|
920
|
+
/**
|
|
921
|
+
* @public
|
|
922
|
+
*/
|
|
821
923
|
export interface DescribeAlarmRequest {
|
|
822
924
|
/**
|
|
823
925
|
* <p>The name of the alarm model.</p>
|
|
@@ -829,6 +931,9 @@ export interface DescribeAlarmRequest {
|
|
|
829
931
|
*/
|
|
830
932
|
keyValue?: string;
|
|
831
933
|
}
|
|
934
|
+
/**
|
|
935
|
+
* @public
|
|
936
|
+
*/
|
|
832
937
|
export interface DescribeAlarmResponse {
|
|
833
938
|
/**
|
|
834
939
|
* <p>Contains information about an alarm.</p>
|
|
@@ -836,6 +941,7 @@ export interface DescribeAlarmResponse {
|
|
|
836
941
|
alarm?: Alarm;
|
|
837
942
|
}
|
|
838
943
|
/**
|
|
944
|
+
* @public
|
|
839
945
|
* <p>The resource was not found.</p>
|
|
840
946
|
*/
|
|
841
947
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -846,6 +952,9 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
846
952
|
*/
|
|
847
953
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
848
954
|
}
|
|
955
|
+
/**
|
|
956
|
+
* @public
|
|
957
|
+
*/
|
|
849
958
|
export interface DescribeDetectorRequest {
|
|
850
959
|
/**
|
|
851
960
|
* <p>The name of the detector model whose detectors (instances) you want information
|
|
@@ -859,6 +968,7 @@ export interface DescribeDetectorRequest {
|
|
|
859
968
|
keyValue?: string;
|
|
860
969
|
}
|
|
861
970
|
/**
|
|
971
|
+
* @public
|
|
862
972
|
* <p>The current state of a timer.</p>
|
|
863
973
|
*/
|
|
864
974
|
export interface Timer {
|
|
@@ -872,6 +982,7 @@ export interface Timer {
|
|
|
872
982
|
timestamp: Date | undefined;
|
|
873
983
|
}
|
|
874
984
|
/**
|
|
985
|
+
* @public
|
|
875
986
|
* <p>The current state of the variable.</p>
|
|
876
987
|
*/
|
|
877
988
|
export interface Variable {
|
|
@@ -885,6 +996,7 @@ export interface Variable {
|
|
|
885
996
|
value: string | undefined;
|
|
886
997
|
}
|
|
887
998
|
/**
|
|
999
|
+
* @public
|
|
888
1000
|
* <p>Information about the current state of the detector instance.</p>
|
|
889
1001
|
*/
|
|
890
1002
|
export interface DetectorState {
|
|
@@ -902,6 +1014,7 @@ export interface DetectorState {
|
|
|
902
1014
|
timers: Timer[] | undefined;
|
|
903
1015
|
}
|
|
904
1016
|
/**
|
|
1017
|
+
* @public
|
|
905
1018
|
* <p>Information about the detector (instance).</p>
|
|
906
1019
|
*/
|
|
907
1020
|
export interface Detector {
|
|
@@ -931,6 +1044,9 @@ export interface Detector {
|
|
|
931
1044
|
*/
|
|
932
1045
|
lastUpdateTime?: Date;
|
|
933
1046
|
}
|
|
1047
|
+
/**
|
|
1048
|
+
* @public
|
|
1049
|
+
*/
|
|
934
1050
|
export interface DescribeDetectorResponse {
|
|
935
1051
|
/**
|
|
936
1052
|
* <p>Information about the detector (instance).</p>
|
|
@@ -938,6 +1054,7 @@ export interface DescribeDetectorResponse {
|
|
|
938
1054
|
detector?: Detector;
|
|
939
1055
|
}
|
|
940
1056
|
/**
|
|
1057
|
+
* @public
|
|
941
1058
|
* <p>Information about the detector state.</p>
|
|
942
1059
|
*/
|
|
943
1060
|
export interface DetectorStateSummary {
|
|
@@ -947,6 +1064,7 @@ export interface DetectorStateSummary {
|
|
|
947
1064
|
stateName?: string;
|
|
948
1065
|
}
|
|
949
1066
|
/**
|
|
1067
|
+
* @public
|
|
950
1068
|
* <p>Information about the detector (instance).</p>
|
|
951
1069
|
*/
|
|
952
1070
|
export interface DetectorSummary {
|
|
@@ -976,6 +1094,9 @@ export interface DetectorSummary {
|
|
|
976
1094
|
*/
|
|
977
1095
|
lastUpdateTime?: Date;
|
|
978
1096
|
}
|
|
1097
|
+
/**
|
|
1098
|
+
* @public
|
|
1099
|
+
*/
|
|
979
1100
|
export interface ListAlarmsRequest {
|
|
980
1101
|
/**
|
|
981
1102
|
* <p>The name of the alarm model.</p>
|
|
@@ -990,6 +1111,9 @@ export interface ListAlarmsRequest {
|
|
|
990
1111
|
*/
|
|
991
1112
|
maxResults?: number;
|
|
992
1113
|
}
|
|
1114
|
+
/**
|
|
1115
|
+
* @public
|
|
1116
|
+
*/
|
|
993
1117
|
export interface ListAlarmsResponse {
|
|
994
1118
|
/**
|
|
995
1119
|
* <p>A list that summarizes each alarm.</p>
|
|
@@ -1001,6 +1125,9 @@ export interface ListAlarmsResponse {
|
|
|
1001
1125
|
*/
|
|
1002
1126
|
nextToken?: string;
|
|
1003
1127
|
}
|
|
1128
|
+
/**
|
|
1129
|
+
* @public
|
|
1130
|
+
*/
|
|
1004
1131
|
export interface ListDetectorsRequest {
|
|
1005
1132
|
/**
|
|
1006
1133
|
* <p>The name of the detector model whose detectors (instances) are listed.</p>
|
|
@@ -1019,6 +1146,9 @@ export interface ListDetectorsRequest {
|
|
|
1019
1146
|
*/
|
|
1020
1147
|
maxResults?: number;
|
|
1021
1148
|
}
|
|
1149
|
+
/**
|
|
1150
|
+
* @public
|
|
1151
|
+
*/
|
|
1022
1152
|
export interface ListDetectorsResponse {
|
|
1023
1153
|
/**
|
|
1024
1154
|
* <p>A list of summary information about the detectors (instances).</p>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iot-events-data",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iot Events Data Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.297.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.296.0",
|