@aws-sdk/client-iot-events-data 3.378.0 → 3.382.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.
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
2
5
|
export interface ClientInputEndpointParameters {
|
|
3
6
|
region?: string | Provider<string>;
|
|
4
7
|
useDualstackEndpoint?: boolean | Provider<boolean>;
|
package/dist-types/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
*/
|
|
10
10
|
export * from "./IoTEventsDataClient";
|
|
11
11
|
export * from "./IoTEventsData";
|
|
12
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
12
13
|
export * from "./commands";
|
|
13
14
|
export * from "./models";
|
|
14
15
|
export { IoTEventsDataServiceException } from "./models/IoTEventsDataServiceException";
|
|
@@ -6,6 +6,7 @@ import { IoTEventsDataServiceException as __BaseException } from "./IoTEventsDat
|
|
|
6
6
|
*/
|
|
7
7
|
export interface AcknowledgeActionConfiguration {
|
|
8
8
|
/**
|
|
9
|
+
* @public
|
|
9
10
|
* <p>The note that you can leave when you acknowledge the alarm.</p>
|
|
10
11
|
*/
|
|
11
12
|
note?: string;
|
|
@@ -16,19 +17,23 @@ export interface AcknowledgeActionConfiguration {
|
|
|
16
17
|
*/
|
|
17
18
|
export interface AcknowledgeAlarmActionRequest {
|
|
18
19
|
/**
|
|
20
|
+
* @public
|
|
19
21
|
* <p>The request ID. Each ID must be unique within each batch.</p>
|
|
20
22
|
*/
|
|
21
23
|
requestId: string | undefined;
|
|
22
24
|
/**
|
|
25
|
+
* @public
|
|
23
26
|
* <p>The name of the alarm model.</p>
|
|
24
27
|
*/
|
|
25
28
|
alarmModelName: string | undefined;
|
|
26
29
|
/**
|
|
30
|
+
* @public
|
|
27
31
|
* <p>The value of the key used as a filter to select only the alarms associated with the
|
|
28
32
|
* <a href="https://docs.aws.amazon.com/iotevents/latest/apireference/API_CreateAlarmModel.html#iotevents-CreateAlarmModel-request-key">key</a>.</p>
|
|
29
33
|
*/
|
|
30
34
|
keyValue?: string;
|
|
31
35
|
/**
|
|
36
|
+
* @public
|
|
32
37
|
* <p>The note that you can leave when you acknowledge the alarm.</p>
|
|
33
38
|
*/
|
|
34
39
|
note?: string;
|
|
@@ -54,6 +59,7 @@ export type CustomerActionName = (typeof CustomerActionName)[keyof typeof Custom
|
|
|
54
59
|
*/
|
|
55
60
|
export interface DisableActionConfiguration {
|
|
56
61
|
/**
|
|
62
|
+
* @public
|
|
57
63
|
* <p>The note that you can leave when you disable the alarm.</p>
|
|
58
64
|
*/
|
|
59
65
|
note?: string;
|
|
@@ -64,6 +70,7 @@ export interface DisableActionConfiguration {
|
|
|
64
70
|
*/
|
|
65
71
|
export interface EnableActionConfiguration {
|
|
66
72
|
/**
|
|
73
|
+
* @public
|
|
67
74
|
* <p>The note that you can leave when you enable the alarm.</p>
|
|
68
75
|
*/
|
|
69
76
|
note?: string;
|
|
@@ -74,6 +81,7 @@ export interface EnableActionConfiguration {
|
|
|
74
81
|
*/
|
|
75
82
|
export interface ResetActionConfiguration {
|
|
76
83
|
/**
|
|
84
|
+
* @public
|
|
77
85
|
* <p>The note that you can leave when you reset the alarm.</p>
|
|
78
86
|
*/
|
|
79
87
|
note?: string;
|
|
@@ -84,10 +92,12 @@ export interface ResetActionConfiguration {
|
|
|
84
92
|
*/
|
|
85
93
|
export interface SnoozeActionConfiguration {
|
|
86
94
|
/**
|
|
95
|
+
* @public
|
|
87
96
|
* <p>The snooze time in seconds. The alarm automatically changes to the <code>NORMAL</code> state after this duration.</p>
|
|
88
97
|
*/
|
|
89
98
|
snoozeDuration?: number;
|
|
90
99
|
/**
|
|
100
|
+
* @public
|
|
91
101
|
* <p>The note that you can leave when you snooze the alarm.</p>
|
|
92
102
|
*/
|
|
93
103
|
note?: string;
|
|
@@ -98,6 +108,7 @@ export interface SnoozeActionConfiguration {
|
|
|
98
108
|
*/
|
|
99
109
|
export interface CustomerAction {
|
|
100
110
|
/**
|
|
111
|
+
* @public
|
|
101
112
|
* <p>The name of the action. The action name can be one of the following values:</p>
|
|
102
113
|
* <ul>
|
|
103
114
|
* <li>
|
|
@@ -125,22 +136,27 @@ export interface CustomerAction {
|
|
|
125
136
|
*/
|
|
126
137
|
actionName?: CustomerActionName | string;
|
|
127
138
|
/**
|
|
139
|
+
* @public
|
|
128
140
|
* <p>Contains the configuration information of a snooze action.</p>
|
|
129
141
|
*/
|
|
130
142
|
snoozeActionConfiguration?: SnoozeActionConfiguration;
|
|
131
143
|
/**
|
|
144
|
+
* @public
|
|
132
145
|
* <p>Contains the configuration information of an enable action.</p>
|
|
133
146
|
*/
|
|
134
147
|
enableActionConfiguration?: EnableActionConfiguration;
|
|
135
148
|
/**
|
|
149
|
+
* @public
|
|
136
150
|
* <p>Contains the configuration information of a disable action.</p>
|
|
137
151
|
*/
|
|
138
152
|
disableActionConfiguration?: DisableActionConfiguration;
|
|
139
153
|
/**
|
|
154
|
+
* @public
|
|
140
155
|
* <p>Contains the configuration information of an acknowledge action.</p>
|
|
141
156
|
*/
|
|
142
157
|
acknowledgeActionConfiguration?: AcknowledgeActionConfiguration;
|
|
143
158
|
/**
|
|
159
|
+
* @public
|
|
144
160
|
* <p>Contains the configuration information of a reset action.</p>
|
|
145
161
|
*/
|
|
146
162
|
resetActionConfiguration?: ResetActionConfiguration;
|
|
@@ -167,14 +183,17 @@ export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof Compar
|
|
|
167
183
|
*/
|
|
168
184
|
export interface SimpleRuleEvaluation {
|
|
169
185
|
/**
|
|
186
|
+
* @public
|
|
170
187
|
* <p>The value of the input property, on the left side of the comparison operator.</p>
|
|
171
188
|
*/
|
|
172
189
|
inputPropertyValue?: string;
|
|
173
190
|
/**
|
|
191
|
+
* @public
|
|
174
192
|
* <p>The comparison operator.</p>
|
|
175
193
|
*/
|
|
176
194
|
operator?: ComparisonOperator | string;
|
|
177
195
|
/**
|
|
196
|
+
* @public
|
|
178
197
|
* <p>The threshold value, on the right side of the comparison operator.</p>
|
|
179
198
|
*/
|
|
180
199
|
thresholdValue?: string;
|
|
@@ -185,6 +204,7 @@ export interface SimpleRuleEvaluation {
|
|
|
185
204
|
*/
|
|
186
205
|
export interface RuleEvaluation {
|
|
187
206
|
/**
|
|
207
|
+
* @public
|
|
188
208
|
* <p>Information needed to compare two values with a comparison operator.</p>
|
|
189
209
|
*/
|
|
190
210
|
simpleRuleEvaluation?: SimpleRuleEvaluation;
|
|
@@ -233,6 +253,7 @@ export type TriggerType = (typeof TriggerType)[keyof typeof TriggerType];
|
|
|
233
253
|
*/
|
|
234
254
|
export interface StateChangeConfiguration {
|
|
235
255
|
/**
|
|
256
|
+
* @public
|
|
236
257
|
* <p>The trigger type. If the value is <code>SNOOZE_TIMEOUT</code>, the snooze duration ends
|
|
237
258
|
* and the alarm automatically changes to the <code>NORMAL</code> state.</p>
|
|
238
259
|
*/
|
|
@@ -244,11 +265,13 @@ export interface StateChangeConfiguration {
|
|
|
244
265
|
*/
|
|
245
266
|
export interface SystemEvent {
|
|
246
267
|
/**
|
|
268
|
+
* @public
|
|
247
269
|
* <p>The event type. If the value is <code>STATE_CHANGE</code>, the event contains information
|
|
248
270
|
* about alarm state changes.</p>
|
|
249
271
|
*/
|
|
250
272
|
eventType?: EventType | string;
|
|
251
273
|
/**
|
|
274
|
+
* @public
|
|
252
275
|
* <p>Contains the configuration information of alarm state changes.</p>
|
|
253
276
|
*/
|
|
254
277
|
stateChangeConfiguration?: StateChangeConfiguration;
|
|
@@ -259,6 +282,7 @@ export interface SystemEvent {
|
|
|
259
282
|
*/
|
|
260
283
|
export interface AlarmState {
|
|
261
284
|
/**
|
|
285
|
+
* @public
|
|
262
286
|
* <p>The name of the alarm state. The state name can be one of the following values:</p>
|
|
263
287
|
* <ul>
|
|
264
288
|
* <li>
|
|
@@ -298,14 +322,17 @@ export interface AlarmState {
|
|
|
298
322
|
*/
|
|
299
323
|
stateName?: AlarmStateName | string;
|
|
300
324
|
/**
|
|
325
|
+
* @public
|
|
301
326
|
* <p>Information needed to evaluate data.</p>
|
|
302
327
|
*/
|
|
303
328
|
ruleEvaluation?: RuleEvaluation;
|
|
304
329
|
/**
|
|
330
|
+
* @public
|
|
305
331
|
* <p>Contains information about the action that you can take to respond to the alarm.</p>
|
|
306
332
|
*/
|
|
307
333
|
customerAction?: CustomerAction;
|
|
308
334
|
/**
|
|
335
|
+
* @public
|
|
309
336
|
* <p>Contains information about alarm state changes.</p>
|
|
310
337
|
*/
|
|
311
338
|
systemEvent?: SystemEvent;
|
|
@@ -316,31 +343,38 @@ export interface AlarmState {
|
|
|
316
343
|
*/
|
|
317
344
|
export interface Alarm {
|
|
318
345
|
/**
|
|
346
|
+
* @public
|
|
319
347
|
* <p>The name of the alarm model.</p>
|
|
320
348
|
*/
|
|
321
349
|
alarmModelName?: string;
|
|
322
350
|
/**
|
|
351
|
+
* @public
|
|
323
352
|
* <p>The version of the alarm model.</p>
|
|
324
353
|
*/
|
|
325
354
|
alarmModelVersion?: string;
|
|
326
355
|
/**
|
|
356
|
+
* @public
|
|
327
357
|
* <p>The value of the key used as a filter to select only the alarms associated with the
|
|
328
358
|
* <a href="https://docs.aws.amazon.com/iotevents/latest/apireference/API_CreateAlarmModel.html#iotevents-CreateAlarmModel-request-key">key</a>.</p>
|
|
329
359
|
*/
|
|
330
360
|
keyValue?: string;
|
|
331
361
|
/**
|
|
362
|
+
* @public
|
|
332
363
|
* <p>Contains information about the current state of the alarm.</p>
|
|
333
364
|
*/
|
|
334
365
|
alarmState?: AlarmState;
|
|
335
366
|
/**
|
|
367
|
+
* @public
|
|
336
368
|
* <p>A non-negative integer that reflects the severity level of the alarm.</p>
|
|
337
369
|
*/
|
|
338
370
|
severity?: number;
|
|
339
371
|
/**
|
|
372
|
+
* @public
|
|
340
373
|
* <p>The time the alarm was created, in the Unix epoch format.</p>
|
|
341
374
|
*/
|
|
342
375
|
creationTime?: Date;
|
|
343
376
|
/**
|
|
377
|
+
* @public
|
|
344
378
|
* <p>The time the alarm was last updated, in the Unix epoch format.</p>
|
|
345
379
|
*/
|
|
346
380
|
lastUpdateTime?: Date;
|
|
@@ -351,19 +385,23 @@ export interface Alarm {
|
|
|
351
385
|
*/
|
|
352
386
|
export interface AlarmSummary {
|
|
353
387
|
/**
|
|
388
|
+
* @public
|
|
354
389
|
* <p>The name of the alarm model.</p>
|
|
355
390
|
*/
|
|
356
391
|
alarmModelName?: string;
|
|
357
392
|
/**
|
|
393
|
+
* @public
|
|
358
394
|
* <p>The version of the alarm model.</p>
|
|
359
395
|
*/
|
|
360
396
|
alarmModelVersion?: string;
|
|
361
397
|
/**
|
|
398
|
+
* @public
|
|
362
399
|
* <p>The value of the key used as a filter to select only the alarms associated with the
|
|
363
400
|
* <a href="https://docs.aws.amazon.com/iotevents/latest/apireference/API_CreateAlarmModel.html#iotevents-CreateAlarmModel-request-key">key</a>.</p>
|
|
364
401
|
*/
|
|
365
402
|
keyValue?: string;
|
|
366
403
|
/**
|
|
404
|
+
* @public
|
|
367
405
|
* <p>The name of the alarm state. The state name can be one of the following values:</p>
|
|
368
406
|
* <ul>
|
|
369
407
|
* <li>
|
|
@@ -403,10 +441,12 @@ export interface AlarmSummary {
|
|
|
403
441
|
*/
|
|
404
442
|
stateName?: AlarmStateName | string;
|
|
405
443
|
/**
|
|
444
|
+
* @public
|
|
406
445
|
* <p>The time the alarm was created, in the Unix epoch format.</p>
|
|
407
446
|
*/
|
|
408
447
|
creationTime?: Date;
|
|
409
448
|
/**
|
|
449
|
+
* @public
|
|
410
450
|
* <p>The time the alarm was last updated, in the Unix epoch format.</p>
|
|
411
451
|
*/
|
|
412
452
|
lastUpdateTime?: Date;
|
|
@@ -416,6 +456,7 @@ export interface AlarmSummary {
|
|
|
416
456
|
*/
|
|
417
457
|
export interface BatchAcknowledgeAlarmRequest {
|
|
418
458
|
/**
|
|
459
|
+
* @public
|
|
419
460
|
* <p>The list of acknowledge action requests. You can specify up to 10 requests per operation.</p>
|
|
420
461
|
*/
|
|
421
462
|
acknowledgeActionRequests: AcknowledgeAlarmActionRequest[] | undefined;
|
|
@@ -468,14 +509,17 @@ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
|
468
509
|
*/
|
|
469
510
|
export interface BatchAlarmActionErrorEntry {
|
|
470
511
|
/**
|
|
512
|
+
* @public
|
|
471
513
|
* <p>The request ID. Each ID must be unique within each batch.</p>
|
|
472
514
|
*/
|
|
473
515
|
requestId?: string;
|
|
474
516
|
/**
|
|
517
|
+
* @public
|
|
475
518
|
* <p>The error code.</p>
|
|
476
519
|
*/
|
|
477
520
|
errorCode?: ErrorCode | string;
|
|
478
521
|
/**
|
|
522
|
+
* @public
|
|
479
523
|
* <p>A message that describes the error.</p>
|
|
480
524
|
*/
|
|
481
525
|
errorMessage?: string;
|
|
@@ -485,6 +529,7 @@ export interface BatchAlarmActionErrorEntry {
|
|
|
485
529
|
*/
|
|
486
530
|
export interface BatchAcknowledgeAlarmResponse {
|
|
487
531
|
/**
|
|
532
|
+
* @public
|
|
488
533
|
* <p>A list of errors associated with the request, or <code>null</code> if there are no errors.
|
|
489
534
|
* Each error entry contains an entry ID that helps you identify the entry that failed.</p>
|
|
490
535
|
*/
|
|
@@ -544,14 +589,17 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
544
589
|
*/
|
|
545
590
|
export interface DeleteDetectorRequest {
|
|
546
591
|
/**
|
|
592
|
+
* @public
|
|
547
593
|
* <p>The ID to assign to the <code>DeleteDetectorRequest</code>. Each <code>"messageId"</code> must be unique within each batch sent.</p>
|
|
548
594
|
*/
|
|
549
595
|
messageId: string | undefined;
|
|
550
596
|
/**
|
|
597
|
+
* @public
|
|
551
598
|
* <p>The name of the detector model that was used to create the detector instance.</p>
|
|
552
599
|
*/
|
|
553
600
|
detectorModelName: string | undefined;
|
|
554
601
|
/**
|
|
602
|
+
* @public
|
|
555
603
|
* <p>The value of the <a href="https://docs.aws.amazon.com/iotevents/latest/apireference/API_CreateDetectorModel.html#iotevents-CreateDetectorModel-request-key">key</a> used to identify the detector. </p>
|
|
556
604
|
*/
|
|
557
605
|
keyValue?: string;
|
|
@@ -561,6 +609,7 @@ export interface DeleteDetectorRequest {
|
|
|
561
609
|
*/
|
|
562
610
|
export interface BatchDeleteDetectorRequest {
|
|
563
611
|
/**
|
|
612
|
+
* @public
|
|
564
613
|
* <p>The list of one or more detectors to be deleted.</p>
|
|
565
614
|
*/
|
|
566
615
|
detectors: DeleteDetectorRequest[] | undefined;
|
|
@@ -571,14 +620,17 @@ export interface BatchDeleteDetectorRequest {
|
|
|
571
620
|
*/
|
|
572
621
|
export interface BatchDeleteDetectorErrorEntry {
|
|
573
622
|
/**
|
|
623
|
+
* @public
|
|
574
624
|
* <p>The ID of the message that caused the error. (See the value of the <code>"messageId"</code> in the <a href="https://docs.aws.amazon.com/iotevents/latest/apireference/API_iotevents-data_BatchDeleteDetector.html#iotevents-iotevents-data_BatchDeleteDetector-request-detectors">detectors</a> object of the <code>DeleteDetectorRequest</code>.)</p>
|
|
575
625
|
*/
|
|
576
626
|
messageId?: string;
|
|
577
627
|
/**
|
|
628
|
+
* @public
|
|
578
629
|
* <p>The error code.</p>
|
|
579
630
|
*/
|
|
580
631
|
errorCode?: ErrorCode | string;
|
|
581
632
|
/**
|
|
633
|
+
* @public
|
|
582
634
|
* <p>A message that describes the error.</p>
|
|
583
635
|
*/
|
|
584
636
|
errorMessage?: string;
|
|
@@ -588,6 +640,7 @@ export interface BatchDeleteDetectorErrorEntry {
|
|
|
588
640
|
*/
|
|
589
641
|
export interface BatchDeleteDetectorResponse {
|
|
590
642
|
/**
|
|
643
|
+
* @public
|
|
591
644
|
* <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>
|
|
592
645
|
*/
|
|
593
646
|
batchDeleteDetectorErrorEntries?: BatchDeleteDetectorErrorEntry[];
|
|
@@ -598,19 +651,23 @@ export interface BatchDeleteDetectorResponse {
|
|
|
598
651
|
*/
|
|
599
652
|
export interface DisableAlarmActionRequest {
|
|
600
653
|
/**
|
|
654
|
+
* @public
|
|
601
655
|
* <p>The request ID. Each ID must be unique within each batch.</p>
|
|
602
656
|
*/
|
|
603
657
|
requestId: string | undefined;
|
|
604
658
|
/**
|
|
659
|
+
* @public
|
|
605
660
|
* <p>The name of the alarm model.</p>
|
|
606
661
|
*/
|
|
607
662
|
alarmModelName: string | undefined;
|
|
608
663
|
/**
|
|
664
|
+
* @public
|
|
609
665
|
* <p>The value of the key used as a filter to select only the alarms associated with the
|
|
610
666
|
* <a href="https://docs.aws.amazon.com/iotevents/latest/apireference/API_CreateAlarmModel.html#iotevents-CreateAlarmModel-request-key">key</a>.</p>
|
|
611
667
|
*/
|
|
612
668
|
keyValue?: string;
|
|
613
669
|
/**
|
|
670
|
+
* @public
|
|
614
671
|
* <p>The note that you can leave when you disable the alarm.</p>
|
|
615
672
|
*/
|
|
616
673
|
note?: string;
|
|
@@ -620,6 +677,7 @@ export interface DisableAlarmActionRequest {
|
|
|
620
677
|
*/
|
|
621
678
|
export interface BatchDisableAlarmRequest {
|
|
622
679
|
/**
|
|
680
|
+
* @public
|
|
623
681
|
* <p>The list of disable action requests. You can specify up to 10 requests per operation.</p>
|
|
624
682
|
*/
|
|
625
683
|
disableActionRequests: DisableAlarmActionRequest[] | undefined;
|
|
@@ -629,6 +687,7 @@ export interface BatchDisableAlarmRequest {
|
|
|
629
687
|
*/
|
|
630
688
|
export interface BatchDisableAlarmResponse {
|
|
631
689
|
/**
|
|
690
|
+
* @public
|
|
632
691
|
* <p>A list of errors associated with the request, or <code>null</code> if there are no errors.
|
|
633
692
|
* Each error entry contains an entry ID that helps you identify the entry that failed.</p>
|
|
634
693
|
*/
|
|
@@ -640,19 +699,23 @@ export interface BatchDisableAlarmResponse {
|
|
|
640
699
|
*/
|
|
641
700
|
export interface EnableAlarmActionRequest {
|
|
642
701
|
/**
|
|
702
|
+
* @public
|
|
643
703
|
* <p>The request ID. Each ID must be unique within each batch.</p>
|
|
644
704
|
*/
|
|
645
705
|
requestId: string | undefined;
|
|
646
706
|
/**
|
|
707
|
+
* @public
|
|
647
708
|
* <p>The name of the alarm model.</p>
|
|
648
709
|
*/
|
|
649
710
|
alarmModelName: string | undefined;
|
|
650
711
|
/**
|
|
712
|
+
* @public
|
|
651
713
|
* <p>The value of the key used as a filter to select only the alarms associated with the
|
|
652
714
|
* <a href="https://docs.aws.amazon.com/iotevents/latest/apireference/API_CreateAlarmModel.html#iotevents-CreateAlarmModel-request-key">key</a>.</p>
|
|
653
715
|
*/
|
|
654
716
|
keyValue?: string;
|
|
655
717
|
/**
|
|
718
|
+
* @public
|
|
656
719
|
* <p>The note that you can leave when you enable the alarm.</p>
|
|
657
720
|
*/
|
|
658
721
|
note?: string;
|
|
@@ -662,6 +725,7 @@ export interface EnableAlarmActionRequest {
|
|
|
662
725
|
*/
|
|
663
726
|
export interface BatchEnableAlarmRequest {
|
|
664
727
|
/**
|
|
728
|
+
* @public
|
|
665
729
|
* <p>The list of enable action requests. You can specify up to 10 requests per operation.</p>
|
|
666
730
|
*/
|
|
667
731
|
enableActionRequests: EnableAlarmActionRequest[] | undefined;
|
|
@@ -671,6 +735,7 @@ export interface BatchEnableAlarmRequest {
|
|
|
671
735
|
*/
|
|
672
736
|
export interface BatchEnableAlarmResponse {
|
|
673
737
|
/**
|
|
738
|
+
* @public
|
|
674
739
|
* <p>A list of errors associated with the request, or <code>null</code> if there are no errors.
|
|
675
740
|
* Each error entry contains an entry ID that helps you identify the entry that failed.</p>
|
|
676
741
|
*/
|
|
@@ -682,6 +747,7 @@ export interface BatchEnableAlarmResponse {
|
|
|
682
747
|
*/
|
|
683
748
|
export interface TimestampValue {
|
|
684
749
|
/**
|
|
750
|
+
* @public
|
|
685
751
|
* <p>The value of the timestamp, in the Unix epoch format.</p>
|
|
686
752
|
*/
|
|
687
753
|
timeInMillis?: number;
|
|
@@ -692,20 +758,24 @@ export interface TimestampValue {
|
|
|
692
758
|
*/
|
|
693
759
|
export interface Message {
|
|
694
760
|
/**
|
|
761
|
+
* @public
|
|
695
762
|
* <p>The ID to assign to the message. Within each batch sent, each <code>"messageId"</code>
|
|
696
763
|
* must be unique.</p>
|
|
697
764
|
*/
|
|
698
765
|
messageId: string | undefined;
|
|
699
766
|
/**
|
|
767
|
+
* @public
|
|
700
768
|
* <p>The name of the input into which the message payload is transformed.</p>
|
|
701
769
|
*/
|
|
702
770
|
inputName: string | undefined;
|
|
703
771
|
/**
|
|
772
|
+
* @public
|
|
704
773
|
* <p>The payload of the message. This can be a JSON string or a Base-64-encoded string
|
|
705
774
|
* representing binary data (in which case you must decode it).</p>
|
|
706
775
|
*/
|
|
707
776
|
payload: Uint8Array | undefined;
|
|
708
777
|
/**
|
|
778
|
+
* @public
|
|
709
779
|
* <p>The timestamp associated with the message.</p>
|
|
710
780
|
*/
|
|
711
781
|
timestamp?: TimestampValue;
|
|
@@ -715,6 +785,7 @@ export interface Message {
|
|
|
715
785
|
*/
|
|
716
786
|
export interface BatchPutMessageRequest {
|
|
717
787
|
/**
|
|
788
|
+
* @public
|
|
718
789
|
* <p>The list of messages to send. Each message has the following format: <code>'\{ "messageId":
|
|
719
790
|
* "string", "inputName": "string", "payload": "string"\}'</code>
|
|
720
791
|
* </p>
|
|
@@ -727,15 +798,18 @@ export interface BatchPutMessageRequest {
|
|
|
727
798
|
*/
|
|
728
799
|
export interface BatchPutMessageErrorEntry {
|
|
729
800
|
/**
|
|
801
|
+
* @public
|
|
730
802
|
* <p>The ID of the message that caused the error. (See the value corresponding to the
|
|
731
803
|
* <code>"messageId"</code> key in the <code>"message"</code> object.)</p>
|
|
732
804
|
*/
|
|
733
805
|
messageId?: string;
|
|
734
806
|
/**
|
|
807
|
+
* @public
|
|
735
808
|
* <p>The error code.</p>
|
|
736
809
|
*/
|
|
737
810
|
errorCode?: ErrorCode | string;
|
|
738
811
|
/**
|
|
812
|
+
* @public
|
|
739
813
|
* <p>A message that describes the error.</p>
|
|
740
814
|
*/
|
|
741
815
|
errorMessage?: string;
|
|
@@ -745,6 +819,7 @@ export interface BatchPutMessageErrorEntry {
|
|
|
745
819
|
*/
|
|
746
820
|
export interface BatchPutMessageResponse {
|
|
747
821
|
/**
|
|
822
|
+
* @public
|
|
748
823
|
* <p>A list of any errors encountered when sending the messages.</p>
|
|
749
824
|
*/
|
|
750
825
|
BatchPutMessageErrorEntries?: BatchPutMessageErrorEntry[];
|
|
@@ -755,19 +830,23 @@ export interface BatchPutMessageResponse {
|
|
|
755
830
|
*/
|
|
756
831
|
export interface ResetAlarmActionRequest {
|
|
757
832
|
/**
|
|
833
|
+
* @public
|
|
758
834
|
* <p>The request ID. Each ID must be unique within each batch.</p>
|
|
759
835
|
*/
|
|
760
836
|
requestId: string | undefined;
|
|
761
837
|
/**
|
|
838
|
+
* @public
|
|
762
839
|
* <p>The name of the alarm model.</p>
|
|
763
840
|
*/
|
|
764
841
|
alarmModelName: string | undefined;
|
|
765
842
|
/**
|
|
843
|
+
* @public
|
|
766
844
|
* <p>The value of the key used as a filter to select only the alarms associated with the
|
|
767
845
|
* <a href="https://docs.aws.amazon.com/iotevents/latest/apireference/API_CreateAlarmModel.html#iotevents-CreateAlarmModel-request-key">key</a>.</p>
|
|
768
846
|
*/
|
|
769
847
|
keyValue?: string;
|
|
770
848
|
/**
|
|
849
|
+
* @public
|
|
771
850
|
* <p>The note that you can leave when you reset the alarm.</p>
|
|
772
851
|
*/
|
|
773
852
|
note?: string;
|
|
@@ -777,6 +856,7 @@ export interface ResetAlarmActionRequest {
|
|
|
777
856
|
*/
|
|
778
857
|
export interface BatchResetAlarmRequest {
|
|
779
858
|
/**
|
|
859
|
+
* @public
|
|
780
860
|
* <p>The list of reset action requests. You can specify up to 10 requests per operation.</p>
|
|
781
861
|
*/
|
|
782
862
|
resetActionRequests: ResetAlarmActionRequest[] | undefined;
|
|
@@ -786,6 +866,7 @@ export interface BatchResetAlarmRequest {
|
|
|
786
866
|
*/
|
|
787
867
|
export interface BatchResetAlarmResponse {
|
|
788
868
|
/**
|
|
869
|
+
* @public
|
|
789
870
|
* <p>A list of errors associated with the request, or <code>null</code> if there are no errors.
|
|
790
871
|
* Each error entry contains an entry ID that helps you identify the entry that failed.</p>
|
|
791
872
|
*/
|
|
@@ -797,23 +878,28 @@ export interface BatchResetAlarmResponse {
|
|
|
797
878
|
*/
|
|
798
879
|
export interface SnoozeAlarmActionRequest {
|
|
799
880
|
/**
|
|
881
|
+
* @public
|
|
800
882
|
* <p>The request ID. Each ID must be unique within each batch.</p>
|
|
801
883
|
*/
|
|
802
884
|
requestId: string | undefined;
|
|
803
885
|
/**
|
|
886
|
+
* @public
|
|
804
887
|
* <p>The name of the alarm model.</p>
|
|
805
888
|
*/
|
|
806
889
|
alarmModelName: string | undefined;
|
|
807
890
|
/**
|
|
891
|
+
* @public
|
|
808
892
|
* <p>The value of the key used as a filter to select only the alarms associated with the
|
|
809
893
|
* <a href="https://docs.aws.amazon.com/iotevents/latest/apireference/API_CreateAlarmModel.html#iotevents-CreateAlarmModel-request-key">key</a>.</p>
|
|
810
894
|
*/
|
|
811
895
|
keyValue?: string;
|
|
812
896
|
/**
|
|
897
|
+
* @public
|
|
813
898
|
* <p>The note that you can leave when you snooze the alarm.</p>
|
|
814
899
|
*/
|
|
815
900
|
note?: string;
|
|
816
901
|
/**
|
|
902
|
+
* @public
|
|
817
903
|
* <p>The snooze time in seconds. The alarm automatically changes to the <code>NORMAL</code> state after this duration.</p>
|
|
818
904
|
*/
|
|
819
905
|
snoozeDuration: number | undefined;
|
|
@@ -823,6 +909,7 @@ export interface SnoozeAlarmActionRequest {
|
|
|
823
909
|
*/
|
|
824
910
|
export interface BatchSnoozeAlarmRequest {
|
|
825
911
|
/**
|
|
912
|
+
* @public
|
|
826
913
|
* <p>The list of snooze action requests. You can specify up to 10 requests per operation.</p>
|
|
827
914
|
*/
|
|
828
915
|
snoozeActionRequests: SnoozeAlarmActionRequest[] | undefined;
|
|
@@ -832,6 +919,7 @@ export interface BatchSnoozeAlarmRequest {
|
|
|
832
919
|
*/
|
|
833
920
|
export interface BatchSnoozeAlarmResponse {
|
|
834
921
|
/**
|
|
922
|
+
* @public
|
|
835
923
|
* <p>A list of errors associated with the request, or <code>null</code> if there are no errors.
|
|
836
924
|
* Each error entry contains an entry ID that helps you identify the entry that failed.</p>
|
|
837
925
|
*/
|
|
@@ -843,10 +931,12 @@ export interface BatchSnoozeAlarmResponse {
|
|
|
843
931
|
*/
|
|
844
932
|
export interface TimerDefinition {
|
|
845
933
|
/**
|
|
934
|
+
* @public
|
|
846
935
|
* <p>The name of the timer.</p>
|
|
847
936
|
*/
|
|
848
937
|
name: string | undefined;
|
|
849
938
|
/**
|
|
939
|
+
* @public
|
|
850
940
|
* <p>The new setting of the timer (the number of seconds before the timer elapses).</p>
|
|
851
941
|
*/
|
|
852
942
|
seconds: number | undefined;
|
|
@@ -857,10 +947,12 @@ export interface TimerDefinition {
|
|
|
857
947
|
*/
|
|
858
948
|
export interface VariableDefinition {
|
|
859
949
|
/**
|
|
950
|
+
* @public
|
|
860
951
|
* <p>The name of the variable.</p>
|
|
861
952
|
*/
|
|
862
953
|
name: string | undefined;
|
|
863
954
|
/**
|
|
955
|
+
* @public
|
|
864
956
|
* <p>The new value of the variable.</p>
|
|
865
957
|
*/
|
|
866
958
|
value: string | undefined;
|
|
@@ -871,15 +963,18 @@ export interface VariableDefinition {
|
|
|
871
963
|
*/
|
|
872
964
|
export interface DetectorStateDefinition {
|
|
873
965
|
/**
|
|
966
|
+
* @public
|
|
874
967
|
* <p>The name of the new state of the detector (instance).</p>
|
|
875
968
|
*/
|
|
876
969
|
stateName: string | undefined;
|
|
877
970
|
/**
|
|
971
|
+
* @public
|
|
878
972
|
* <p>The new values of the detector's variables. Any variable whose value isn't specified is
|
|
879
973
|
* cleared.</p>
|
|
880
974
|
*/
|
|
881
975
|
variables: VariableDefinition[] | undefined;
|
|
882
976
|
/**
|
|
977
|
+
* @public
|
|
883
978
|
* <p>The new values of the detector's timers. Any timer whose value isn't specified is cleared,
|
|
884
979
|
* and its timeout event won't occur.</p>
|
|
885
980
|
*/
|
|
@@ -891,20 +986,24 @@ export interface DetectorStateDefinition {
|
|
|
891
986
|
*/
|
|
892
987
|
export interface UpdateDetectorRequest {
|
|
893
988
|
/**
|
|
989
|
+
* @public
|
|
894
990
|
* <p>The ID to assign to the detector update <code>"message"</code>. Each
|
|
895
991
|
* <code>"messageId"</code> must be unique within each batch sent.</p>
|
|
896
992
|
*/
|
|
897
993
|
messageId: string | undefined;
|
|
898
994
|
/**
|
|
995
|
+
* @public
|
|
899
996
|
* <p>The name of the detector model that created the detectors (instances).</p>
|
|
900
997
|
*/
|
|
901
998
|
detectorModelName: string | undefined;
|
|
902
999
|
/**
|
|
1000
|
+
* @public
|
|
903
1001
|
* <p>The value of the input key attribute (identifying the device or system) that caused the
|
|
904
1002
|
* creation of this detector (instance).</p>
|
|
905
1003
|
*/
|
|
906
1004
|
keyValue?: string;
|
|
907
1005
|
/**
|
|
1006
|
+
* @public
|
|
908
1007
|
* <p>The new state, variable values, and timer settings of the detector (instance).</p>
|
|
909
1008
|
*/
|
|
910
1009
|
state: DetectorStateDefinition | undefined;
|
|
@@ -914,6 +1013,7 @@ export interface UpdateDetectorRequest {
|
|
|
914
1013
|
*/
|
|
915
1014
|
export interface BatchUpdateDetectorRequest {
|
|
916
1015
|
/**
|
|
1016
|
+
* @public
|
|
917
1017
|
* <p>The list of detectors (instances) to update, along with the values to update.</p>
|
|
918
1018
|
*/
|
|
919
1019
|
detectors: UpdateDetectorRequest[] | undefined;
|
|
@@ -924,15 +1024,18 @@ export interface BatchUpdateDetectorRequest {
|
|
|
924
1024
|
*/
|
|
925
1025
|
export interface BatchUpdateDetectorErrorEntry {
|
|
926
1026
|
/**
|
|
1027
|
+
* @public
|
|
927
1028
|
* <p>The <code>"messageId"</code> of the update request that caused the error. (The value of
|
|
928
1029
|
* the <code>"messageId"</code> in the update request <code>"Detector"</code> object.)</p>
|
|
929
1030
|
*/
|
|
930
1031
|
messageId?: string;
|
|
931
1032
|
/**
|
|
1033
|
+
* @public
|
|
932
1034
|
* <p>The error code.</p>
|
|
933
1035
|
*/
|
|
934
1036
|
errorCode?: ErrorCode | string;
|
|
935
1037
|
/**
|
|
1038
|
+
* @public
|
|
936
1039
|
* <p>A message that describes the error.</p>
|
|
937
1040
|
*/
|
|
938
1041
|
errorMessage?: string;
|
|
@@ -942,6 +1045,7 @@ export interface BatchUpdateDetectorErrorEntry {
|
|
|
942
1045
|
*/
|
|
943
1046
|
export interface BatchUpdateDetectorResponse {
|
|
944
1047
|
/**
|
|
1048
|
+
* @public
|
|
945
1049
|
* <p>A list of those detector updates that resulted in errors. (If an error is listed here, the
|
|
946
1050
|
* specific update did not occur.)</p>
|
|
947
1051
|
*/
|
|
@@ -952,10 +1056,12 @@ export interface BatchUpdateDetectorResponse {
|
|
|
952
1056
|
*/
|
|
953
1057
|
export interface DescribeAlarmRequest {
|
|
954
1058
|
/**
|
|
1059
|
+
* @public
|
|
955
1060
|
* <p>The name of the alarm model.</p>
|
|
956
1061
|
*/
|
|
957
1062
|
alarmModelName: string | undefined;
|
|
958
1063
|
/**
|
|
1064
|
+
* @public
|
|
959
1065
|
* <p>The value of the key used as a filter to select only the alarms associated with the
|
|
960
1066
|
* <a href="https://docs.aws.amazon.com/iotevents/latest/apireference/API_CreateAlarmModel.html#iotevents-CreateAlarmModel-request-key">key</a>.</p>
|
|
961
1067
|
*/
|
|
@@ -966,6 +1072,7 @@ export interface DescribeAlarmRequest {
|
|
|
966
1072
|
*/
|
|
967
1073
|
export interface DescribeAlarmResponse {
|
|
968
1074
|
/**
|
|
1075
|
+
* @public
|
|
969
1076
|
* <p>Contains information about an alarm.</p>
|
|
970
1077
|
*/
|
|
971
1078
|
alarm?: Alarm;
|
|
@@ -987,11 +1094,13 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
987
1094
|
*/
|
|
988
1095
|
export interface DescribeDetectorRequest {
|
|
989
1096
|
/**
|
|
1097
|
+
* @public
|
|
990
1098
|
* <p>The name of the detector model whose detectors (instances) you want information
|
|
991
1099
|
* about.</p>
|
|
992
1100
|
*/
|
|
993
1101
|
detectorModelName: string | undefined;
|
|
994
1102
|
/**
|
|
1103
|
+
* @public
|
|
995
1104
|
* <p>A filter used to limit results to detectors (instances) created because of the given key
|
|
996
1105
|
* ID.</p>
|
|
997
1106
|
*/
|
|
@@ -1003,10 +1112,12 @@ export interface DescribeDetectorRequest {
|
|
|
1003
1112
|
*/
|
|
1004
1113
|
export interface Timer {
|
|
1005
1114
|
/**
|
|
1115
|
+
* @public
|
|
1006
1116
|
* <p>The name of the timer.</p>
|
|
1007
1117
|
*/
|
|
1008
1118
|
name: string | undefined;
|
|
1009
1119
|
/**
|
|
1120
|
+
* @public
|
|
1010
1121
|
* <p>The expiration time for the timer.</p>
|
|
1011
1122
|
*/
|
|
1012
1123
|
timestamp: Date | undefined;
|
|
@@ -1017,10 +1128,12 @@ export interface Timer {
|
|
|
1017
1128
|
*/
|
|
1018
1129
|
export interface Variable {
|
|
1019
1130
|
/**
|
|
1131
|
+
* @public
|
|
1020
1132
|
* <p>The name of the variable.</p>
|
|
1021
1133
|
*/
|
|
1022
1134
|
name: string | undefined;
|
|
1023
1135
|
/**
|
|
1136
|
+
* @public
|
|
1024
1137
|
* <p>The current value of the variable.</p>
|
|
1025
1138
|
*/
|
|
1026
1139
|
value: string | undefined;
|
|
@@ -1031,14 +1144,17 @@ export interface Variable {
|
|
|
1031
1144
|
*/
|
|
1032
1145
|
export interface DetectorState {
|
|
1033
1146
|
/**
|
|
1147
|
+
* @public
|
|
1034
1148
|
* <p>The name of the state.</p>
|
|
1035
1149
|
*/
|
|
1036
1150
|
stateName: string | undefined;
|
|
1037
1151
|
/**
|
|
1152
|
+
* @public
|
|
1038
1153
|
* <p>The current values of the detector's variables.</p>
|
|
1039
1154
|
*/
|
|
1040
1155
|
variables: Variable[] | undefined;
|
|
1041
1156
|
/**
|
|
1157
|
+
* @public
|
|
1042
1158
|
* <p>The current state of the detector's timers.</p>
|
|
1043
1159
|
*/
|
|
1044
1160
|
timers: Timer[] | undefined;
|
|
@@ -1049,27 +1165,33 @@ export interface DetectorState {
|
|
|
1049
1165
|
*/
|
|
1050
1166
|
export interface Detector {
|
|
1051
1167
|
/**
|
|
1168
|
+
* @public
|
|
1052
1169
|
* <p>The name of the detector model that created this detector (instance).</p>
|
|
1053
1170
|
*/
|
|
1054
1171
|
detectorModelName?: string;
|
|
1055
1172
|
/**
|
|
1173
|
+
* @public
|
|
1056
1174
|
* <p>The value of the key (identifying the device or system) that caused the creation of this
|
|
1057
1175
|
* detector (instance).</p>
|
|
1058
1176
|
*/
|
|
1059
1177
|
keyValue?: string;
|
|
1060
1178
|
/**
|
|
1179
|
+
* @public
|
|
1061
1180
|
* <p>The version of the detector model that created this detector (instance).</p>
|
|
1062
1181
|
*/
|
|
1063
1182
|
detectorModelVersion?: string;
|
|
1064
1183
|
/**
|
|
1184
|
+
* @public
|
|
1065
1185
|
* <p>The current state of the detector (instance).</p>
|
|
1066
1186
|
*/
|
|
1067
1187
|
state?: DetectorState;
|
|
1068
1188
|
/**
|
|
1189
|
+
* @public
|
|
1069
1190
|
* <p>The time the detector (instance) was created.</p>
|
|
1070
1191
|
*/
|
|
1071
1192
|
creationTime?: Date;
|
|
1072
1193
|
/**
|
|
1194
|
+
* @public
|
|
1073
1195
|
* <p>The time the detector (instance) was last updated.</p>
|
|
1074
1196
|
*/
|
|
1075
1197
|
lastUpdateTime?: Date;
|
|
@@ -1079,6 +1201,7 @@ export interface Detector {
|
|
|
1079
1201
|
*/
|
|
1080
1202
|
export interface DescribeDetectorResponse {
|
|
1081
1203
|
/**
|
|
1204
|
+
* @public
|
|
1082
1205
|
* <p>Information about the detector (instance).</p>
|
|
1083
1206
|
*/
|
|
1084
1207
|
detector?: Detector;
|
|
@@ -1089,6 +1212,7 @@ export interface DescribeDetectorResponse {
|
|
|
1089
1212
|
*/
|
|
1090
1213
|
export interface DetectorStateSummary {
|
|
1091
1214
|
/**
|
|
1215
|
+
* @public
|
|
1092
1216
|
* <p>The name of the state.</p>
|
|
1093
1217
|
*/
|
|
1094
1218
|
stateName?: string;
|
|
@@ -1099,27 +1223,33 @@ export interface DetectorStateSummary {
|
|
|
1099
1223
|
*/
|
|
1100
1224
|
export interface DetectorSummary {
|
|
1101
1225
|
/**
|
|
1226
|
+
* @public
|
|
1102
1227
|
* <p>The name of the detector model that created this detector (instance).</p>
|
|
1103
1228
|
*/
|
|
1104
1229
|
detectorModelName?: string;
|
|
1105
1230
|
/**
|
|
1231
|
+
* @public
|
|
1106
1232
|
* <p>The value of the key (identifying the device or system) that caused the creation of this
|
|
1107
1233
|
* detector (instance).</p>
|
|
1108
1234
|
*/
|
|
1109
1235
|
keyValue?: string;
|
|
1110
1236
|
/**
|
|
1237
|
+
* @public
|
|
1111
1238
|
* <p>The version of the detector model that created this detector (instance).</p>
|
|
1112
1239
|
*/
|
|
1113
1240
|
detectorModelVersion?: string;
|
|
1114
1241
|
/**
|
|
1242
|
+
* @public
|
|
1115
1243
|
* <p>The current state of the detector (instance).</p>
|
|
1116
1244
|
*/
|
|
1117
1245
|
state?: DetectorStateSummary;
|
|
1118
1246
|
/**
|
|
1247
|
+
* @public
|
|
1119
1248
|
* <p>The time the detector (instance) was created.</p>
|
|
1120
1249
|
*/
|
|
1121
1250
|
creationTime?: Date;
|
|
1122
1251
|
/**
|
|
1252
|
+
* @public
|
|
1123
1253
|
* <p>The time the detector (instance) was last updated.</p>
|
|
1124
1254
|
*/
|
|
1125
1255
|
lastUpdateTime?: Date;
|
|
@@ -1129,14 +1259,17 @@ export interface DetectorSummary {
|
|
|
1129
1259
|
*/
|
|
1130
1260
|
export interface ListAlarmsRequest {
|
|
1131
1261
|
/**
|
|
1262
|
+
* @public
|
|
1132
1263
|
* <p>The name of the alarm model.</p>
|
|
1133
1264
|
*/
|
|
1134
1265
|
alarmModelName: string | undefined;
|
|
1135
1266
|
/**
|
|
1267
|
+
* @public
|
|
1136
1268
|
* <p>The token that you can use to return the next set of results.</p>
|
|
1137
1269
|
*/
|
|
1138
1270
|
nextToken?: string;
|
|
1139
1271
|
/**
|
|
1272
|
+
* @public
|
|
1140
1273
|
* <p>The maximum number of results to be returned per request.</p>
|
|
1141
1274
|
*/
|
|
1142
1275
|
maxResults?: number;
|
|
@@ -1146,10 +1279,12 @@ export interface ListAlarmsRequest {
|
|
|
1146
1279
|
*/
|
|
1147
1280
|
export interface ListAlarmsResponse {
|
|
1148
1281
|
/**
|
|
1282
|
+
* @public
|
|
1149
1283
|
* <p>A list that summarizes each alarm.</p>
|
|
1150
1284
|
*/
|
|
1151
1285
|
alarmSummaries?: AlarmSummary[];
|
|
1152
1286
|
/**
|
|
1287
|
+
* @public
|
|
1153
1288
|
* <p>The token that you can use to return the next set of results,
|
|
1154
1289
|
* or <code>null</code> if there are no more results.</p>
|
|
1155
1290
|
*/
|
|
@@ -1160,18 +1295,22 @@ export interface ListAlarmsResponse {
|
|
|
1160
1295
|
*/
|
|
1161
1296
|
export interface ListDetectorsRequest {
|
|
1162
1297
|
/**
|
|
1298
|
+
* @public
|
|
1163
1299
|
* <p>The name of the detector model whose detectors (instances) are listed.</p>
|
|
1164
1300
|
*/
|
|
1165
1301
|
detectorModelName: string | undefined;
|
|
1166
1302
|
/**
|
|
1303
|
+
* @public
|
|
1167
1304
|
* <p>A filter that limits results to those detectors (instances) in the given state.</p>
|
|
1168
1305
|
*/
|
|
1169
1306
|
stateName?: string;
|
|
1170
1307
|
/**
|
|
1308
|
+
* @public
|
|
1171
1309
|
* <p>The token that you can use to return the next set of results.</p>
|
|
1172
1310
|
*/
|
|
1173
1311
|
nextToken?: string;
|
|
1174
1312
|
/**
|
|
1313
|
+
* @public
|
|
1175
1314
|
* <p>The maximum number of results to be returned per request.</p>
|
|
1176
1315
|
*/
|
|
1177
1316
|
maxResults?: number;
|
|
@@ -1181,10 +1320,12 @@ export interface ListDetectorsRequest {
|
|
|
1181
1320
|
*/
|
|
1182
1321
|
export interface ListDetectorsResponse {
|
|
1183
1322
|
/**
|
|
1323
|
+
* @public
|
|
1184
1324
|
* <p>A list of summary information about the detectors (instances).</p>
|
|
1185
1325
|
*/
|
|
1186
1326
|
detectorSummaries?: DetectorSummary[];
|
|
1187
1327
|
/**
|
|
1328
|
+
* @public
|
|
1188
1329
|
* <p>The token that you can use to return the next set of results,
|
|
1189
1330
|
* or <code>null</code> if there are no more results.</p>
|
|
1190
1331
|
*/
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./IoTEventsDataClient";
|
|
2
2
|
export * from "./IoTEventsData";
|
|
3
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
3
4
|
export * from "./commands";
|
|
4
5
|
export * from "./models";
|
|
5
6
|
export { IoTEventsDataServiceException } from "./models/IoTEventsDataServiceException";
|
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.382.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",
|
|
@@ -21,15 +21,15 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.382.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.382.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.379.1",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.379.1",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.382.0",
|
|
31
31
|
"@aws-sdk/types": "3.378.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.382.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.378.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.378.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.1",
|