@aws-sdk/client-iot-events 3.169.0 → 3.170.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.
Files changed (41) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/IoTEvents.d.ts +472 -135
  3. package/dist-types/ts3.4/IoTEventsClient.d.ts +285 -99
  4. package/dist-types/ts3.4/commands/CreateAlarmModelCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/CreateDetectorModelCommand.d.ts +38 -17
  6. package/dist-types/ts3.4/commands/CreateInputCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/DeleteAlarmModelCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/DeleteDetectorModelCommand.d.ts +38 -17
  9. package/dist-types/ts3.4/commands/DeleteInputCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/DescribeAlarmModelCommand.d.ts +38 -17
  11. package/dist-types/ts3.4/commands/DescribeDetectorModelAnalysisCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/DescribeDetectorModelCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/DescribeInputCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/DescribeLoggingOptionsCommand.d.ts +41 -17
  15. package/dist-types/ts3.4/commands/GetDetectorModelAnalysisResultsCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/ListAlarmModelVersionsCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/ListAlarmModelsCommand.d.ts +37 -17
  18. package/dist-types/ts3.4/commands/ListDetectorModelVersionsCommand.d.ts +41 -17
  19. package/dist-types/ts3.4/commands/ListDetectorModelsCommand.d.ts +38 -17
  20. package/dist-types/ts3.4/commands/ListInputRoutingsCommand.d.ts +38 -17
  21. package/dist-types/ts3.4/commands/ListInputsCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  23. package/dist-types/ts3.4/commands/PutLoggingOptionsCommand.d.ts +33 -17
  24. package/dist-types/ts3.4/commands/StartDetectorModelAnalysisCommand.d.ts +41 -17
  25. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/UpdateAlarmModelCommand.d.ts +37 -17
  28. package/dist-types/ts3.4/commands/UpdateDetectorModelCommand.d.ts +38 -17
  29. package/dist-types/ts3.4/commands/UpdateInputCommand.d.ts +34 -17
  30. package/dist-types/ts3.4/commands/index.d.ts +26 -26
  31. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  32. package/dist-types/ts3.4/index.d.ts +5 -5
  33. package/dist-types/ts3.4/models/IoTEventsServiceException.d.ts +8 -6
  34. package/dist-types/ts3.4/models/index.d.ts +1 -1
  35. package/dist-types/ts3.4/models/models_0.d.ts +1346 -1245
  36. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +317 -80
  37. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  38. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  39. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  40. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  41. package/package.json +34 -34
@@ -1,1245 +1,1346 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { IoTEventsServiceException as __BaseException } from "./IoTEventsServiceException";
3
-
4
- export interface AcknowledgeFlow {
5
-
6
- enabled: boolean | undefined;
7
- }
8
-
9
- export interface ClearTimerAction {
10
-
11
- timerName: string | undefined;
12
- }
13
- export declare enum PayloadType {
14
- JSON = "JSON",
15
- STRING = "STRING"
16
- }
17
-
18
- export interface Payload {
19
-
20
- contentExpression: string | undefined;
21
-
22
- type: PayloadType | string | undefined;
23
- }
24
-
25
- export interface DynamoDBAction {
26
-
27
- hashKeyType?: string;
28
-
29
- hashKeyField: string | undefined;
30
-
31
- hashKeyValue: string | undefined;
32
-
33
- rangeKeyType?: string;
34
-
35
- rangeKeyField?: string;
36
-
37
- rangeKeyValue?: string;
38
-
39
- operation?: string;
40
-
41
- payloadField?: string;
42
-
43
- tableName: string | undefined;
44
-
45
- payload?: Payload;
46
- }
47
-
48
- export interface DynamoDBv2Action {
49
-
50
- tableName: string | undefined;
51
-
52
- payload?: Payload;
53
- }
54
-
55
- export interface FirehoseAction {
56
-
57
- deliveryStreamName: string | undefined;
58
-
59
- separator?: string;
60
-
61
- payload?: Payload;
62
- }
63
-
64
- export interface IotEventsAction {
65
-
66
- inputName: string | undefined;
67
-
68
- payload?: Payload;
69
- }
70
-
71
- export interface AssetPropertyTimestamp {
72
-
73
- timeInSeconds: string | undefined;
74
-
75
- offsetInNanos?: string;
76
- }
77
-
78
- export interface AssetPropertyVariant {
79
-
80
- stringValue?: string;
81
-
82
- integerValue?: string;
83
-
84
- doubleValue?: string;
85
-
86
- booleanValue?: string;
87
- }
88
-
89
- export interface AssetPropertyValue {
90
-
91
- value?: AssetPropertyVariant;
92
-
93
- timestamp?: AssetPropertyTimestamp;
94
-
95
- quality?: string;
96
- }
97
-
98
- export interface IotSiteWiseAction {
99
-
100
- entryId?: string;
101
-
102
- assetId?: string;
103
-
104
- propertyId?: string;
105
-
106
- propertyAlias?: string;
107
-
108
- propertyValue?: AssetPropertyValue;
109
- }
110
-
111
- export interface IotTopicPublishAction {
112
-
113
- mqttTopic: string | undefined;
114
-
115
- payload?: Payload;
116
- }
117
-
118
- export interface LambdaAction {
119
-
120
- functionArn: string | undefined;
121
-
122
- payload?: Payload;
123
- }
124
-
125
- export interface ResetTimerAction {
126
-
127
- timerName: string | undefined;
128
- }
129
-
130
- export interface SetTimerAction {
131
-
132
- timerName: string | undefined;
133
-
134
- seconds?: number;
135
-
136
- durationExpression?: string;
137
- }
138
-
139
- export interface SetVariableAction {
140
-
141
- variableName: string | undefined;
142
-
143
- value: string | undefined;
144
- }
145
-
146
- export interface SNSTopicPublishAction {
147
-
148
- targetArn: string | undefined;
149
-
150
- payload?: Payload;
151
- }
152
-
153
- export interface SqsAction {
154
-
155
- queueUrl: string | undefined;
156
-
157
- useBase64?: boolean;
158
-
159
- payload?: Payload;
160
- }
161
-
162
- export interface Action {
163
-
164
- setVariable?: SetVariableAction;
165
-
166
- sns?: SNSTopicPublishAction;
167
-
168
- iotTopicPublish?: IotTopicPublishAction;
169
-
170
- setTimer?: SetTimerAction;
171
-
172
- clearTimer?: ClearTimerAction;
173
-
174
- resetTimer?: ResetTimerAction;
175
-
176
- lambda?: LambdaAction;
177
-
178
- iotEvents?: IotEventsAction;
179
-
180
- sqs?: SqsAction;
181
-
182
- firehose?: FirehoseAction;
183
-
184
- dynamoDB?: DynamoDBAction;
185
-
186
- dynamoDBv2?: DynamoDBv2Action;
187
-
188
- iotSiteWise?: IotSiteWiseAction;
189
- }
190
-
191
- export interface AlarmAction {
192
-
193
- sns?: SNSTopicPublishAction;
194
-
195
- iotTopicPublish?: IotTopicPublishAction;
196
-
197
- lambda?: LambdaAction;
198
-
199
- iotEvents?: IotEventsAction;
200
-
201
- sqs?: SqsAction;
202
-
203
- firehose?: FirehoseAction;
204
-
205
- dynamoDB?: DynamoDBAction;
206
-
207
- dynamoDBv2?: DynamoDBv2Action;
208
-
209
- iotSiteWise?: IotSiteWiseAction;
210
- }
211
-
212
- export interface InitializationConfiguration {
213
-
214
- disabledOnInitialization: boolean | undefined;
215
- }
216
-
217
- export interface AlarmCapabilities {
218
-
219
- initializationConfiguration?: InitializationConfiguration;
220
-
221
- acknowledgeFlow?: AcknowledgeFlow;
222
- }
223
-
224
- export interface AlarmEventActions {
225
-
226
- alarmActions?: AlarmAction[];
227
- }
228
-
229
- export interface AlarmModelSummary {
230
-
231
- creationTime?: Date;
232
-
233
- alarmModelDescription?: string;
234
-
235
- alarmModelName?: string;
236
- }
237
- export declare enum AlarmModelVersionStatus {
238
- ACTIVATING = "ACTIVATING",
239
- ACTIVE = "ACTIVE",
240
- FAILED = "FAILED",
241
- INACTIVE = "INACTIVE"
242
- }
243
-
244
- export interface AlarmModelVersionSummary {
245
-
246
- alarmModelName?: string;
247
-
248
- alarmModelArn?: string;
249
-
250
- alarmModelVersion?: string;
251
-
252
- roleArn?: string;
253
-
254
- creationTime?: Date;
255
-
256
- lastUpdateTime?: Date;
257
-
258
- status?: AlarmModelVersionStatus | string;
259
-
260
- statusMessage?: string;
261
- }
262
-
263
- export interface NotificationTargetActions {
264
-
265
- lambdaAction?: LambdaAction;
266
- }
267
-
268
- export interface EmailContent {
269
-
270
- subject?: string;
271
-
272
- additionalMessage?: string;
273
- }
274
-
275
- export interface SSOIdentity {
276
-
277
- identityStoreId: string | undefined;
278
-
279
- userId?: string;
280
- }
281
-
282
- export interface RecipientDetail {
283
-
284
- ssoIdentity?: SSOIdentity;
285
- }
286
-
287
- export interface EmailRecipients {
288
-
289
- to?: RecipientDetail[];
290
- }
291
-
292
- export interface EmailConfiguration {
293
-
294
- from: string | undefined;
295
-
296
- content?: EmailContent;
297
-
298
- recipients: EmailRecipients | undefined;
299
- }
300
-
301
- export interface SMSConfiguration {
302
-
303
- senderId?: string;
304
-
305
- additionalMessage?: string;
306
-
307
- recipients: RecipientDetail[] | undefined;
308
- }
309
-
310
- export interface NotificationAction {
311
-
312
- action: NotificationTargetActions | undefined;
313
-
314
- smsConfigurations?: SMSConfiguration[];
315
-
316
- emailConfigurations?: EmailConfiguration[];
317
- }
318
-
319
- export interface AlarmNotification {
320
-
321
- notificationActions?: NotificationAction[];
322
- }
323
- export declare enum ComparisonOperator {
324
- EQUAL = "EQUAL",
325
- GREATER = "GREATER",
326
- GREATER_OR_EQUAL = "GREATER_OR_EQUAL",
327
- LESS = "LESS",
328
- LESS_OR_EQUAL = "LESS_OR_EQUAL",
329
- NOT_EQUAL = "NOT_EQUAL"
330
- }
331
-
332
- export interface SimpleRule {
333
-
334
- inputProperty: string | undefined;
335
-
336
- comparisonOperator: ComparisonOperator | string | undefined;
337
-
338
- threshold: string | undefined;
339
- }
340
-
341
- export interface AlarmRule {
342
-
343
- simpleRule?: SimpleRule;
344
- }
345
- export declare enum AnalysisResultLevel {
346
- ERROR = "ERROR",
347
- INFO = "INFO",
348
- WARNING = "WARNING"
349
- }
350
-
351
- export interface AnalysisResultLocation {
352
-
353
- path?: string;
354
- }
355
-
356
- export interface AnalysisResult {
357
-
358
- type?: string;
359
-
360
- level?: AnalysisResultLevel | string;
361
-
362
- message?: string;
363
-
364
- locations?: AnalysisResultLocation[];
365
- }
366
- export declare enum AnalysisStatus {
367
- COMPLETE = "COMPLETE",
368
- FAILED = "FAILED",
369
- RUNNING = "RUNNING"
370
- }
371
-
372
- export interface Attribute {
373
-
374
- jsonPath: string | undefined;
375
- }
376
-
377
- export interface Tag {
378
-
379
- key: string | undefined;
380
-
381
- value: string | undefined;
382
- }
383
- export interface CreateAlarmModelRequest {
384
-
385
- alarmModelName: string | undefined;
386
-
387
- alarmModelDescription?: string;
388
-
389
- roleArn: string | undefined;
390
-
391
- tags?: Tag[];
392
-
393
- key?: string;
394
-
395
- severity?: number;
396
-
397
- alarmRule: AlarmRule | undefined;
398
-
399
- alarmNotification?: AlarmNotification;
400
-
401
- alarmEventActions?: AlarmEventActions;
402
-
403
- alarmCapabilities?: AlarmCapabilities;
404
- }
405
- export interface CreateAlarmModelResponse {
406
-
407
- creationTime?: Date;
408
-
409
- alarmModelArn?: string;
410
-
411
- alarmModelVersion?: string;
412
-
413
- lastUpdateTime?: Date;
414
-
415
- status?: AlarmModelVersionStatus | string;
416
- }
417
-
418
- export declare class InternalFailureException extends __BaseException {
419
- readonly name: "InternalFailureException";
420
- readonly $fault: "server";
421
-
422
- constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
423
- }
424
-
425
- export declare class InvalidRequestException extends __BaseException {
426
- readonly name: "InvalidRequestException";
427
- readonly $fault: "client";
428
-
429
- constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
430
- }
431
-
432
- export declare class LimitExceededException extends __BaseException {
433
- readonly name: "LimitExceededException";
434
- readonly $fault: "client";
435
-
436
- constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
437
- }
438
-
439
- export declare class ResourceAlreadyExistsException extends __BaseException {
440
- readonly name: "ResourceAlreadyExistsException";
441
- readonly $fault: "client";
442
-
443
- resourceId?: string;
444
-
445
- resourceArn?: string;
446
-
447
- constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
448
- }
449
-
450
- export declare class ResourceInUseException extends __BaseException {
451
- readonly name: "ResourceInUseException";
452
- readonly $fault: "client";
453
-
454
- constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
455
- }
456
-
457
- export declare class ServiceUnavailableException extends __BaseException {
458
- readonly name: "ServiceUnavailableException";
459
- readonly $fault: "server";
460
-
461
- constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
462
- }
463
-
464
- export declare class ThrottlingException extends __BaseException {
465
- readonly name: "ThrottlingException";
466
- readonly $fault: "client";
467
-
468
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
469
- }
470
-
471
- export interface Event {
472
-
473
- eventName: string | undefined;
474
-
475
- condition?: string;
476
-
477
- actions?: Action[];
478
- }
479
-
480
- export interface OnEnterLifecycle {
481
-
482
- events?: Event[];
483
- }
484
-
485
- export interface OnExitLifecycle {
486
-
487
- events?: Event[];
488
- }
489
-
490
- export interface TransitionEvent {
491
-
492
- eventName: string | undefined;
493
-
494
- condition: string | undefined;
495
-
496
- actions?: Action[];
497
-
498
- nextState: string | undefined;
499
- }
500
-
501
- export interface OnInputLifecycle {
502
-
503
- events?: Event[];
504
-
505
- transitionEvents?: TransitionEvent[];
506
- }
507
-
508
- export interface State {
509
-
510
- stateName: string | undefined;
511
-
512
- onInput?: OnInputLifecycle;
513
-
514
- onEnter?: OnEnterLifecycle;
515
-
516
- onExit?: OnExitLifecycle;
517
- }
518
-
519
- export interface DetectorModelDefinition {
520
-
521
- states: State[] | undefined;
522
-
523
- initialStateName: string | undefined;
524
- }
525
- export declare enum EvaluationMethod {
526
- BATCH = "BATCH",
527
- SERIAL = "SERIAL"
528
- }
529
- export interface CreateDetectorModelRequest {
530
-
531
- detectorModelName: string | undefined;
532
-
533
- detectorModelDefinition: DetectorModelDefinition | undefined;
534
-
535
- detectorModelDescription?: string;
536
-
537
- key?: string;
538
-
539
- roleArn: string | undefined;
540
-
541
- tags?: Tag[];
542
-
543
- evaluationMethod?: EvaluationMethod | string;
544
- }
545
- export declare enum DetectorModelVersionStatus {
546
- ACTIVATING = "ACTIVATING",
547
- ACTIVE = "ACTIVE",
548
- DEPRECATED = "DEPRECATED",
549
- DRAFT = "DRAFT",
550
- FAILED = "FAILED",
551
- INACTIVE = "INACTIVE",
552
- PAUSED = "PAUSED"
553
- }
554
-
555
- export interface DetectorModelConfiguration {
556
-
557
- detectorModelName?: string;
558
-
559
- detectorModelVersion?: string;
560
-
561
- detectorModelDescription?: string;
562
-
563
- detectorModelArn?: string;
564
-
565
- roleArn?: string;
566
-
567
- creationTime?: Date;
568
-
569
- lastUpdateTime?: Date;
570
-
571
- status?: DetectorModelVersionStatus | string;
572
-
573
- key?: string;
574
-
575
- evaluationMethod?: EvaluationMethod | string;
576
- }
577
- export interface CreateDetectorModelResponse {
578
-
579
- detectorModelConfiguration?: DetectorModelConfiguration;
580
- }
581
-
582
- export interface InputDefinition {
583
-
584
- attributes: Attribute[] | undefined;
585
- }
586
- export interface CreateInputRequest {
587
-
588
- inputName: string | undefined;
589
-
590
- inputDescription?: string;
591
-
592
- inputDefinition: InputDefinition | undefined;
593
-
594
- tags?: Tag[];
595
- }
596
- export declare enum InputStatus {
597
- ACTIVE = "ACTIVE",
598
- CREATING = "CREATING",
599
- DELETING = "DELETING",
600
- UPDATING = "UPDATING"
601
- }
602
-
603
- export interface InputConfiguration {
604
-
605
- inputName: string | undefined;
606
-
607
- inputDescription?: string;
608
-
609
- inputArn: string | undefined;
610
-
611
- creationTime: Date | undefined;
612
-
613
- lastUpdateTime: Date | undefined;
614
-
615
- status: InputStatus | string | undefined;
616
- }
617
- export interface CreateInputResponse {
618
-
619
- inputConfiguration?: InputConfiguration;
620
- }
621
- export interface DeleteAlarmModelRequest {
622
-
623
- alarmModelName: string | undefined;
624
- }
625
- export interface DeleteAlarmModelResponse {
626
- }
627
-
628
- export declare class ResourceNotFoundException extends __BaseException {
629
- readonly name: "ResourceNotFoundException";
630
- readonly $fault: "client";
631
-
632
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
633
- }
634
- export interface DeleteDetectorModelRequest {
635
-
636
- detectorModelName: string | undefined;
637
- }
638
- export interface DeleteDetectorModelResponse {
639
- }
640
- export interface DeleteInputRequest {
641
-
642
- inputName: string | undefined;
643
- }
644
- export interface DeleteInputResponse {
645
- }
646
- export interface DescribeAlarmModelRequest {
647
-
648
- alarmModelName: string | undefined;
649
-
650
- alarmModelVersion?: string;
651
- }
652
- export interface DescribeAlarmModelResponse {
653
-
654
- creationTime?: Date;
655
-
656
- alarmModelArn?: string;
657
-
658
- alarmModelVersion?: string;
659
-
660
- lastUpdateTime?: Date;
661
-
662
- status?: AlarmModelVersionStatus | string;
663
-
664
- statusMessage?: string;
665
-
666
- alarmModelName?: string;
667
-
668
- alarmModelDescription?: string;
669
-
670
- roleArn?: string;
671
-
672
- key?: string;
673
-
674
- severity?: number;
675
-
676
- alarmRule?: AlarmRule;
677
-
678
- alarmNotification?: AlarmNotification;
679
-
680
- alarmEventActions?: AlarmEventActions;
681
-
682
- alarmCapabilities?: AlarmCapabilities;
683
- }
684
- export interface DescribeDetectorModelRequest {
685
-
686
- detectorModelName: string | undefined;
687
-
688
- detectorModelVersion?: string;
689
- }
690
-
691
- export interface DetectorModel {
692
-
693
- detectorModelDefinition?: DetectorModelDefinition;
694
-
695
- detectorModelConfiguration?: DetectorModelConfiguration;
696
- }
697
- export interface DescribeDetectorModelResponse {
698
-
699
- detectorModel?: DetectorModel;
700
- }
701
- export interface DescribeDetectorModelAnalysisRequest {
702
-
703
- analysisId: string | undefined;
704
- }
705
- export interface DescribeDetectorModelAnalysisResponse {
706
-
707
- status?: AnalysisStatus | string;
708
- }
709
- export interface DescribeInputRequest {
710
-
711
- inputName: string | undefined;
712
- }
713
-
714
- export interface Input {
715
-
716
- inputConfiguration?: InputConfiguration;
717
-
718
- inputDefinition?: InputDefinition;
719
- }
720
- export interface DescribeInputResponse {
721
-
722
- input?: Input;
723
- }
724
- export interface DescribeLoggingOptionsRequest {
725
- }
726
-
727
- export interface DetectorDebugOption {
728
-
729
- detectorModelName: string | undefined;
730
-
731
- keyValue?: string;
732
- }
733
- export declare enum LoggingLevel {
734
- DEBUG = "DEBUG",
735
- ERROR = "ERROR",
736
- INFO = "INFO"
737
- }
738
-
739
- export interface LoggingOptions {
740
-
741
- roleArn: string | undefined;
742
-
743
- level: LoggingLevel | string | undefined;
744
-
745
- enabled: boolean | undefined;
746
-
747
- detectorDebugOptions?: DetectorDebugOption[];
748
- }
749
- export interface DescribeLoggingOptionsResponse {
750
-
751
- loggingOptions?: LoggingOptions;
752
- }
753
-
754
- export declare class UnsupportedOperationException extends __BaseException {
755
- readonly name: "UnsupportedOperationException";
756
- readonly $fault: "server";
757
-
758
- constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
759
- }
760
-
761
- export interface DetectorModelSummary {
762
-
763
- detectorModelName?: string;
764
-
765
- detectorModelDescription?: string;
766
-
767
- creationTime?: Date;
768
- }
769
-
770
- export interface DetectorModelVersionSummary {
771
-
772
- detectorModelName?: string;
773
-
774
- detectorModelVersion?: string;
775
-
776
- detectorModelArn?: string;
777
-
778
- roleArn?: string;
779
-
780
- creationTime?: Date;
781
-
782
- lastUpdateTime?: Date;
783
-
784
- status?: DetectorModelVersionStatus | string;
785
-
786
- evaluationMethod?: EvaluationMethod | string;
787
- }
788
- export interface GetDetectorModelAnalysisResultsRequest {
789
-
790
- analysisId: string | undefined;
791
-
792
- nextToken?: string;
793
-
794
- maxResults?: number;
795
- }
796
- export interface GetDetectorModelAnalysisResultsResponse {
797
-
798
- analysisResults?: AnalysisResult[];
799
-
800
- nextToken?: string;
801
- }
802
-
803
- export interface IotEventsInputIdentifier {
804
-
805
- inputName: string | undefined;
806
- }
807
-
808
- export interface IotSiteWiseAssetModelPropertyIdentifier {
809
-
810
- assetModelId: string | undefined;
811
-
812
- propertyId: string | undefined;
813
- }
814
-
815
- export interface IotSiteWiseInputIdentifier {
816
-
817
- iotSiteWiseAssetModelPropertyIdentifier?: IotSiteWiseAssetModelPropertyIdentifier;
818
- }
819
-
820
- export interface InputIdentifier {
821
-
822
- iotEventsInputIdentifier?: IotEventsInputIdentifier;
823
-
824
- iotSiteWiseInputIdentifier?: IotSiteWiseInputIdentifier;
825
- }
826
-
827
- export interface InputSummary {
828
-
829
- inputName?: string;
830
-
831
- inputDescription?: string;
832
-
833
- inputArn?: string;
834
-
835
- creationTime?: Date;
836
-
837
- lastUpdateTime?: Date;
838
-
839
- status?: InputStatus | string;
840
- }
841
- export interface ListAlarmModelsRequest {
842
-
843
- nextToken?: string;
844
-
845
- maxResults?: number;
846
- }
847
- export interface ListAlarmModelsResponse {
848
-
849
- alarmModelSummaries?: AlarmModelSummary[];
850
-
851
- nextToken?: string;
852
- }
853
- export interface ListAlarmModelVersionsRequest {
854
-
855
- alarmModelName: string | undefined;
856
-
857
- nextToken?: string;
858
-
859
- maxResults?: number;
860
- }
861
- export interface ListAlarmModelVersionsResponse {
862
-
863
- alarmModelVersionSummaries?: AlarmModelVersionSummary[];
864
-
865
- nextToken?: string;
866
- }
867
- export interface ListDetectorModelsRequest {
868
-
869
- nextToken?: string;
870
-
871
- maxResults?: number;
872
- }
873
- export interface ListDetectorModelsResponse {
874
-
875
- detectorModelSummaries?: DetectorModelSummary[];
876
-
877
- nextToken?: string;
878
- }
879
- export interface ListDetectorModelVersionsRequest {
880
-
881
- detectorModelName: string | undefined;
882
-
883
- nextToken?: string;
884
-
885
- maxResults?: number;
886
- }
887
- export interface ListDetectorModelVersionsResponse {
888
-
889
- detectorModelVersionSummaries?: DetectorModelVersionSummary[];
890
-
891
- nextToken?: string;
892
- }
893
- export interface ListInputRoutingsRequest {
894
-
895
- inputIdentifier: InputIdentifier | undefined;
896
-
897
- maxResults?: number;
898
-
899
- nextToken?: string;
900
- }
901
-
902
- export interface RoutedResource {
903
-
904
- name?: string;
905
-
906
- arn?: string;
907
- }
908
- export interface ListInputRoutingsResponse {
909
-
910
- routedResources?: RoutedResource[];
911
-
912
- nextToken?: string;
913
- }
914
- export interface ListInputsRequest {
915
-
916
- nextToken?: string;
917
-
918
- maxResults?: number;
919
- }
920
- export interface ListInputsResponse {
921
-
922
- inputSummaries?: InputSummary[];
923
-
924
- nextToken?: string;
925
- }
926
- export interface ListTagsForResourceRequest {
927
-
928
- resourceArn: string | undefined;
929
- }
930
- export interface ListTagsForResourceResponse {
931
-
932
- tags?: Tag[];
933
- }
934
- export interface PutLoggingOptionsRequest {
935
-
936
- loggingOptions: LoggingOptions | undefined;
937
- }
938
- export interface StartDetectorModelAnalysisRequest {
939
-
940
- detectorModelDefinition: DetectorModelDefinition | undefined;
941
- }
942
- export interface StartDetectorModelAnalysisResponse {
943
-
944
- analysisId?: string;
945
- }
946
- export interface TagResourceRequest {
947
-
948
- resourceArn: string | undefined;
949
-
950
- tags: Tag[] | undefined;
951
- }
952
- export interface TagResourceResponse {
953
- }
954
- export interface UntagResourceRequest {
955
-
956
- resourceArn: string | undefined;
957
-
958
- tagKeys: string[] | undefined;
959
- }
960
- export interface UntagResourceResponse {
961
- }
962
- export interface UpdateAlarmModelRequest {
963
-
964
- alarmModelName: string | undefined;
965
-
966
- alarmModelDescription?: string;
967
-
968
- roleArn: string | undefined;
969
-
970
- severity?: number;
971
-
972
- alarmRule: AlarmRule | undefined;
973
-
974
- alarmNotification?: AlarmNotification;
975
-
976
- alarmEventActions?: AlarmEventActions;
977
-
978
- alarmCapabilities?: AlarmCapabilities;
979
- }
980
- export interface UpdateAlarmModelResponse {
981
-
982
- creationTime?: Date;
983
-
984
- alarmModelArn?: string;
985
-
986
- alarmModelVersion?: string;
987
-
988
- lastUpdateTime?: Date;
989
-
990
- status?: AlarmModelVersionStatus | string;
991
- }
992
- export interface UpdateDetectorModelRequest {
993
-
994
- detectorModelName: string | undefined;
995
-
996
- detectorModelDefinition: DetectorModelDefinition | undefined;
997
-
998
- detectorModelDescription?: string;
999
-
1000
- roleArn: string | undefined;
1001
-
1002
- evaluationMethod?: EvaluationMethod | string;
1003
- }
1004
- export interface UpdateDetectorModelResponse {
1005
-
1006
- detectorModelConfiguration?: DetectorModelConfiguration;
1007
- }
1008
- export interface UpdateInputRequest {
1009
-
1010
- inputName: string | undefined;
1011
-
1012
- inputDescription?: string;
1013
-
1014
- inputDefinition: InputDefinition | undefined;
1015
- }
1016
- export interface UpdateInputResponse {
1017
-
1018
- inputConfiguration?: InputConfiguration;
1019
- }
1020
-
1021
- export declare const AcknowledgeFlowFilterSensitiveLog: (obj: AcknowledgeFlow) => any;
1022
-
1023
- export declare const ClearTimerActionFilterSensitiveLog: (obj: ClearTimerAction) => any;
1024
-
1025
- export declare const PayloadFilterSensitiveLog: (obj: Payload) => any;
1026
-
1027
- export declare const DynamoDBActionFilterSensitiveLog: (obj: DynamoDBAction) => any;
1028
-
1029
- export declare const DynamoDBv2ActionFilterSensitiveLog: (obj: DynamoDBv2Action) => any;
1030
-
1031
- export declare const FirehoseActionFilterSensitiveLog: (obj: FirehoseAction) => any;
1032
-
1033
- export declare const IotEventsActionFilterSensitiveLog: (obj: IotEventsAction) => any;
1034
-
1035
- export declare const AssetPropertyTimestampFilterSensitiveLog: (obj: AssetPropertyTimestamp) => any;
1036
-
1037
- export declare const AssetPropertyVariantFilterSensitiveLog: (obj: AssetPropertyVariant) => any;
1038
-
1039
- export declare const AssetPropertyValueFilterSensitiveLog: (obj: AssetPropertyValue) => any;
1040
-
1041
- export declare const IotSiteWiseActionFilterSensitiveLog: (obj: IotSiteWiseAction) => any;
1042
-
1043
- export declare const IotTopicPublishActionFilterSensitiveLog: (obj: IotTopicPublishAction) => any;
1044
-
1045
- export declare const LambdaActionFilterSensitiveLog: (obj: LambdaAction) => any;
1046
-
1047
- export declare const ResetTimerActionFilterSensitiveLog: (obj: ResetTimerAction) => any;
1048
-
1049
- export declare const SetTimerActionFilterSensitiveLog: (obj: SetTimerAction) => any;
1050
-
1051
- export declare const SetVariableActionFilterSensitiveLog: (obj: SetVariableAction) => any;
1052
-
1053
- export declare const SNSTopicPublishActionFilterSensitiveLog: (obj: SNSTopicPublishAction) => any;
1054
-
1055
- export declare const SqsActionFilterSensitiveLog: (obj: SqsAction) => any;
1056
-
1057
- export declare const ActionFilterSensitiveLog: (obj: Action) => any;
1058
-
1059
- export declare const AlarmActionFilterSensitiveLog: (obj: AlarmAction) => any;
1060
-
1061
- export declare const InitializationConfigurationFilterSensitiveLog: (obj: InitializationConfiguration) => any;
1062
-
1063
- export declare const AlarmCapabilitiesFilterSensitiveLog: (obj: AlarmCapabilities) => any;
1064
-
1065
- export declare const AlarmEventActionsFilterSensitiveLog: (obj: AlarmEventActions) => any;
1066
-
1067
- export declare const AlarmModelSummaryFilterSensitiveLog: (obj: AlarmModelSummary) => any;
1068
-
1069
- export declare const AlarmModelVersionSummaryFilterSensitiveLog: (obj: AlarmModelVersionSummary) => any;
1070
-
1071
- export declare const NotificationTargetActionsFilterSensitiveLog: (obj: NotificationTargetActions) => any;
1072
-
1073
- export declare const EmailContentFilterSensitiveLog: (obj: EmailContent) => any;
1074
-
1075
- export declare const SSOIdentityFilterSensitiveLog: (obj: SSOIdentity) => any;
1076
-
1077
- export declare const RecipientDetailFilterSensitiveLog: (obj: RecipientDetail) => any;
1078
-
1079
- export declare const EmailRecipientsFilterSensitiveLog: (obj: EmailRecipients) => any;
1080
-
1081
- export declare const EmailConfigurationFilterSensitiveLog: (obj: EmailConfiguration) => any;
1082
-
1083
- export declare const SMSConfigurationFilterSensitiveLog: (obj: SMSConfiguration) => any;
1084
-
1085
- export declare const NotificationActionFilterSensitiveLog: (obj: NotificationAction) => any;
1086
-
1087
- export declare const AlarmNotificationFilterSensitiveLog: (obj: AlarmNotification) => any;
1088
-
1089
- export declare const SimpleRuleFilterSensitiveLog: (obj: SimpleRule) => any;
1090
-
1091
- export declare const AlarmRuleFilterSensitiveLog: (obj: AlarmRule) => any;
1092
-
1093
- export declare const AnalysisResultLocationFilterSensitiveLog: (obj: AnalysisResultLocation) => any;
1094
-
1095
- export declare const AnalysisResultFilterSensitiveLog: (obj: AnalysisResult) => any;
1096
-
1097
- export declare const AttributeFilterSensitiveLog: (obj: Attribute) => any;
1098
-
1099
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
1100
-
1101
- export declare const CreateAlarmModelRequestFilterSensitiveLog: (obj: CreateAlarmModelRequest) => any;
1102
-
1103
- export declare const CreateAlarmModelResponseFilterSensitiveLog: (obj: CreateAlarmModelResponse) => any;
1104
-
1105
- export declare const EventFilterSensitiveLog: (obj: Event) => any;
1106
-
1107
- export declare const OnEnterLifecycleFilterSensitiveLog: (obj: OnEnterLifecycle) => any;
1108
-
1109
- export declare const OnExitLifecycleFilterSensitiveLog: (obj: OnExitLifecycle) => any;
1110
-
1111
- export declare const TransitionEventFilterSensitiveLog: (obj: TransitionEvent) => any;
1112
-
1113
- export declare const OnInputLifecycleFilterSensitiveLog: (obj: OnInputLifecycle) => any;
1114
-
1115
- export declare const StateFilterSensitiveLog: (obj: State) => any;
1116
-
1117
- export declare const DetectorModelDefinitionFilterSensitiveLog: (obj: DetectorModelDefinition) => any;
1118
-
1119
- export declare const CreateDetectorModelRequestFilterSensitiveLog: (obj: CreateDetectorModelRequest) => any;
1120
-
1121
- export declare const DetectorModelConfigurationFilterSensitiveLog: (obj: DetectorModelConfiguration) => any;
1122
-
1123
- export declare const CreateDetectorModelResponseFilterSensitiveLog: (obj: CreateDetectorModelResponse) => any;
1124
-
1125
- export declare const InputDefinitionFilterSensitiveLog: (obj: InputDefinition) => any;
1126
-
1127
- export declare const CreateInputRequestFilterSensitiveLog: (obj: CreateInputRequest) => any;
1128
-
1129
- export declare const InputConfigurationFilterSensitiveLog: (obj: InputConfiguration) => any;
1130
-
1131
- export declare const CreateInputResponseFilterSensitiveLog: (obj: CreateInputResponse) => any;
1132
-
1133
- export declare const DeleteAlarmModelRequestFilterSensitiveLog: (obj: DeleteAlarmModelRequest) => any;
1134
-
1135
- export declare const DeleteAlarmModelResponseFilterSensitiveLog: (obj: DeleteAlarmModelResponse) => any;
1136
-
1137
- export declare const DeleteDetectorModelRequestFilterSensitiveLog: (obj: DeleteDetectorModelRequest) => any;
1138
-
1139
- export declare const DeleteDetectorModelResponseFilterSensitiveLog: (obj: DeleteDetectorModelResponse) => any;
1140
-
1141
- export declare const DeleteInputRequestFilterSensitiveLog: (obj: DeleteInputRequest) => any;
1142
-
1143
- export declare const DeleteInputResponseFilterSensitiveLog: (obj: DeleteInputResponse) => any;
1144
-
1145
- export declare const DescribeAlarmModelRequestFilterSensitiveLog: (obj: DescribeAlarmModelRequest) => any;
1146
-
1147
- export declare const DescribeAlarmModelResponseFilterSensitiveLog: (obj: DescribeAlarmModelResponse) => any;
1148
-
1149
- export declare const DescribeDetectorModelRequestFilterSensitiveLog: (obj: DescribeDetectorModelRequest) => any;
1150
-
1151
- export declare const DetectorModelFilterSensitiveLog: (obj: DetectorModel) => any;
1152
-
1153
- export declare const DescribeDetectorModelResponseFilterSensitiveLog: (obj: DescribeDetectorModelResponse) => any;
1154
-
1155
- export declare const DescribeDetectorModelAnalysisRequestFilterSensitiveLog: (obj: DescribeDetectorModelAnalysisRequest) => any;
1156
-
1157
- export declare const DescribeDetectorModelAnalysisResponseFilterSensitiveLog: (obj: DescribeDetectorModelAnalysisResponse) => any;
1158
-
1159
- export declare const DescribeInputRequestFilterSensitiveLog: (obj: DescribeInputRequest) => any;
1160
-
1161
- export declare const InputFilterSensitiveLog: (obj: Input) => any;
1162
-
1163
- export declare const DescribeInputResponseFilterSensitiveLog: (obj: DescribeInputResponse) => any;
1164
-
1165
- export declare const DescribeLoggingOptionsRequestFilterSensitiveLog: (obj: DescribeLoggingOptionsRequest) => any;
1166
-
1167
- export declare const DetectorDebugOptionFilterSensitiveLog: (obj: DetectorDebugOption) => any;
1168
-
1169
- export declare const LoggingOptionsFilterSensitiveLog: (obj: LoggingOptions) => any;
1170
-
1171
- export declare const DescribeLoggingOptionsResponseFilterSensitiveLog: (obj: DescribeLoggingOptionsResponse) => any;
1172
-
1173
- export declare const DetectorModelSummaryFilterSensitiveLog: (obj: DetectorModelSummary) => any;
1174
-
1175
- export declare const DetectorModelVersionSummaryFilterSensitiveLog: (obj: DetectorModelVersionSummary) => any;
1176
-
1177
- export declare const GetDetectorModelAnalysisResultsRequestFilterSensitiveLog: (obj: GetDetectorModelAnalysisResultsRequest) => any;
1178
-
1179
- export declare const GetDetectorModelAnalysisResultsResponseFilterSensitiveLog: (obj: GetDetectorModelAnalysisResultsResponse) => any;
1180
-
1181
- export declare const IotEventsInputIdentifierFilterSensitiveLog: (obj: IotEventsInputIdentifier) => any;
1182
-
1183
- export declare const IotSiteWiseAssetModelPropertyIdentifierFilterSensitiveLog: (obj: IotSiteWiseAssetModelPropertyIdentifier) => any;
1184
-
1185
- export declare const IotSiteWiseInputIdentifierFilterSensitiveLog: (obj: IotSiteWiseInputIdentifier) => any;
1186
-
1187
- export declare const InputIdentifierFilterSensitiveLog: (obj: InputIdentifier) => any;
1188
-
1189
- export declare const InputSummaryFilterSensitiveLog: (obj: InputSummary) => any;
1190
-
1191
- export declare const ListAlarmModelsRequestFilterSensitiveLog: (obj: ListAlarmModelsRequest) => any;
1192
-
1193
- export declare const ListAlarmModelsResponseFilterSensitiveLog: (obj: ListAlarmModelsResponse) => any;
1194
-
1195
- export declare const ListAlarmModelVersionsRequestFilterSensitiveLog: (obj: ListAlarmModelVersionsRequest) => any;
1196
-
1197
- export declare const ListAlarmModelVersionsResponseFilterSensitiveLog: (obj: ListAlarmModelVersionsResponse) => any;
1198
-
1199
- export declare const ListDetectorModelsRequestFilterSensitiveLog: (obj: ListDetectorModelsRequest) => any;
1200
-
1201
- export declare const ListDetectorModelsResponseFilterSensitiveLog: (obj: ListDetectorModelsResponse) => any;
1202
-
1203
- export declare const ListDetectorModelVersionsRequestFilterSensitiveLog: (obj: ListDetectorModelVersionsRequest) => any;
1204
-
1205
- export declare const ListDetectorModelVersionsResponseFilterSensitiveLog: (obj: ListDetectorModelVersionsResponse) => any;
1206
-
1207
- export declare const ListInputRoutingsRequestFilterSensitiveLog: (obj: ListInputRoutingsRequest) => any;
1208
-
1209
- export declare const RoutedResourceFilterSensitiveLog: (obj: RoutedResource) => any;
1210
-
1211
- export declare const ListInputRoutingsResponseFilterSensitiveLog: (obj: ListInputRoutingsResponse) => any;
1212
-
1213
- export declare const ListInputsRequestFilterSensitiveLog: (obj: ListInputsRequest) => any;
1214
-
1215
- export declare const ListInputsResponseFilterSensitiveLog: (obj: ListInputsResponse) => any;
1216
-
1217
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
1218
-
1219
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1220
-
1221
- export declare const PutLoggingOptionsRequestFilterSensitiveLog: (obj: PutLoggingOptionsRequest) => any;
1222
-
1223
- export declare const StartDetectorModelAnalysisRequestFilterSensitiveLog: (obj: StartDetectorModelAnalysisRequest) => any;
1224
-
1225
- export declare const StartDetectorModelAnalysisResponseFilterSensitiveLog: (obj: StartDetectorModelAnalysisResponse) => any;
1226
-
1227
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
1228
-
1229
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
1230
-
1231
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
1232
-
1233
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
1234
-
1235
- export declare const UpdateAlarmModelRequestFilterSensitiveLog: (obj: UpdateAlarmModelRequest) => any;
1236
-
1237
- export declare const UpdateAlarmModelResponseFilterSensitiveLog: (obj: UpdateAlarmModelResponse) => any;
1238
-
1239
- export declare const UpdateDetectorModelRequestFilterSensitiveLog: (obj: UpdateDetectorModelRequest) => any;
1240
-
1241
- export declare const UpdateDetectorModelResponseFilterSensitiveLog: (obj: UpdateDetectorModelResponse) => any;
1242
-
1243
- export declare const UpdateInputRequestFilterSensitiveLog: (obj: UpdateInputRequest) => any;
1244
-
1245
- export declare const UpdateInputResponseFilterSensitiveLog: (obj: UpdateInputResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { IoTEventsServiceException as __BaseException } from "./IoTEventsServiceException";
3
+
4
+ export interface AcknowledgeFlow {
5
+ enabled: boolean | undefined;
6
+ }
7
+
8
+ export interface ClearTimerAction {
9
+ timerName: string | undefined;
10
+ }
11
+ export declare enum PayloadType {
12
+ JSON = "JSON",
13
+ STRING = "STRING",
14
+ }
15
+
16
+ export interface Payload {
17
+ contentExpression: string | undefined;
18
+
19
+ type: PayloadType | string | undefined;
20
+ }
21
+
22
+ export interface DynamoDBAction {
23
+ hashKeyType?: string;
24
+
25
+ hashKeyField: string | undefined;
26
+
27
+ hashKeyValue: string | undefined;
28
+
29
+ rangeKeyType?: string;
30
+
31
+ rangeKeyField?: string;
32
+
33
+ rangeKeyValue?: string;
34
+
35
+ operation?: string;
36
+
37
+ payloadField?: string;
38
+
39
+ tableName: string | undefined;
40
+
41
+ payload?: Payload;
42
+ }
43
+
44
+ export interface DynamoDBv2Action {
45
+ tableName: string | undefined;
46
+
47
+ payload?: Payload;
48
+ }
49
+
50
+ export interface FirehoseAction {
51
+ deliveryStreamName: string | undefined;
52
+
53
+ separator?: string;
54
+
55
+ payload?: Payload;
56
+ }
57
+
58
+ export interface IotEventsAction {
59
+ inputName: string | undefined;
60
+
61
+ payload?: Payload;
62
+ }
63
+
64
+ export interface AssetPropertyTimestamp {
65
+ timeInSeconds: string | undefined;
66
+
67
+ offsetInNanos?: string;
68
+ }
69
+
70
+ export interface AssetPropertyVariant {
71
+ stringValue?: string;
72
+
73
+ integerValue?: string;
74
+
75
+ doubleValue?: string;
76
+
77
+ booleanValue?: string;
78
+ }
79
+
80
+ export interface AssetPropertyValue {
81
+ value?: AssetPropertyVariant;
82
+
83
+ timestamp?: AssetPropertyTimestamp;
84
+
85
+ quality?: string;
86
+ }
87
+
88
+ export interface IotSiteWiseAction {
89
+ entryId?: string;
90
+
91
+ assetId?: string;
92
+
93
+ propertyId?: string;
94
+
95
+ propertyAlias?: string;
96
+
97
+ propertyValue?: AssetPropertyValue;
98
+ }
99
+
100
+ export interface IotTopicPublishAction {
101
+ mqttTopic: string | undefined;
102
+
103
+ payload?: Payload;
104
+ }
105
+
106
+ export interface LambdaAction {
107
+ functionArn: string | undefined;
108
+
109
+ payload?: Payload;
110
+ }
111
+
112
+ export interface ResetTimerAction {
113
+ timerName: string | undefined;
114
+ }
115
+
116
+ export interface SetTimerAction {
117
+ timerName: string | undefined;
118
+
119
+ seconds?: number;
120
+
121
+ durationExpression?: string;
122
+ }
123
+
124
+ export interface SetVariableAction {
125
+ variableName: string | undefined;
126
+
127
+ value: string | undefined;
128
+ }
129
+
130
+ export interface SNSTopicPublishAction {
131
+ targetArn: string | undefined;
132
+
133
+ payload?: Payload;
134
+ }
135
+
136
+ export interface SqsAction {
137
+ queueUrl: string | undefined;
138
+
139
+ useBase64?: boolean;
140
+
141
+ payload?: Payload;
142
+ }
143
+
144
+ export interface Action {
145
+ setVariable?: SetVariableAction;
146
+
147
+ sns?: SNSTopicPublishAction;
148
+
149
+ iotTopicPublish?: IotTopicPublishAction;
150
+
151
+ setTimer?: SetTimerAction;
152
+
153
+ clearTimer?: ClearTimerAction;
154
+
155
+ resetTimer?: ResetTimerAction;
156
+
157
+ lambda?: LambdaAction;
158
+
159
+ iotEvents?: IotEventsAction;
160
+
161
+ sqs?: SqsAction;
162
+
163
+ firehose?: FirehoseAction;
164
+
165
+ dynamoDB?: DynamoDBAction;
166
+
167
+ dynamoDBv2?: DynamoDBv2Action;
168
+
169
+ iotSiteWise?: IotSiteWiseAction;
170
+ }
171
+
172
+ export interface AlarmAction {
173
+ sns?: SNSTopicPublishAction;
174
+
175
+ iotTopicPublish?: IotTopicPublishAction;
176
+
177
+ lambda?: LambdaAction;
178
+
179
+ iotEvents?: IotEventsAction;
180
+
181
+ sqs?: SqsAction;
182
+
183
+ firehose?: FirehoseAction;
184
+
185
+ dynamoDB?: DynamoDBAction;
186
+
187
+ dynamoDBv2?: DynamoDBv2Action;
188
+
189
+ iotSiteWise?: IotSiteWiseAction;
190
+ }
191
+
192
+ export interface InitializationConfiguration {
193
+ disabledOnInitialization: boolean | undefined;
194
+ }
195
+
196
+ export interface AlarmCapabilities {
197
+ initializationConfiguration?: InitializationConfiguration;
198
+
199
+ acknowledgeFlow?: AcknowledgeFlow;
200
+ }
201
+
202
+ export interface AlarmEventActions {
203
+ alarmActions?: AlarmAction[];
204
+ }
205
+
206
+ export interface AlarmModelSummary {
207
+ creationTime?: Date;
208
+
209
+ alarmModelDescription?: string;
210
+
211
+ alarmModelName?: string;
212
+ }
213
+ export declare enum AlarmModelVersionStatus {
214
+ ACTIVATING = "ACTIVATING",
215
+ ACTIVE = "ACTIVE",
216
+ FAILED = "FAILED",
217
+ INACTIVE = "INACTIVE",
218
+ }
219
+
220
+ export interface AlarmModelVersionSummary {
221
+ alarmModelName?: string;
222
+
223
+ alarmModelArn?: string;
224
+
225
+ alarmModelVersion?: string;
226
+
227
+ roleArn?: string;
228
+
229
+ creationTime?: Date;
230
+
231
+ lastUpdateTime?: Date;
232
+
233
+ status?: AlarmModelVersionStatus | string;
234
+
235
+ statusMessage?: string;
236
+ }
237
+
238
+ export interface NotificationTargetActions {
239
+ lambdaAction?: LambdaAction;
240
+ }
241
+
242
+ export interface EmailContent {
243
+ subject?: string;
244
+
245
+ additionalMessage?: string;
246
+ }
247
+
248
+ export interface SSOIdentity {
249
+ identityStoreId: string | undefined;
250
+
251
+ userId?: string;
252
+ }
253
+
254
+ export interface RecipientDetail {
255
+ ssoIdentity?: SSOIdentity;
256
+ }
257
+
258
+ export interface EmailRecipients {
259
+ to?: RecipientDetail[];
260
+ }
261
+
262
+ export interface EmailConfiguration {
263
+ from: string | undefined;
264
+
265
+ content?: EmailContent;
266
+
267
+ recipients: EmailRecipients | undefined;
268
+ }
269
+
270
+ export interface SMSConfiguration {
271
+ senderId?: string;
272
+
273
+ additionalMessage?: string;
274
+
275
+ recipients: RecipientDetail[] | undefined;
276
+ }
277
+
278
+ export interface NotificationAction {
279
+ action: NotificationTargetActions | undefined;
280
+
281
+ smsConfigurations?: SMSConfiguration[];
282
+
283
+ emailConfigurations?: EmailConfiguration[];
284
+ }
285
+
286
+ export interface AlarmNotification {
287
+ notificationActions?: NotificationAction[];
288
+ }
289
+ export declare enum ComparisonOperator {
290
+ EQUAL = "EQUAL",
291
+ GREATER = "GREATER",
292
+ GREATER_OR_EQUAL = "GREATER_OR_EQUAL",
293
+ LESS = "LESS",
294
+ LESS_OR_EQUAL = "LESS_OR_EQUAL",
295
+ NOT_EQUAL = "NOT_EQUAL",
296
+ }
297
+
298
+ export interface SimpleRule {
299
+ inputProperty: string | undefined;
300
+
301
+ comparisonOperator: ComparisonOperator | string | undefined;
302
+
303
+ threshold: string | undefined;
304
+ }
305
+
306
+ export interface AlarmRule {
307
+ simpleRule?: SimpleRule;
308
+ }
309
+ export declare enum AnalysisResultLevel {
310
+ ERROR = "ERROR",
311
+ INFO = "INFO",
312
+ WARNING = "WARNING",
313
+ }
314
+
315
+ export interface AnalysisResultLocation {
316
+ path?: string;
317
+ }
318
+
319
+ export interface AnalysisResult {
320
+ type?: string;
321
+
322
+ level?: AnalysisResultLevel | string;
323
+
324
+ message?: string;
325
+
326
+ locations?: AnalysisResultLocation[];
327
+ }
328
+ export declare enum AnalysisStatus {
329
+ COMPLETE = "COMPLETE",
330
+ FAILED = "FAILED",
331
+ RUNNING = "RUNNING",
332
+ }
333
+
334
+ export interface Attribute {
335
+ jsonPath: string | undefined;
336
+ }
337
+
338
+ export interface Tag {
339
+ key: string | undefined;
340
+
341
+ value: string | undefined;
342
+ }
343
+ export interface CreateAlarmModelRequest {
344
+ alarmModelName: string | undefined;
345
+
346
+ alarmModelDescription?: string;
347
+
348
+ roleArn: string | undefined;
349
+
350
+ tags?: Tag[];
351
+
352
+ key?: string;
353
+
354
+ severity?: number;
355
+
356
+ alarmRule: AlarmRule | undefined;
357
+
358
+ alarmNotification?: AlarmNotification;
359
+
360
+ alarmEventActions?: AlarmEventActions;
361
+
362
+ alarmCapabilities?: AlarmCapabilities;
363
+ }
364
+ export interface CreateAlarmModelResponse {
365
+ creationTime?: Date;
366
+
367
+ alarmModelArn?: string;
368
+
369
+ alarmModelVersion?: string;
370
+
371
+ lastUpdateTime?: Date;
372
+
373
+ status?: AlarmModelVersionStatus | string;
374
+ }
375
+
376
+ export declare class InternalFailureException extends __BaseException {
377
+ readonly name: "InternalFailureException";
378
+ readonly $fault: "server";
379
+
380
+ constructor(
381
+ opts: __ExceptionOptionType<InternalFailureException, __BaseException>
382
+ );
383
+ }
384
+
385
+ export declare class InvalidRequestException extends __BaseException {
386
+ readonly name: "InvalidRequestException";
387
+ readonly $fault: "client";
388
+
389
+ constructor(
390
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
391
+ );
392
+ }
393
+
394
+ export declare class LimitExceededException extends __BaseException {
395
+ readonly name: "LimitExceededException";
396
+ readonly $fault: "client";
397
+
398
+ constructor(
399
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
400
+ );
401
+ }
402
+
403
+ export declare class ResourceAlreadyExistsException extends __BaseException {
404
+ readonly name: "ResourceAlreadyExistsException";
405
+ readonly $fault: "client";
406
+
407
+ resourceId?: string;
408
+
409
+ resourceArn?: string;
410
+
411
+ constructor(
412
+ opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
413
+ );
414
+ }
415
+
416
+ export declare class ResourceInUseException extends __BaseException {
417
+ readonly name: "ResourceInUseException";
418
+ readonly $fault: "client";
419
+
420
+ constructor(
421
+ opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
422
+ );
423
+ }
424
+
425
+ export declare class ServiceUnavailableException extends __BaseException {
426
+ readonly name: "ServiceUnavailableException";
427
+ readonly $fault: "server";
428
+
429
+ constructor(
430
+ opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
431
+ );
432
+ }
433
+
434
+ export declare class ThrottlingException extends __BaseException {
435
+ readonly name: "ThrottlingException";
436
+ readonly $fault: "client";
437
+
438
+ constructor(
439
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
440
+ );
441
+ }
442
+
443
+ export interface Event {
444
+ eventName: string | undefined;
445
+
446
+ condition?: string;
447
+
448
+ actions?: Action[];
449
+ }
450
+
451
+ export interface OnEnterLifecycle {
452
+ events?: Event[];
453
+ }
454
+
455
+ export interface OnExitLifecycle {
456
+ events?: Event[];
457
+ }
458
+
459
+ export interface TransitionEvent {
460
+ eventName: string | undefined;
461
+
462
+ condition: string | undefined;
463
+
464
+ actions?: Action[];
465
+
466
+ nextState: string | undefined;
467
+ }
468
+
469
+ export interface OnInputLifecycle {
470
+ events?: Event[];
471
+
472
+ transitionEvents?: TransitionEvent[];
473
+ }
474
+
475
+ export interface State {
476
+ stateName: string | undefined;
477
+
478
+ onInput?: OnInputLifecycle;
479
+
480
+ onEnter?: OnEnterLifecycle;
481
+
482
+ onExit?: OnExitLifecycle;
483
+ }
484
+
485
+ export interface DetectorModelDefinition {
486
+ states: State[] | undefined;
487
+
488
+ initialStateName: string | undefined;
489
+ }
490
+ export declare enum EvaluationMethod {
491
+ BATCH = "BATCH",
492
+ SERIAL = "SERIAL",
493
+ }
494
+ export interface CreateDetectorModelRequest {
495
+ detectorModelName: string | undefined;
496
+
497
+ detectorModelDefinition: DetectorModelDefinition | undefined;
498
+
499
+ detectorModelDescription?: string;
500
+
501
+ key?: string;
502
+
503
+ roleArn: string | undefined;
504
+
505
+ tags?: Tag[];
506
+
507
+ evaluationMethod?: EvaluationMethod | string;
508
+ }
509
+ export declare enum DetectorModelVersionStatus {
510
+ ACTIVATING = "ACTIVATING",
511
+ ACTIVE = "ACTIVE",
512
+ DEPRECATED = "DEPRECATED",
513
+ DRAFT = "DRAFT",
514
+ FAILED = "FAILED",
515
+ INACTIVE = "INACTIVE",
516
+ PAUSED = "PAUSED",
517
+ }
518
+
519
+ export interface DetectorModelConfiguration {
520
+ detectorModelName?: string;
521
+
522
+ detectorModelVersion?: string;
523
+
524
+ detectorModelDescription?: string;
525
+
526
+ detectorModelArn?: string;
527
+
528
+ roleArn?: string;
529
+
530
+ creationTime?: Date;
531
+
532
+ lastUpdateTime?: Date;
533
+
534
+ status?: DetectorModelVersionStatus | string;
535
+
536
+ key?: string;
537
+
538
+ evaluationMethod?: EvaluationMethod | string;
539
+ }
540
+ export interface CreateDetectorModelResponse {
541
+ detectorModelConfiguration?: DetectorModelConfiguration;
542
+ }
543
+
544
+ export interface InputDefinition {
545
+ attributes: Attribute[] | undefined;
546
+ }
547
+ export interface CreateInputRequest {
548
+ inputName: string | undefined;
549
+
550
+ inputDescription?: string;
551
+
552
+ inputDefinition: InputDefinition | undefined;
553
+
554
+ tags?: Tag[];
555
+ }
556
+ export declare enum InputStatus {
557
+ ACTIVE = "ACTIVE",
558
+ CREATING = "CREATING",
559
+ DELETING = "DELETING",
560
+ UPDATING = "UPDATING",
561
+ }
562
+
563
+ export interface InputConfiguration {
564
+ inputName: string | undefined;
565
+
566
+ inputDescription?: string;
567
+
568
+ inputArn: string | undefined;
569
+
570
+ creationTime: Date | undefined;
571
+
572
+ lastUpdateTime: Date | undefined;
573
+
574
+ status: InputStatus | string | undefined;
575
+ }
576
+ export interface CreateInputResponse {
577
+ inputConfiguration?: InputConfiguration;
578
+ }
579
+ export interface DeleteAlarmModelRequest {
580
+ alarmModelName: string | undefined;
581
+ }
582
+ export interface DeleteAlarmModelResponse {}
583
+
584
+ export declare class ResourceNotFoundException extends __BaseException {
585
+ readonly name: "ResourceNotFoundException";
586
+ readonly $fault: "client";
587
+
588
+ constructor(
589
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
590
+ );
591
+ }
592
+ export interface DeleteDetectorModelRequest {
593
+ detectorModelName: string | undefined;
594
+ }
595
+ export interface DeleteDetectorModelResponse {}
596
+ export interface DeleteInputRequest {
597
+ inputName: string | undefined;
598
+ }
599
+ export interface DeleteInputResponse {}
600
+ export interface DescribeAlarmModelRequest {
601
+ alarmModelName: string | undefined;
602
+
603
+ alarmModelVersion?: string;
604
+ }
605
+ export interface DescribeAlarmModelResponse {
606
+ creationTime?: Date;
607
+
608
+ alarmModelArn?: string;
609
+
610
+ alarmModelVersion?: string;
611
+
612
+ lastUpdateTime?: Date;
613
+
614
+ status?: AlarmModelVersionStatus | string;
615
+
616
+ statusMessage?: string;
617
+
618
+ alarmModelName?: string;
619
+
620
+ alarmModelDescription?: string;
621
+
622
+ roleArn?: string;
623
+
624
+ key?: string;
625
+
626
+ severity?: number;
627
+
628
+ alarmRule?: AlarmRule;
629
+
630
+ alarmNotification?: AlarmNotification;
631
+
632
+ alarmEventActions?: AlarmEventActions;
633
+
634
+ alarmCapabilities?: AlarmCapabilities;
635
+ }
636
+ export interface DescribeDetectorModelRequest {
637
+ detectorModelName: string | undefined;
638
+
639
+ detectorModelVersion?: string;
640
+ }
641
+
642
+ export interface DetectorModel {
643
+ detectorModelDefinition?: DetectorModelDefinition;
644
+
645
+ detectorModelConfiguration?: DetectorModelConfiguration;
646
+ }
647
+ export interface DescribeDetectorModelResponse {
648
+ detectorModel?: DetectorModel;
649
+ }
650
+ export interface DescribeDetectorModelAnalysisRequest {
651
+ analysisId: string | undefined;
652
+ }
653
+ export interface DescribeDetectorModelAnalysisResponse {
654
+ status?: AnalysisStatus | string;
655
+ }
656
+ export interface DescribeInputRequest {
657
+ inputName: string | undefined;
658
+ }
659
+
660
+ export interface Input {
661
+ inputConfiguration?: InputConfiguration;
662
+
663
+ inputDefinition?: InputDefinition;
664
+ }
665
+ export interface DescribeInputResponse {
666
+ input?: Input;
667
+ }
668
+ export interface DescribeLoggingOptionsRequest {}
669
+
670
+ export interface DetectorDebugOption {
671
+ detectorModelName: string | undefined;
672
+
673
+ keyValue?: string;
674
+ }
675
+ export declare enum LoggingLevel {
676
+ DEBUG = "DEBUG",
677
+ ERROR = "ERROR",
678
+ INFO = "INFO",
679
+ }
680
+
681
+ export interface LoggingOptions {
682
+ roleArn: string | undefined;
683
+
684
+ level: LoggingLevel | string | undefined;
685
+
686
+ enabled: boolean | undefined;
687
+
688
+ detectorDebugOptions?: DetectorDebugOption[];
689
+ }
690
+ export interface DescribeLoggingOptionsResponse {
691
+ loggingOptions?: LoggingOptions;
692
+ }
693
+
694
+ export declare class UnsupportedOperationException extends __BaseException {
695
+ readonly name: "UnsupportedOperationException";
696
+ readonly $fault: "server";
697
+
698
+ constructor(
699
+ opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
700
+ );
701
+ }
702
+
703
+ export interface DetectorModelSummary {
704
+ detectorModelName?: string;
705
+
706
+ detectorModelDescription?: string;
707
+
708
+ creationTime?: Date;
709
+ }
710
+
711
+ export interface DetectorModelVersionSummary {
712
+ detectorModelName?: string;
713
+
714
+ detectorModelVersion?: string;
715
+
716
+ detectorModelArn?: string;
717
+
718
+ roleArn?: string;
719
+
720
+ creationTime?: Date;
721
+
722
+ lastUpdateTime?: Date;
723
+
724
+ status?: DetectorModelVersionStatus | string;
725
+
726
+ evaluationMethod?: EvaluationMethod | string;
727
+ }
728
+ export interface GetDetectorModelAnalysisResultsRequest {
729
+ analysisId: string | undefined;
730
+
731
+ nextToken?: string;
732
+
733
+ maxResults?: number;
734
+ }
735
+ export interface GetDetectorModelAnalysisResultsResponse {
736
+ analysisResults?: AnalysisResult[];
737
+
738
+ nextToken?: string;
739
+ }
740
+
741
+ export interface IotEventsInputIdentifier {
742
+ inputName: string | undefined;
743
+ }
744
+
745
+ export interface IotSiteWiseAssetModelPropertyIdentifier {
746
+ assetModelId: string | undefined;
747
+
748
+ propertyId: string | undefined;
749
+ }
750
+
751
+ export interface IotSiteWiseInputIdentifier {
752
+ iotSiteWiseAssetModelPropertyIdentifier?: IotSiteWiseAssetModelPropertyIdentifier;
753
+ }
754
+
755
+ export interface InputIdentifier {
756
+ iotEventsInputIdentifier?: IotEventsInputIdentifier;
757
+
758
+ iotSiteWiseInputIdentifier?: IotSiteWiseInputIdentifier;
759
+ }
760
+
761
+ export interface InputSummary {
762
+ inputName?: string;
763
+
764
+ inputDescription?: string;
765
+
766
+ inputArn?: string;
767
+
768
+ creationTime?: Date;
769
+
770
+ lastUpdateTime?: Date;
771
+
772
+ status?: InputStatus | string;
773
+ }
774
+ export interface ListAlarmModelsRequest {
775
+ nextToken?: string;
776
+
777
+ maxResults?: number;
778
+ }
779
+ export interface ListAlarmModelsResponse {
780
+ alarmModelSummaries?: AlarmModelSummary[];
781
+
782
+ nextToken?: string;
783
+ }
784
+ export interface ListAlarmModelVersionsRequest {
785
+ alarmModelName: string | undefined;
786
+
787
+ nextToken?: string;
788
+
789
+ maxResults?: number;
790
+ }
791
+ export interface ListAlarmModelVersionsResponse {
792
+ alarmModelVersionSummaries?: AlarmModelVersionSummary[];
793
+
794
+ nextToken?: string;
795
+ }
796
+ export interface ListDetectorModelsRequest {
797
+ nextToken?: string;
798
+
799
+ maxResults?: number;
800
+ }
801
+ export interface ListDetectorModelsResponse {
802
+ detectorModelSummaries?: DetectorModelSummary[];
803
+
804
+ nextToken?: string;
805
+ }
806
+ export interface ListDetectorModelVersionsRequest {
807
+ detectorModelName: string | undefined;
808
+
809
+ nextToken?: string;
810
+
811
+ maxResults?: number;
812
+ }
813
+ export interface ListDetectorModelVersionsResponse {
814
+ detectorModelVersionSummaries?: DetectorModelVersionSummary[];
815
+
816
+ nextToken?: string;
817
+ }
818
+ export interface ListInputRoutingsRequest {
819
+ inputIdentifier: InputIdentifier | undefined;
820
+
821
+ maxResults?: number;
822
+
823
+ nextToken?: string;
824
+ }
825
+
826
+ export interface RoutedResource {
827
+ name?: string;
828
+
829
+ arn?: string;
830
+ }
831
+ export interface ListInputRoutingsResponse {
832
+ routedResources?: RoutedResource[];
833
+
834
+ nextToken?: string;
835
+ }
836
+ export interface ListInputsRequest {
837
+ nextToken?: string;
838
+
839
+ maxResults?: number;
840
+ }
841
+ export interface ListInputsResponse {
842
+ inputSummaries?: InputSummary[];
843
+
844
+ nextToken?: string;
845
+ }
846
+ export interface ListTagsForResourceRequest {
847
+ resourceArn: string | undefined;
848
+ }
849
+ export interface ListTagsForResourceResponse {
850
+ tags?: Tag[];
851
+ }
852
+ export interface PutLoggingOptionsRequest {
853
+ loggingOptions: LoggingOptions | undefined;
854
+ }
855
+ export interface StartDetectorModelAnalysisRequest {
856
+ detectorModelDefinition: DetectorModelDefinition | undefined;
857
+ }
858
+ export interface StartDetectorModelAnalysisResponse {
859
+ analysisId?: string;
860
+ }
861
+ export interface TagResourceRequest {
862
+ resourceArn: string | undefined;
863
+
864
+ tags: Tag[] | undefined;
865
+ }
866
+ export interface TagResourceResponse {}
867
+ export interface UntagResourceRequest {
868
+ resourceArn: string | undefined;
869
+
870
+ tagKeys: string[] | undefined;
871
+ }
872
+ export interface UntagResourceResponse {}
873
+ export interface UpdateAlarmModelRequest {
874
+ alarmModelName: string | undefined;
875
+
876
+ alarmModelDescription?: string;
877
+
878
+ roleArn: string | undefined;
879
+
880
+ severity?: number;
881
+
882
+ alarmRule: AlarmRule | undefined;
883
+
884
+ alarmNotification?: AlarmNotification;
885
+
886
+ alarmEventActions?: AlarmEventActions;
887
+
888
+ alarmCapabilities?: AlarmCapabilities;
889
+ }
890
+ export interface UpdateAlarmModelResponse {
891
+ creationTime?: Date;
892
+
893
+ alarmModelArn?: string;
894
+
895
+ alarmModelVersion?: string;
896
+
897
+ lastUpdateTime?: Date;
898
+
899
+ status?: AlarmModelVersionStatus | string;
900
+ }
901
+ export interface UpdateDetectorModelRequest {
902
+ detectorModelName: string | undefined;
903
+
904
+ detectorModelDefinition: DetectorModelDefinition | undefined;
905
+
906
+ detectorModelDescription?: string;
907
+
908
+ roleArn: string | undefined;
909
+
910
+ evaluationMethod?: EvaluationMethod | string;
911
+ }
912
+ export interface UpdateDetectorModelResponse {
913
+ detectorModelConfiguration?: DetectorModelConfiguration;
914
+ }
915
+ export interface UpdateInputRequest {
916
+ inputName: string | undefined;
917
+
918
+ inputDescription?: string;
919
+
920
+ inputDefinition: InputDefinition | undefined;
921
+ }
922
+ export interface UpdateInputResponse {
923
+ inputConfiguration?: InputConfiguration;
924
+ }
925
+
926
+ export declare const AcknowledgeFlowFilterSensitiveLog: (
927
+ obj: AcknowledgeFlow
928
+ ) => any;
929
+
930
+ export declare const ClearTimerActionFilterSensitiveLog: (
931
+ obj: ClearTimerAction
932
+ ) => any;
933
+
934
+ export declare const PayloadFilterSensitiveLog: (obj: Payload) => any;
935
+
936
+ export declare const DynamoDBActionFilterSensitiveLog: (
937
+ obj: DynamoDBAction
938
+ ) => any;
939
+
940
+ export declare const DynamoDBv2ActionFilterSensitiveLog: (
941
+ obj: DynamoDBv2Action
942
+ ) => any;
943
+
944
+ export declare const FirehoseActionFilterSensitiveLog: (
945
+ obj: FirehoseAction
946
+ ) => any;
947
+
948
+ export declare const IotEventsActionFilterSensitiveLog: (
949
+ obj: IotEventsAction
950
+ ) => any;
951
+
952
+ export declare const AssetPropertyTimestampFilterSensitiveLog: (
953
+ obj: AssetPropertyTimestamp
954
+ ) => any;
955
+
956
+ export declare const AssetPropertyVariantFilterSensitiveLog: (
957
+ obj: AssetPropertyVariant
958
+ ) => any;
959
+
960
+ export declare const AssetPropertyValueFilterSensitiveLog: (
961
+ obj: AssetPropertyValue
962
+ ) => any;
963
+
964
+ export declare const IotSiteWiseActionFilterSensitiveLog: (
965
+ obj: IotSiteWiseAction
966
+ ) => any;
967
+
968
+ export declare const IotTopicPublishActionFilterSensitiveLog: (
969
+ obj: IotTopicPublishAction
970
+ ) => any;
971
+
972
+ export declare const LambdaActionFilterSensitiveLog: (obj: LambdaAction) => any;
973
+
974
+ export declare const ResetTimerActionFilterSensitiveLog: (
975
+ obj: ResetTimerAction
976
+ ) => any;
977
+
978
+ export declare const SetTimerActionFilterSensitiveLog: (
979
+ obj: SetTimerAction
980
+ ) => any;
981
+
982
+ export declare const SetVariableActionFilterSensitiveLog: (
983
+ obj: SetVariableAction
984
+ ) => any;
985
+
986
+ export declare const SNSTopicPublishActionFilterSensitiveLog: (
987
+ obj: SNSTopicPublishAction
988
+ ) => any;
989
+
990
+ export declare const SqsActionFilterSensitiveLog: (obj: SqsAction) => any;
991
+
992
+ export declare const ActionFilterSensitiveLog: (obj: Action) => any;
993
+
994
+ export declare const AlarmActionFilterSensitiveLog: (obj: AlarmAction) => any;
995
+
996
+ export declare const InitializationConfigurationFilterSensitiveLog: (
997
+ obj: InitializationConfiguration
998
+ ) => any;
999
+
1000
+ export declare const AlarmCapabilitiesFilterSensitiveLog: (
1001
+ obj: AlarmCapabilities
1002
+ ) => any;
1003
+
1004
+ export declare const AlarmEventActionsFilterSensitiveLog: (
1005
+ obj: AlarmEventActions
1006
+ ) => any;
1007
+
1008
+ export declare const AlarmModelSummaryFilterSensitiveLog: (
1009
+ obj: AlarmModelSummary
1010
+ ) => any;
1011
+
1012
+ export declare const AlarmModelVersionSummaryFilterSensitiveLog: (
1013
+ obj: AlarmModelVersionSummary
1014
+ ) => any;
1015
+
1016
+ export declare const NotificationTargetActionsFilterSensitiveLog: (
1017
+ obj: NotificationTargetActions
1018
+ ) => any;
1019
+
1020
+ export declare const EmailContentFilterSensitiveLog: (obj: EmailContent) => any;
1021
+
1022
+ export declare const SSOIdentityFilterSensitiveLog: (obj: SSOIdentity) => any;
1023
+
1024
+ export declare const RecipientDetailFilterSensitiveLog: (
1025
+ obj: RecipientDetail
1026
+ ) => any;
1027
+
1028
+ export declare const EmailRecipientsFilterSensitiveLog: (
1029
+ obj: EmailRecipients
1030
+ ) => any;
1031
+
1032
+ export declare const EmailConfigurationFilterSensitiveLog: (
1033
+ obj: EmailConfiguration
1034
+ ) => any;
1035
+
1036
+ export declare const SMSConfigurationFilterSensitiveLog: (
1037
+ obj: SMSConfiguration
1038
+ ) => any;
1039
+
1040
+ export declare const NotificationActionFilterSensitiveLog: (
1041
+ obj: NotificationAction
1042
+ ) => any;
1043
+
1044
+ export declare const AlarmNotificationFilterSensitiveLog: (
1045
+ obj: AlarmNotification
1046
+ ) => any;
1047
+
1048
+ export declare const SimpleRuleFilterSensitiveLog: (obj: SimpleRule) => any;
1049
+
1050
+ export declare const AlarmRuleFilterSensitiveLog: (obj: AlarmRule) => any;
1051
+
1052
+ export declare const AnalysisResultLocationFilterSensitiveLog: (
1053
+ obj: AnalysisResultLocation
1054
+ ) => any;
1055
+
1056
+ export declare const AnalysisResultFilterSensitiveLog: (
1057
+ obj: AnalysisResult
1058
+ ) => any;
1059
+
1060
+ export declare const AttributeFilterSensitiveLog: (obj: Attribute) => any;
1061
+
1062
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
1063
+
1064
+ export declare const CreateAlarmModelRequestFilterSensitiveLog: (
1065
+ obj: CreateAlarmModelRequest
1066
+ ) => any;
1067
+
1068
+ export declare const CreateAlarmModelResponseFilterSensitiveLog: (
1069
+ obj: CreateAlarmModelResponse
1070
+ ) => any;
1071
+
1072
+ export declare const EventFilterSensitiveLog: (obj: Event) => any;
1073
+
1074
+ export declare const OnEnterLifecycleFilterSensitiveLog: (
1075
+ obj: OnEnterLifecycle
1076
+ ) => any;
1077
+
1078
+ export declare const OnExitLifecycleFilterSensitiveLog: (
1079
+ obj: OnExitLifecycle
1080
+ ) => any;
1081
+
1082
+ export declare const TransitionEventFilterSensitiveLog: (
1083
+ obj: TransitionEvent
1084
+ ) => any;
1085
+
1086
+ export declare const OnInputLifecycleFilterSensitiveLog: (
1087
+ obj: OnInputLifecycle
1088
+ ) => any;
1089
+
1090
+ export declare const StateFilterSensitiveLog: (obj: State) => any;
1091
+
1092
+ export declare const DetectorModelDefinitionFilterSensitiveLog: (
1093
+ obj: DetectorModelDefinition
1094
+ ) => any;
1095
+
1096
+ export declare const CreateDetectorModelRequestFilterSensitiveLog: (
1097
+ obj: CreateDetectorModelRequest
1098
+ ) => any;
1099
+
1100
+ export declare const DetectorModelConfigurationFilterSensitiveLog: (
1101
+ obj: DetectorModelConfiguration
1102
+ ) => any;
1103
+
1104
+ export declare const CreateDetectorModelResponseFilterSensitiveLog: (
1105
+ obj: CreateDetectorModelResponse
1106
+ ) => any;
1107
+
1108
+ export declare const InputDefinitionFilterSensitiveLog: (
1109
+ obj: InputDefinition
1110
+ ) => any;
1111
+
1112
+ export declare const CreateInputRequestFilterSensitiveLog: (
1113
+ obj: CreateInputRequest
1114
+ ) => any;
1115
+
1116
+ export declare const InputConfigurationFilterSensitiveLog: (
1117
+ obj: InputConfiguration
1118
+ ) => any;
1119
+
1120
+ export declare const CreateInputResponseFilterSensitiveLog: (
1121
+ obj: CreateInputResponse
1122
+ ) => any;
1123
+
1124
+ export declare const DeleteAlarmModelRequestFilterSensitiveLog: (
1125
+ obj: DeleteAlarmModelRequest
1126
+ ) => any;
1127
+
1128
+ export declare const DeleteAlarmModelResponseFilterSensitiveLog: (
1129
+ obj: DeleteAlarmModelResponse
1130
+ ) => any;
1131
+
1132
+ export declare const DeleteDetectorModelRequestFilterSensitiveLog: (
1133
+ obj: DeleteDetectorModelRequest
1134
+ ) => any;
1135
+
1136
+ export declare const DeleteDetectorModelResponseFilterSensitiveLog: (
1137
+ obj: DeleteDetectorModelResponse
1138
+ ) => any;
1139
+
1140
+ export declare const DeleteInputRequestFilterSensitiveLog: (
1141
+ obj: DeleteInputRequest
1142
+ ) => any;
1143
+
1144
+ export declare const DeleteInputResponseFilterSensitiveLog: (
1145
+ obj: DeleteInputResponse
1146
+ ) => any;
1147
+
1148
+ export declare const DescribeAlarmModelRequestFilterSensitiveLog: (
1149
+ obj: DescribeAlarmModelRequest
1150
+ ) => any;
1151
+
1152
+ export declare const DescribeAlarmModelResponseFilterSensitiveLog: (
1153
+ obj: DescribeAlarmModelResponse
1154
+ ) => any;
1155
+
1156
+ export declare const DescribeDetectorModelRequestFilterSensitiveLog: (
1157
+ obj: DescribeDetectorModelRequest
1158
+ ) => any;
1159
+
1160
+ export declare const DetectorModelFilterSensitiveLog: (
1161
+ obj: DetectorModel
1162
+ ) => any;
1163
+
1164
+ export declare const DescribeDetectorModelResponseFilterSensitiveLog: (
1165
+ obj: DescribeDetectorModelResponse
1166
+ ) => any;
1167
+
1168
+ export declare const DescribeDetectorModelAnalysisRequestFilterSensitiveLog: (
1169
+ obj: DescribeDetectorModelAnalysisRequest
1170
+ ) => any;
1171
+
1172
+ export declare const DescribeDetectorModelAnalysisResponseFilterSensitiveLog: (
1173
+ obj: DescribeDetectorModelAnalysisResponse
1174
+ ) => any;
1175
+
1176
+ export declare const DescribeInputRequestFilterSensitiveLog: (
1177
+ obj: DescribeInputRequest
1178
+ ) => any;
1179
+
1180
+ export declare const InputFilterSensitiveLog: (obj: Input) => any;
1181
+
1182
+ export declare const DescribeInputResponseFilterSensitiveLog: (
1183
+ obj: DescribeInputResponse
1184
+ ) => any;
1185
+
1186
+ export declare const DescribeLoggingOptionsRequestFilterSensitiveLog: (
1187
+ obj: DescribeLoggingOptionsRequest
1188
+ ) => any;
1189
+
1190
+ export declare const DetectorDebugOptionFilterSensitiveLog: (
1191
+ obj: DetectorDebugOption
1192
+ ) => any;
1193
+
1194
+ export declare const LoggingOptionsFilterSensitiveLog: (
1195
+ obj: LoggingOptions
1196
+ ) => any;
1197
+
1198
+ export declare const DescribeLoggingOptionsResponseFilterSensitiveLog: (
1199
+ obj: DescribeLoggingOptionsResponse
1200
+ ) => any;
1201
+
1202
+ export declare const DetectorModelSummaryFilterSensitiveLog: (
1203
+ obj: DetectorModelSummary
1204
+ ) => any;
1205
+
1206
+ export declare const DetectorModelVersionSummaryFilterSensitiveLog: (
1207
+ obj: DetectorModelVersionSummary
1208
+ ) => any;
1209
+
1210
+ export declare const GetDetectorModelAnalysisResultsRequestFilterSensitiveLog: (
1211
+ obj: GetDetectorModelAnalysisResultsRequest
1212
+ ) => any;
1213
+
1214
+ export declare const GetDetectorModelAnalysisResultsResponseFilterSensitiveLog: (
1215
+ obj: GetDetectorModelAnalysisResultsResponse
1216
+ ) => any;
1217
+
1218
+ export declare const IotEventsInputIdentifierFilterSensitiveLog: (
1219
+ obj: IotEventsInputIdentifier
1220
+ ) => any;
1221
+
1222
+ export declare const IotSiteWiseAssetModelPropertyIdentifierFilterSensitiveLog: (
1223
+ obj: IotSiteWiseAssetModelPropertyIdentifier
1224
+ ) => any;
1225
+
1226
+ export declare const IotSiteWiseInputIdentifierFilterSensitiveLog: (
1227
+ obj: IotSiteWiseInputIdentifier
1228
+ ) => any;
1229
+
1230
+ export declare const InputIdentifierFilterSensitiveLog: (
1231
+ obj: InputIdentifier
1232
+ ) => any;
1233
+
1234
+ export declare const InputSummaryFilterSensitiveLog: (obj: InputSummary) => any;
1235
+
1236
+ export declare const ListAlarmModelsRequestFilterSensitiveLog: (
1237
+ obj: ListAlarmModelsRequest
1238
+ ) => any;
1239
+
1240
+ export declare const ListAlarmModelsResponseFilterSensitiveLog: (
1241
+ obj: ListAlarmModelsResponse
1242
+ ) => any;
1243
+
1244
+ export declare const ListAlarmModelVersionsRequestFilterSensitiveLog: (
1245
+ obj: ListAlarmModelVersionsRequest
1246
+ ) => any;
1247
+
1248
+ export declare const ListAlarmModelVersionsResponseFilterSensitiveLog: (
1249
+ obj: ListAlarmModelVersionsResponse
1250
+ ) => any;
1251
+
1252
+ export declare const ListDetectorModelsRequestFilterSensitiveLog: (
1253
+ obj: ListDetectorModelsRequest
1254
+ ) => any;
1255
+
1256
+ export declare const ListDetectorModelsResponseFilterSensitiveLog: (
1257
+ obj: ListDetectorModelsResponse
1258
+ ) => any;
1259
+
1260
+ export declare const ListDetectorModelVersionsRequestFilterSensitiveLog: (
1261
+ obj: ListDetectorModelVersionsRequest
1262
+ ) => any;
1263
+
1264
+ export declare const ListDetectorModelVersionsResponseFilterSensitiveLog: (
1265
+ obj: ListDetectorModelVersionsResponse
1266
+ ) => any;
1267
+
1268
+ export declare const ListInputRoutingsRequestFilterSensitiveLog: (
1269
+ obj: ListInputRoutingsRequest
1270
+ ) => any;
1271
+
1272
+ export declare const RoutedResourceFilterSensitiveLog: (
1273
+ obj: RoutedResource
1274
+ ) => any;
1275
+
1276
+ export declare const ListInputRoutingsResponseFilterSensitiveLog: (
1277
+ obj: ListInputRoutingsResponse
1278
+ ) => any;
1279
+
1280
+ export declare const ListInputsRequestFilterSensitiveLog: (
1281
+ obj: ListInputsRequest
1282
+ ) => any;
1283
+
1284
+ export declare const ListInputsResponseFilterSensitiveLog: (
1285
+ obj: ListInputsResponse
1286
+ ) => any;
1287
+
1288
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
1289
+ obj: ListTagsForResourceRequest
1290
+ ) => any;
1291
+
1292
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
1293
+ obj: ListTagsForResourceResponse
1294
+ ) => any;
1295
+
1296
+ export declare const PutLoggingOptionsRequestFilterSensitiveLog: (
1297
+ obj: PutLoggingOptionsRequest
1298
+ ) => any;
1299
+
1300
+ export declare const StartDetectorModelAnalysisRequestFilterSensitiveLog: (
1301
+ obj: StartDetectorModelAnalysisRequest
1302
+ ) => any;
1303
+
1304
+ export declare const StartDetectorModelAnalysisResponseFilterSensitiveLog: (
1305
+ obj: StartDetectorModelAnalysisResponse
1306
+ ) => any;
1307
+
1308
+ export declare const TagResourceRequestFilterSensitiveLog: (
1309
+ obj: TagResourceRequest
1310
+ ) => any;
1311
+
1312
+ export declare const TagResourceResponseFilterSensitiveLog: (
1313
+ obj: TagResourceResponse
1314
+ ) => any;
1315
+
1316
+ export declare const UntagResourceRequestFilterSensitiveLog: (
1317
+ obj: UntagResourceRequest
1318
+ ) => any;
1319
+
1320
+ export declare const UntagResourceResponseFilterSensitiveLog: (
1321
+ obj: UntagResourceResponse
1322
+ ) => any;
1323
+
1324
+ export declare const UpdateAlarmModelRequestFilterSensitiveLog: (
1325
+ obj: UpdateAlarmModelRequest
1326
+ ) => any;
1327
+
1328
+ export declare const UpdateAlarmModelResponseFilterSensitiveLog: (
1329
+ obj: UpdateAlarmModelResponse
1330
+ ) => any;
1331
+
1332
+ export declare const UpdateDetectorModelRequestFilterSensitiveLog: (
1333
+ obj: UpdateDetectorModelRequest
1334
+ ) => any;
1335
+
1336
+ export declare const UpdateDetectorModelResponseFilterSensitiveLog: (
1337
+ obj: UpdateDetectorModelResponse
1338
+ ) => any;
1339
+
1340
+ export declare const UpdateInputRequestFilterSensitiveLog: (
1341
+ obj: UpdateInputRequest
1342
+ ) => any;
1343
+
1344
+ export declare const UpdateInputResponseFilterSensitiveLog: (
1345
+ obj: UpdateInputResponse
1346
+ ) => any;