iotevents.d.ts
31.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
import {Request} from '../lib/request';
import {Response} from '../lib/response';
import {AWSError} from '../lib/error';
import {Service} from '../lib/service';
import {ServiceConfigurationOptions} from '../lib/service';
import {ConfigBase as Config} from '../lib/config';
interface Blob {}
declare class IoTEvents extends Service {
/**
* Constructs a service object. This object has one method for each API operation.
*/
constructor(options?: IoTEvents.Types.ClientConfiguration)
config: Config & IoTEvents.Types.ClientConfiguration;
/**
* Creates a detector model.
*/
createDetectorModel(params: IoTEvents.Types.CreateDetectorModelRequest, callback?: (err: AWSError, data: IoTEvents.Types.CreateDetectorModelResponse) => void): Request<IoTEvents.Types.CreateDetectorModelResponse, AWSError>;
/**
* Creates a detector model.
*/
createDetectorModel(callback?: (err: AWSError, data: IoTEvents.Types.CreateDetectorModelResponse) => void): Request<IoTEvents.Types.CreateDetectorModelResponse, AWSError>;
/**
* Creates an input.
*/
createInput(params: IoTEvents.Types.CreateInputRequest, callback?: (err: AWSError, data: IoTEvents.Types.CreateInputResponse) => void): Request<IoTEvents.Types.CreateInputResponse, AWSError>;
/**
* Creates an input.
*/
createInput(callback?: (err: AWSError, data: IoTEvents.Types.CreateInputResponse) => void): Request<IoTEvents.Types.CreateInputResponse, AWSError>;
/**
* Deletes a detector model. Any active instances of the detector model are also deleted.
*/
deleteDetectorModel(params: IoTEvents.Types.DeleteDetectorModelRequest, callback?: (err: AWSError, data: IoTEvents.Types.DeleteDetectorModelResponse) => void): Request<IoTEvents.Types.DeleteDetectorModelResponse, AWSError>;
/**
* Deletes a detector model. Any active instances of the detector model are also deleted.
*/
deleteDetectorModel(callback?: (err: AWSError, data: IoTEvents.Types.DeleteDetectorModelResponse) => void): Request<IoTEvents.Types.DeleteDetectorModelResponse, AWSError>;
/**
* Deletes an input.
*/
deleteInput(params: IoTEvents.Types.DeleteInputRequest, callback?: (err: AWSError, data: IoTEvents.Types.DeleteInputResponse) => void): Request<IoTEvents.Types.DeleteInputResponse, AWSError>;
/**
* Deletes an input.
*/
deleteInput(callback?: (err: AWSError, data: IoTEvents.Types.DeleteInputResponse) => void): Request<IoTEvents.Types.DeleteInputResponse, AWSError>;
/**
* Describes a detector model. If the "version" parameter is not specified, information about the latest version is returned.
*/
describeDetectorModel(params: IoTEvents.Types.DescribeDetectorModelRequest, callback?: (err: AWSError, data: IoTEvents.Types.DescribeDetectorModelResponse) => void): Request<IoTEvents.Types.DescribeDetectorModelResponse, AWSError>;
/**
* Describes a detector model. If the "version" parameter is not specified, information about the latest version is returned.
*/
describeDetectorModel(callback?: (err: AWSError, data: IoTEvents.Types.DescribeDetectorModelResponse) => void): Request<IoTEvents.Types.DescribeDetectorModelResponse, AWSError>;
/**
* Describes an input.
*/
describeInput(params: IoTEvents.Types.DescribeInputRequest, callback?: (err: AWSError, data: IoTEvents.Types.DescribeInputResponse) => void): Request<IoTEvents.Types.DescribeInputResponse, AWSError>;
/**
* Describes an input.
*/
describeInput(callback?: (err: AWSError, data: IoTEvents.Types.DescribeInputResponse) => void): Request<IoTEvents.Types.DescribeInputResponse, AWSError>;
/**
* Retrieves the current settings of the AWS IoT Events logging options.
*/
describeLoggingOptions(params: IoTEvents.Types.DescribeLoggingOptionsRequest, callback?: (err: AWSError, data: IoTEvents.Types.DescribeLoggingOptionsResponse) => void): Request<IoTEvents.Types.DescribeLoggingOptionsResponse, AWSError>;
/**
* Retrieves the current settings of the AWS IoT Events logging options.
*/
describeLoggingOptions(callback?: (err: AWSError, data: IoTEvents.Types.DescribeLoggingOptionsResponse) => void): Request<IoTEvents.Types.DescribeLoggingOptionsResponse, AWSError>;
/**
* Lists all the versions of a detector model. Only the metadata associated with each detector model version is returned.
*/
listDetectorModelVersions(params: IoTEvents.Types.ListDetectorModelVersionsRequest, callback?: (err: AWSError, data: IoTEvents.Types.ListDetectorModelVersionsResponse) => void): Request<IoTEvents.Types.ListDetectorModelVersionsResponse, AWSError>;
/**
* Lists all the versions of a detector model. Only the metadata associated with each detector model version is returned.
*/
listDetectorModelVersions(callback?: (err: AWSError, data: IoTEvents.Types.ListDetectorModelVersionsResponse) => void): Request<IoTEvents.Types.ListDetectorModelVersionsResponse, AWSError>;
/**
* Lists the detector models you have created. Only the metadata associated with each detector model is returned.
*/
listDetectorModels(params: IoTEvents.Types.ListDetectorModelsRequest, callback?: (err: AWSError, data: IoTEvents.Types.ListDetectorModelsResponse) => void): Request<IoTEvents.Types.ListDetectorModelsResponse, AWSError>;
/**
* Lists the detector models you have created. Only the metadata associated with each detector model is returned.
*/
listDetectorModels(callback?: (err: AWSError, data: IoTEvents.Types.ListDetectorModelsResponse) => void): Request<IoTEvents.Types.ListDetectorModelsResponse, AWSError>;
/**
* Lists the inputs you have created.
*/
listInputs(params: IoTEvents.Types.ListInputsRequest, callback?: (err: AWSError, data: IoTEvents.Types.ListInputsResponse) => void): Request<IoTEvents.Types.ListInputsResponse, AWSError>;
/**
* Lists the inputs you have created.
*/
listInputs(callback?: (err: AWSError, data: IoTEvents.Types.ListInputsResponse) => void): Request<IoTEvents.Types.ListInputsResponse, AWSError>;
/**
* Lists the tags (metadata) you have assigned to the resource.
*/
listTagsForResource(params: IoTEvents.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: IoTEvents.Types.ListTagsForResourceResponse) => void): Request<IoTEvents.Types.ListTagsForResourceResponse, AWSError>;
/**
* Lists the tags (metadata) you have assigned to the resource.
*/
listTagsForResource(callback?: (err: AWSError, data: IoTEvents.Types.ListTagsForResourceResponse) => void): Request<IoTEvents.Types.ListTagsForResourceResponse, AWSError>;
/**
* Sets or updates the AWS IoT Events logging options. If you update the value of any "loggingOptions" field, it takes up to one minute for the change to take effect. Also, if you change the policy attached to the role you specified in the "roleArn" field (for example, to correct an invalid policy) it takes up to five minutes for that change to take effect.
*/
putLoggingOptions(params: IoTEvents.Types.PutLoggingOptionsRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Sets or updates the AWS IoT Events logging options. If you update the value of any "loggingOptions" field, it takes up to one minute for the change to take effect. Also, if you change the policy attached to the role you specified in the "roleArn" field (for example, to correct an invalid policy) it takes up to five minutes for that change to take effect.
*/
putLoggingOptions(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Adds to or modifies the tags of the given resource. Tags are metadata that can be used to manage a resource.
*/
tagResource(params: IoTEvents.Types.TagResourceRequest, callback?: (err: AWSError, data: IoTEvents.Types.TagResourceResponse) => void): Request<IoTEvents.Types.TagResourceResponse, AWSError>;
/**
* Adds to or modifies the tags of the given resource. Tags are metadata that can be used to manage a resource.
*/
tagResource(callback?: (err: AWSError, data: IoTEvents.Types.TagResourceResponse) => void): Request<IoTEvents.Types.TagResourceResponse, AWSError>;
/**
* Removes the given tags (metadata) from the resource.
*/
untagResource(params: IoTEvents.Types.UntagResourceRequest, callback?: (err: AWSError, data: IoTEvents.Types.UntagResourceResponse) => void): Request<IoTEvents.Types.UntagResourceResponse, AWSError>;
/**
* Removes the given tags (metadata) from the resource.
*/
untagResource(callback?: (err: AWSError, data: IoTEvents.Types.UntagResourceResponse) => void): Request<IoTEvents.Types.UntagResourceResponse, AWSError>;
/**
* Updates a detector model. Detectors (instances) spawned by the previous version are deleted and then re-created as new inputs arrive.
*/
updateDetectorModel(params: IoTEvents.Types.UpdateDetectorModelRequest, callback?: (err: AWSError, data: IoTEvents.Types.UpdateDetectorModelResponse) => void): Request<IoTEvents.Types.UpdateDetectorModelResponse, AWSError>;
/**
* Updates a detector model. Detectors (instances) spawned by the previous version are deleted and then re-created as new inputs arrive.
*/
updateDetectorModel(callback?: (err: AWSError, data: IoTEvents.Types.UpdateDetectorModelResponse) => void): Request<IoTEvents.Types.UpdateDetectorModelResponse, AWSError>;
/**
* Updates an input.
*/
updateInput(params: IoTEvents.Types.UpdateInputRequest, callback?: (err: AWSError, data: IoTEvents.Types.UpdateInputResponse) => void): Request<IoTEvents.Types.UpdateInputResponse, AWSError>;
/**
* Updates an input.
*/
updateInput(callback?: (err: AWSError, data: IoTEvents.Types.UpdateInputResponse) => void): Request<IoTEvents.Types.UpdateInputResponse, AWSError>;
}
declare namespace IoTEvents {
export interface Action {
/**
* Sets a variable to a specified value.
*/
setVariable?: SetVariableAction;
/**
* Sends an Amazon SNS message.
*/
sns?: SNSTopicPublishAction;
/**
* Publishes an MQTT message with the given topic to the AWS IoT message broker.
*/
iotTopicPublish?: IotTopicPublishAction;
/**
* Information needed to set the timer.
*/
setTimer?: SetTimerAction;
/**
* Information needed to clear the timer.
*/
clearTimer?: ClearTimerAction;
/**
* Information needed to reset the timer.
*/
resetTimer?: ResetTimerAction;
/**
* Calls an AWS Lambda function, passing in information about the detector model instance and the event which triggered the action.
*/
lambda?: LambdaAction;
/**
* Sends an IoT Events input, passing in information about the detector model instance and the event which triggered the action.
*/
iotEvents?: IotEventsAction;
/**
* Sends information about the detector model instance and the event which triggered the action to an Amazon SQS queue.
*/
sqs?: SqsAction;
/**
* Sends information about the detector model instance and the event which triggered the action to a Kinesis Data Firehose delivery stream.
*/
firehose?: FirehoseAction;
}
export type Actions = Action[];
export type AmazonResourceName = string;
export interface Attribute {
/**
* An expression that specifies an attribute-value pair in a JSON structure. Use this to specify an attribute from the JSON payload that is made available by the input. Inputs are derived from messages sent to the AWS IoT Events system (BatchPutMessage). Each such message contains a JSON payload, and the attribute (and its paired value) specified here are available for use in the "condition" expressions used by detectors. Syntax: <field-name>.<field-name>...
*/
jsonPath: AttributeJsonPath;
}
export type AttributeJsonPath = string;
export type Attributes = Attribute[];
export interface ClearTimerAction {
/**
* The name of the timer to clear.
*/
timerName: TimerName;
}
export type Condition = string;
export interface CreateDetectorModelRequest {
/**
* The name of the detector model.
*/
detectorModelName: DetectorModelName;
/**
* Information that defines how the detectors operate.
*/
detectorModelDefinition: DetectorModelDefinition;
/**
* A brief description of the detector model.
*/
detectorModelDescription?: DetectorModelDescription;
/**
* The input attribute key used to identify a device or system to create a detector (an instance of the detector model) and then to route each input received to the appropriate detector (instance). This parameter uses a JSON-path expression to specify the attribute-value pair in the message payload of each input that is used to identify the device associated with the input.
*/
key?: AttributeJsonPath;
/**
* The ARN of the role that grants permission to AWS IoT Events to perform its operations.
*/
roleArn: AmazonResourceName;
/**
* Metadata that can be used to manage the detector model.
*/
tags?: Tags;
/**
* When set to SERIAL, variables are updated and event conditions evaluated in the order that the events are defined. When set to BATCH, variables are updated and events performed only after all event conditions are evaluated.
*/
evaluationMethod?: EvaluationMethod;
}
export interface CreateDetectorModelResponse {
/**
* Information about how the detector model is configured.
*/
detectorModelConfiguration?: DetectorModelConfiguration;
}
export interface CreateInputRequest {
/**
* The name you want to give to the input.
*/
inputName: InputName;
/**
* A brief description of the input.
*/
inputDescription?: InputDescription;
/**
* The definition of the input.
*/
inputDefinition: InputDefinition;
/**
* Metadata that can be used to manage the input.
*/
tags?: Tags;
}
export interface CreateInputResponse {
/**
* Information about the configuration of the input.
*/
inputConfiguration?: InputConfiguration;
}
export interface DeleteDetectorModelRequest {
/**
* The name of the detector model to be deleted.
*/
detectorModelName: DetectorModelName;
}
export interface DeleteDetectorModelResponse {
}
export interface DeleteInputRequest {
/**
* The name of the input to delete.
*/
inputName: InputName;
}
export interface DeleteInputResponse {
}
export type DeliveryStreamName = string;
export interface DescribeDetectorModelRequest {
/**
* The name of the detector model.
*/
detectorModelName: DetectorModelName;
/**
* The version of the detector model.
*/
detectorModelVersion?: DetectorModelVersion;
}
export interface DescribeDetectorModelResponse {
/**
* Information about the detector model.
*/
detectorModel?: DetectorModel;
}
export interface DescribeInputRequest {
/**
* The name of the input.
*/
inputName: InputName;
}
export interface DescribeInputResponse {
/**
* Information about the input.
*/
input?: Input;
}
export interface DescribeLoggingOptionsRequest {
}
export interface DescribeLoggingOptionsResponse {
/**
* The current settings of the AWS IoT Events logging options.
*/
loggingOptions?: LoggingOptions;
}
export interface DetectorDebugOption {
/**
* The name of the detector model.
*/
detectorModelName: DetectorModelName;
/**
* The value of the input attribute key used to create the detector (the instance of the detector model).
*/
keyValue?: KeyValue;
}
export type DetectorDebugOptions = DetectorDebugOption[];
export interface DetectorModel {
/**
* Information that defines how a detector operates.
*/
detectorModelDefinition?: DetectorModelDefinition;
/**
* Information about how the detector is configured.
*/
detectorModelConfiguration?: DetectorModelConfiguration;
}
export type DetectorModelArn = string;
export interface DetectorModelConfiguration {
/**
* The name of the detector model.
*/
detectorModelName?: DetectorModelName;
/**
* The version of the detector model.
*/
detectorModelVersion?: DetectorModelVersion;
/**
* A brief description of the detector model.
*/
detectorModelDescription?: DetectorModelDescription;
/**
* The ARN of the detector model.
*/
detectorModelArn?: DetectorModelArn;
/**
* The ARN of the role that grants permission to AWS IoT Events to perform its operations.
*/
roleArn?: AmazonResourceName;
/**
* The time the detector model was created.
*/
creationTime?: Timestamp;
/**
* The time the detector model was last updated.
*/
lastUpdateTime?: Timestamp;
/**
* The status of the detector model.
*/
status?: DetectorModelVersionStatus;
/**
* The input attribute key used to identify a device or system to create a detector (an instance of the detector model) and then to route each input received to the appropriate detector (instance). This parameter uses a JSON-path expression to specify the attribute-value pair in the message payload of each input that is used to identify the device associated with the input.
*/
key?: AttributeJsonPath;
/**
* When set to SERIAL, variables are updated and event conditions evaluated in the order that the events are defined. When set to BATCH, variables are updated and events performed only after all event conditions are evaluated.
*/
evaluationMethod?: EvaluationMethod;
}
export interface DetectorModelDefinition {
/**
* Information about the states of the detector.
*/
states: States;
/**
* The state that is entered at the creation of each detector (instance).
*/
initialStateName: StateName;
}
export type DetectorModelDescription = string;
export type DetectorModelName = string;
export type DetectorModelSummaries = DetectorModelSummary[];
export interface DetectorModelSummary {
/**
* The name of the detector model.
*/
detectorModelName?: DetectorModelName;
/**
* A brief description of the detector model.
*/
detectorModelDescription?: DetectorModelDescription;
/**
* The time the detector model was created.
*/
creationTime?: Timestamp;
}
export type DetectorModelVersion = string;
export type DetectorModelVersionStatus = "ACTIVE"|"ACTIVATING"|"INACTIVE"|"DEPRECATED"|"DRAFT"|"PAUSED"|"FAILED"|string;
export type DetectorModelVersionSummaries = DetectorModelVersionSummary[];
export interface DetectorModelVersionSummary {
/**
* The name of the detector model.
*/
detectorModelName?: DetectorModelName;
/**
* The ID of the detector model version.
*/
detectorModelVersion?: DetectorModelVersion;
/**
* The ARN of the detector model version.
*/
detectorModelArn?: DetectorModelArn;
/**
* The ARN of the role that grants the detector model permission to perform its tasks.
*/
roleArn?: AmazonResourceName;
/**
* The time the detector model version was created.
*/
creationTime?: Timestamp;
/**
* The last time the detector model version was updated.
*/
lastUpdateTime?: Timestamp;
/**
* The status of the detector model version.
*/
status?: DetectorModelVersionStatus;
/**
* When set to SERIAL, variables are updated and event conditions evaluated in the order that the events are defined. When set to BATCH, variables are updated and events performed only after all event conditions are evaluated.
*/
evaluationMethod?: EvaluationMethod;
}
export type EvaluationMethod = "BATCH"|"SERIAL"|string;
export interface Event {
/**
* The name of the event.
*/
eventName: EventName;
/**
* [Optional] The Boolean expression that when TRUE causes the "actions" to be performed. If not present, the actions are performed (=TRUE); if the expression result is not a Boolean value, the actions are NOT performed (=FALSE).
*/
condition?: Condition;
/**
* The actions to be performed.
*/
actions?: Actions;
}
export type EventName = string;
export type Events = Event[];
export interface FirehoseAction {
/**
* The name of the Kinesis Data Firehose delivery stream where the data is written.
*/
deliveryStreamName: DeliveryStreamName;
/**
* A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: '\n' (newline), '\t' (tab), '\r\n' (Windows newline), ',' (comma).
*/
separator?: FirehoseSeparator;
}
export type FirehoseSeparator = string;
export interface Input {
/**
* Information about the configuration of an input.
*/
inputConfiguration?: InputConfiguration;
/**
* The definition of the input.
*/
inputDefinition?: InputDefinition;
}
export type InputArn = string;
export interface InputConfiguration {
/**
* The name of the input.
*/
inputName: InputName;
/**
* A brief description of the input.
*/
inputDescription?: InputDescription;
/**
* The ARN of the input.
*/
inputArn: InputArn;
/**
* The time the input was created.
*/
creationTime: Timestamp;
/**
* The last time the input was updated.
*/
lastUpdateTime: Timestamp;
/**
* The status of the input.
*/
status: InputStatus;
}
export interface InputDefinition {
/**
* The attributes from the JSON payload that are made available by the input. Inputs are derived from messages sent to the AWS IoT Events system using BatchPutMessage. Each such message contains a JSON payload, and those attributes (and their paired values) specified here are available for use in the "condition" expressions used by detectors that monitor this input.
*/
attributes: Attributes;
}
export type InputDescription = string;
export type InputName = string;
export type InputStatus = "CREATING"|"UPDATING"|"ACTIVE"|"DELETING"|string;
export type InputSummaries = InputSummary[];
export interface InputSummary {
/**
* The name of the input.
*/
inputName?: InputName;
/**
* A brief description of the input.
*/
inputDescription?: InputDescription;
/**
* The ARN of the input.
*/
inputArn?: InputArn;
/**
* The time the input was created.
*/
creationTime?: Timestamp;
/**
* The last time the input was updated.
*/
lastUpdateTime?: Timestamp;
/**
* The status of the input.
*/
status?: InputStatus;
}
export interface IotEventsAction {
/**
* The name of the AWS IoT Events input where the data is sent.
*/
inputName: InputName;
}
export interface IotTopicPublishAction {
/**
* The MQTT topic of the message.
*/
mqttTopic: MQTTTopic;
}
export type KeyValue = string;
export interface LambdaAction {
/**
* The ARN of the AWS Lambda function which is executed.
*/
functionArn: AmazonResourceName;
}
export interface ListDetectorModelVersionsRequest {
/**
* The name of the detector model whose versions are returned.
*/
detectorModelName: DetectorModelName;
/**
* The token for the next set of results.
*/
nextToken?: NextToken;
/**
* The maximum number of results to return at one time.
*/
maxResults?: MaxResults;
}
export interface ListDetectorModelVersionsResponse {
/**
* Summary information about the detector model versions.
*/
detectorModelVersionSummaries?: DetectorModelVersionSummaries;
/**
* A token to retrieve the next set of results, or null if there are no additional results.
*/
nextToken?: NextToken;
}
export interface ListDetectorModelsRequest {
/**
* The token for the next set of results.
*/
nextToken?: NextToken;
/**
* The maximum number of results to return at one time.
*/
maxResults?: MaxResults;
}
export interface ListDetectorModelsResponse {
/**
* Summary information about the detector models.
*/
detectorModelSummaries?: DetectorModelSummaries;
/**
* A token to retrieve the next set of results, or null if there are no additional results.
*/
nextToken?: NextToken;
}
export interface ListInputsRequest {
/**
* The token for the next set of results.
*/
nextToken?: NextToken;
/**
* The maximum number of results to return at one time.
*/
maxResults?: MaxResults;
}
export interface ListInputsResponse {
/**
* Summary information about the inputs.
*/
inputSummaries?: InputSummaries;
/**
* A token to retrieve the next set of results, or null if there are no additional results.
*/
nextToken?: NextToken;
}
export interface ListTagsForResourceRequest {
/**
* The ARN of the resource.
*/
resourceArn: AmazonResourceName;
}
export interface ListTagsForResourceResponse {
/**
* The list of tags assigned to the resource.
*/
tags?: Tags;
}
export type LoggingEnabled = boolean;
export type LoggingLevel = "ERROR"|"INFO"|"DEBUG"|string;
export interface LoggingOptions {
/**
* The ARN of the role that grants permission to AWS IoT Events to perform logging.
*/
roleArn: AmazonResourceName;
/**
* The logging level.
*/
level: LoggingLevel;
/**
* If TRUE, logging is enabled for AWS IoT Events.
*/
enabled: LoggingEnabled;
/**
* Information that identifies those detector models and their detectors (instances) for which the logging level is given.
*/
detectorDebugOptions?: DetectorDebugOptions;
}
export type MQTTTopic = string;
export type MaxResults = number;
export type NextToken = string;
export interface OnEnterLifecycle {
/**
* Specifies the actions that are performed when the state is entered and the "condition" is TRUE.
*/
events?: Events;
}
export interface OnExitLifecycle {
/**
* Specifies the "actions" that are performed when the state is exited and the "condition" is TRUE.
*/
events?: Events;
}
export interface OnInputLifecycle {
/**
* Specifies the actions performed when the "condition" evaluates to TRUE.
*/
events?: Events;
/**
* Specifies the actions performed, and the next state entered, when a "condition" evaluates to TRUE.
*/
transitionEvents?: TransitionEvents;
}
export interface PutLoggingOptionsRequest {
/**
* The new values of the AWS IoT Events logging options.
*/
loggingOptions: LoggingOptions;
}
export type QueueUrl = string;
export interface ResetTimerAction {
/**
* The name of the timer to reset.
*/
timerName: TimerName;
}
export interface SNSTopicPublishAction {
/**
* The ARN of the Amazon SNS target where the message is sent.
*/
targetArn: AmazonResourceName;
}
export type Seconds = number;
export interface SetTimerAction {
/**
* The name of the timer.
*/
timerName: TimerName;
/**
* The number of seconds until the timer expires. The minimum value is 60 seconds to ensure accuracy.
*/
seconds: Seconds;
}
export interface SetVariableAction {
/**
* The name of the variable.
*/
variableName: VariableName;
/**
* The new value of the variable.
*/
value: VariableValue;
}
export interface SqsAction {
/**
* The URL of the Amazon SQS queue where the data is written.
*/
queueUrl: QueueUrl;
/**
* Set this to TRUE if you want the data to be Base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.
*/
useBase64?: UseBase64;
}
export interface State {
/**
* The name of the state.
*/
stateName: StateName;
/**
* When an input is received and the "condition" is TRUE, perform the specified "actions".
*/
onInput?: OnInputLifecycle;
/**
* When entering this state, perform these "actions" if the "condition" is TRUE.
*/
onEnter?: OnEnterLifecycle;
/**
* When exiting this state, perform these "actions" if the specified "condition" is TRUE.
*/
onExit?: OnExitLifecycle;
}
export type StateName = string;
export type States = State[];
export interface Tag {
/**
* The tag's key.
*/
key: TagKey;
/**
* The tag's value.
*/
value: TagValue;
}
export type TagKey = string;
export type TagKeys = TagKey[];
export interface TagResourceRequest {
/**
* The ARN of the resource.
*/
resourceArn: AmazonResourceName;
/**
* The new or modified tags for the resource.
*/
tags: Tags;
}
export interface TagResourceResponse {
}
export type TagValue = string;
export type Tags = Tag[];
export type TimerName = string;
export type Timestamp = Date;
export interface TransitionEvent {
/**
* The name of the transition event.
*/
eventName: EventName;
/**
* [Required] A Boolean expression that when TRUE causes the actions to be performed and the "nextState" to be entered.
*/
condition: Condition;
/**
* The actions to be performed.
*/
actions?: Actions;
/**
* The next state to enter.
*/
nextState: StateName;
}
export type TransitionEvents = TransitionEvent[];
export interface UntagResourceRequest {
/**
* The ARN of the resource.
*/
resourceArn: AmazonResourceName;
/**
* A list of the keys of the tags to be removed from the resource.
*/
tagKeys: TagKeys;
}
export interface UntagResourceResponse {
}
export interface UpdateDetectorModelRequest {
/**
* The name of the detector model that is updated.
*/
detectorModelName: DetectorModelName;
/**
* Information that defines how a detector operates.
*/
detectorModelDefinition: DetectorModelDefinition;
/**
* A brief description of the detector model.
*/
detectorModelDescription?: DetectorModelDescription;
/**
* The ARN of the role that grants permission to AWS IoT Events to perform its operations.
*/
roleArn: AmazonResourceName;
/**
* When set to SERIAL, variables are updated and event conditions evaluated in the order that the events are defined. When set to BATCH, variables are updated and events performed only after all event conditions are evaluated.
*/
evaluationMethod?: EvaluationMethod;
}
export interface UpdateDetectorModelResponse {
/**
* Information about how the detector model is configured.
*/
detectorModelConfiguration?: DetectorModelConfiguration;
}
export interface UpdateInputRequest {
/**
* The name of the input you want to update.
*/
inputName: InputName;
/**
* A brief description of the input.
*/
inputDescription?: InputDescription;
/**
* The definition of the input.
*/
inputDefinition: InputDefinition;
}
export interface UpdateInputResponse {
/**
* Information about the configuration of the input.
*/
inputConfiguration?: InputConfiguration;
}
export type UseBase64 = boolean;
export type VariableName = string;
export type VariableValue = string;
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
export type apiVersion = "2018-07-27"|"latest"|string;
export interface ClientApiVersions {
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
apiVersion?: apiVersion;
}
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
/**
* Contains interfaces for use with the IoTEvents client.
*/
export import Types = IoTEvents;
}
export = IoTEvents;