@aws-sdk/client-iot-events 3.131.0 → 3.142.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 (61) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/commands/CreateAlarmModelCommand.js +2 -2
  4. package/dist-cjs/commands/CreateDetectorModelCommand.js +2 -2
  5. package/dist-cjs/commands/CreateInputCommand.js +2 -2
  6. package/dist-cjs/commands/DeleteAlarmModelCommand.js +2 -2
  7. package/dist-cjs/commands/DeleteDetectorModelCommand.js +2 -2
  8. package/dist-cjs/commands/DeleteInputCommand.js +2 -2
  9. package/dist-cjs/commands/DescribeAlarmModelCommand.js +2 -2
  10. package/dist-cjs/commands/DescribeDetectorModelAnalysisCommand.js +2 -2
  11. package/dist-cjs/commands/DescribeDetectorModelCommand.js +2 -2
  12. package/dist-cjs/commands/DescribeInputCommand.js +2 -2
  13. package/dist-cjs/commands/DescribeLoggingOptionsCommand.js +2 -2
  14. package/dist-cjs/commands/GetDetectorModelAnalysisResultsCommand.js +2 -2
  15. package/dist-cjs/commands/ListAlarmModelVersionsCommand.js +2 -2
  16. package/dist-cjs/commands/ListAlarmModelsCommand.js +2 -2
  17. package/dist-cjs/commands/ListDetectorModelVersionsCommand.js +2 -2
  18. package/dist-cjs/commands/ListDetectorModelsCommand.js +2 -2
  19. package/dist-cjs/commands/ListInputRoutingsCommand.js +2 -2
  20. package/dist-cjs/commands/ListInputsCommand.js +2 -2
  21. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  22. package/dist-cjs/commands/PutLoggingOptionsCommand.js +1 -1
  23. package/dist-cjs/commands/StartDetectorModelAnalysisCommand.js +2 -2
  24. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  25. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  26. package/dist-cjs/commands/UpdateAlarmModelCommand.js +2 -2
  27. package/dist-cjs/commands/UpdateDetectorModelCommand.js +2 -2
  28. package/dist-cjs/commands/UpdateInputCommand.js +2 -2
  29. package/dist-cjs/models/models_0.js +455 -681
  30. package/dist-cjs/protocols/Aws_restJson1.js +331 -610
  31. package/dist-es/commands/CreateAlarmModelCommand.js +3 -3
  32. package/dist-es/commands/CreateDetectorModelCommand.js +3 -3
  33. package/dist-es/commands/CreateInputCommand.js +3 -3
  34. package/dist-es/commands/DeleteAlarmModelCommand.js +3 -3
  35. package/dist-es/commands/DeleteDetectorModelCommand.js +3 -3
  36. package/dist-es/commands/DeleteInputCommand.js +3 -3
  37. package/dist-es/commands/DescribeAlarmModelCommand.js +3 -3
  38. package/dist-es/commands/DescribeDetectorModelAnalysisCommand.js +3 -3
  39. package/dist-es/commands/DescribeDetectorModelCommand.js +3 -3
  40. package/dist-es/commands/DescribeInputCommand.js +3 -3
  41. package/dist-es/commands/DescribeLoggingOptionsCommand.js +3 -3
  42. package/dist-es/commands/GetDetectorModelAnalysisResultsCommand.js +3 -3
  43. package/dist-es/commands/ListAlarmModelVersionsCommand.js +3 -3
  44. package/dist-es/commands/ListAlarmModelsCommand.js +3 -3
  45. package/dist-es/commands/ListDetectorModelVersionsCommand.js +3 -3
  46. package/dist-es/commands/ListDetectorModelsCommand.js +3 -3
  47. package/dist-es/commands/ListInputRoutingsCommand.js +3 -3
  48. package/dist-es/commands/ListInputsCommand.js +3 -3
  49. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  50. package/dist-es/commands/PutLoggingOptionsCommand.js +2 -2
  51. package/dist-es/commands/StartDetectorModelAnalysisCommand.js +3 -3
  52. package/dist-es/commands/TagResourceCommand.js +3 -3
  53. package/dist-es/commands/UntagResourceCommand.js +3 -3
  54. package/dist-es/commands/UpdateAlarmModelCommand.js +3 -3
  55. package/dist-es/commands/UpdateDetectorModelCommand.js +3 -3
  56. package/dist-es/commands/UpdateInputCommand.js +3 -3
  57. package/dist-es/models/models_0.js +113 -452
  58. package/dist-es/protocols/Aws_restJson1.js +423 -595
  59. package/dist-types/models/models_0.d.ts +452 -678
  60. package/dist-types/ts3.4/models/models_0.d.ts +226 -452
  61. package/package.json +6 -6
@@ -5,19 +5,11 @@ export interface AcknowledgeFlow {
5
5
 
6
6
  enabled: boolean | undefined;
7
7
  }
8
- export declare namespace AcknowledgeFlow {
9
-
10
- const filterSensitiveLog: (obj: AcknowledgeFlow) => any;
11
- }
12
8
 
13
9
  export interface ClearTimerAction {
14
10
 
15
11
  timerName: string | undefined;
16
12
  }
17
- export declare namespace ClearTimerAction {
18
-
19
- const filterSensitiveLog: (obj: ClearTimerAction) => any;
20
- }
21
13
  export declare enum PayloadType {
22
14
  JSON = "JSON",
23
15
  STRING = "STRING"
@@ -29,10 +21,6 @@ export interface Payload {
29
21
 
30
22
  type: PayloadType | string | undefined;
31
23
  }
32
- export declare namespace Payload {
33
-
34
- const filterSensitiveLog: (obj: Payload) => any;
35
- }
36
24
 
37
25
  export interface DynamoDBAction {
38
26
 
@@ -56,10 +44,6 @@ export interface DynamoDBAction {
56
44
 
57
45
  payload?: Payload;
58
46
  }
59
- export declare namespace DynamoDBAction {
60
-
61
- const filterSensitiveLog: (obj: DynamoDBAction) => any;
62
- }
63
47
 
64
48
  export interface DynamoDBv2Action {
65
49
 
@@ -67,10 +51,6 @@ export interface DynamoDBv2Action {
67
51
 
68
52
  payload?: Payload;
69
53
  }
70
- export declare namespace DynamoDBv2Action {
71
-
72
- const filterSensitiveLog: (obj: DynamoDBv2Action) => any;
73
- }
74
54
 
75
55
  export interface FirehoseAction {
76
56
 
@@ -80,10 +60,6 @@ export interface FirehoseAction {
80
60
 
81
61
  payload?: Payload;
82
62
  }
83
- export declare namespace FirehoseAction {
84
-
85
- const filterSensitiveLog: (obj: FirehoseAction) => any;
86
- }
87
63
 
88
64
  export interface IotEventsAction {
89
65
 
@@ -91,10 +67,6 @@ export interface IotEventsAction {
91
67
 
92
68
  payload?: Payload;
93
69
  }
94
- export declare namespace IotEventsAction {
95
-
96
- const filterSensitiveLog: (obj: IotEventsAction) => any;
97
- }
98
70
 
99
71
  export interface AssetPropertyTimestamp {
100
72
 
@@ -102,10 +74,6 @@ export interface AssetPropertyTimestamp {
102
74
 
103
75
  offsetInNanos?: string;
104
76
  }
105
- export declare namespace AssetPropertyTimestamp {
106
-
107
- const filterSensitiveLog: (obj: AssetPropertyTimestamp) => any;
108
- }
109
77
 
110
78
  export interface AssetPropertyVariant {
111
79
 
@@ -117,10 +85,6 @@ export interface AssetPropertyVariant {
117
85
 
118
86
  booleanValue?: string;
119
87
  }
120
- export declare namespace AssetPropertyVariant {
121
-
122
- const filterSensitiveLog: (obj: AssetPropertyVariant) => any;
123
- }
124
88
 
125
89
  export interface AssetPropertyValue {
126
90
 
@@ -130,10 +94,6 @@ export interface AssetPropertyValue {
130
94
 
131
95
  quality?: string;
132
96
  }
133
- export declare namespace AssetPropertyValue {
134
-
135
- const filterSensitiveLog: (obj: AssetPropertyValue) => any;
136
- }
137
97
 
138
98
  export interface IotSiteWiseAction {
139
99
 
@@ -147,10 +107,6 @@ export interface IotSiteWiseAction {
147
107
 
148
108
  propertyValue?: AssetPropertyValue;
149
109
  }
150
- export declare namespace IotSiteWiseAction {
151
-
152
- const filterSensitiveLog: (obj: IotSiteWiseAction) => any;
153
- }
154
110
 
155
111
  export interface IotTopicPublishAction {
156
112
 
@@ -158,10 +114,6 @@ export interface IotTopicPublishAction {
158
114
 
159
115
  payload?: Payload;
160
116
  }
161
- export declare namespace IotTopicPublishAction {
162
-
163
- const filterSensitiveLog: (obj: IotTopicPublishAction) => any;
164
- }
165
117
 
166
118
  export interface LambdaAction {
167
119
 
@@ -169,19 +121,11 @@ export interface LambdaAction {
169
121
 
170
122
  payload?: Payload;
171
123
  }
172
- export declare namespace LambdaAction {
173
-
174
- const filterSensitiveLog: (obj: LambdaAction) => any;
175
- }
176
124
 
177
125
  export interface ResetTimerAction {
178
126
 
179
127
  timerName: string | undefined;
180
128
  }
181
- export declare namespace ResetTimerAction {
182
-
183
- const filterSensitiveLog: (obj: ResetTimerAction) => any;
184
- }
185
129
 
186
130
  export interface SetTimerAction {
187
131
 
@@ -191,10 +135,6 @@ export interface SetTimerAction {
191
135
 
192
136
  durationExpression?: string;
193
137
  }
194
- export declare namespace SetTimerAction {
195
-
196
- const filterSensitiveLog: (obj: SetTimerAction) => any;
197
- }
198
138
 
199
139
  export interface SetVariableAction {
200
140
 
@@ -202,10 +142,6 @@ export interface SetVariableAction {
202
142
 
203
143
  value: string | undefined;
204
144
  }
205
- export declare namespace SetVariableAction {
206
-
207
- const filterSensitiveLog: (obj: SetVariableAction) => any;
208
- }
209
145
 
210
146
  export interface SNSTopicPublishAction {
211
147
 
@@ -213,10 +149,6 @@ export interface SNSTopicPublishAction {
213
149
 
214
150
  payload?: Payload;
215
151
  }
216
- export declare namespace SNSTopicPublishAction {
217
-
218
- const filterSensitiveLog: (obj: SNSTopicPublishAction) => any;
219
- }
220
152
 
221
153
  export interface SqsAction {
222
154
 
@@ -226,10 +158,6 @@ export interface SqsAction {
226
158
 
227
159
  payload?: Payload;
228
160
  }
229
- export declare namespace SqsAction {
230
-
231
- const filterSensitiveLog: (obj: SqsAction) => any;
232
- }
233
161
 
234
162
  export interface Action {
235
163
 
@@ -259,10 +187,6 @@ export interface Action {
259
187
 
260
188
  iotSiteWise?: IotSiteWiseAction;
261
189
  }
262
- export declare namespace Action {
263
-
264
- const filterSensitiveLog: (obj: Action) => any;
265
- }
266
190
 
267
191
  export interface AlarmAction {
268
192
 
@@ -284,19 +208,11 @@ export interface AlarmAction {
284
208
 
285
209
  iotSiteWise?: IotSiteWiseAction;
286
210
  }
287
- export declare namespace AlarmAction {
288
-
289
- const filterSensitiveLog: (obj: AlarmAction) => any;
290
- }
291
211
 
292
212
  export interface InitializationConfiguration {
293
213
 
294
214
  disabledOnInitialization: boolean | undefined;
295
215
  }
296
- export declare namespace InitializationConfiguration {
297
-
298
- const filterSensitiveLog: (obj: InitializationConfiguration) => any;
299
- }
300
216
 
301
217
  export interface AlarmCapabilities {
302
218
 
@@ -304,19 +220,11 @@ export interface AlarmCapabilities {
304
220
 
305
221
  acknowledgeFlow?: AcknowledgeFlow;
306
222
  }
307
- export declare namespace AlarmCapabilities {
308
-
309
- const filterSensitiveLog: (obj: AlarmCapabilities) => any;
310
- }
311
223
 
312
224
  export interface AlarmEventActions {
313
225
 
314
226
  alarmActions?: AlarmAction[];
315
227
  }
316
- export declare namespace AlarmEventActions {
317
-
318
- const filterSensitiveLog: (obj: AlarmEventActions) => any;
319
- }
320
228
 
321
229
  export interface AlarmModelSummary {
322
230
 
@@ -326,10 +234,6 @@ export interface AlarmModelSummary {
326
234
 
327
235
  alarmModelName?: string;
328
236
  }
329
- export declare namespace AlarmModelSummary {
330
-
331
- const filterSensitiveLog: (obj: AlarmModelSummary) => any;
332
- }
333
237
  export declare enum AlarmModelVersionStatus {
334
238
  ACTIVATING = "ACTIVATING",
335
239
  ACTIVE = "ACTIVE",
@@ -355,19 +259,11 @@ export interface AlarmModelVersionSummary {
355
259
 
356
260
  statusMessage?: string;
357
261
  }
358
- export declare namespace AlarmModelVersionSummary {
359
-
360
- const filterSensitiveLog: (obj: AlarmModelVersionSummary) => any;
361
- }
362
262
 
363
263
  export interface NotificationTargetActions {
364
264
 
365
265
  lambdaAction?: LambdaAction;
366
266
  }
367
- export declare namespace NotificationTargetActions {
368
-
369
- const filterSensitiveLog: (obj: NotificationTargetActions) => any;
370
- }
371
267
 
372
268
  export interface EmailContent {
373
269
 
@@ -375,10 +271,6 @@ export interface EmailContent {
375
271
 
376
272
  additionalMessage?: string;
377
273
  }
378
- export declare namespace EmailContent {
379
-
380
- const filterSensitiveLog: (obj: EmailContent) => any;
381
- }
382
274
 
383
275
  export interface SSOIdentity {
384
276
 
@@ -386,28 +278,16 @@ export interface SSOIdentity {
386
278
 
387
279
  userId?: string;
388
280
  }
389
- export declare namespace SSOIdentity {
390
-
391
- const filterSensitiveLog: (obj: SSOIdentity) => any;
392
- }
393
281
 
394
282
  export interface RecipientDetail {
395
283
 
396
284
  ssoIdentity?: SSOIdentity;
397
285
  }
398
- export declare namespace RecipientDetail {
399
-
400
- const filterSensitiveLog: (obj: RecipientDetail) => any;
401
- }
402
286
 
403
287
  export interface EmailRecipients {
404
288
 
405
289
  to?: RecipientDetail[];
406
290
  }
407
- export declare namespace EmailRecipients {
408
-
409
- const filterSensitiveLog: (obj: EmailRecipients) => any;
410
- }
411
291
 
412
292
  export interface EmailConfiguration {
413
293
 
@@ -417,10 +297,6 @@ export interface EmailConfiguration {
417
297
 
418
298
  recipients: EmailRecipients | undefined;
419
299
  }
420
- export declare namespace EmailConfiguration {
421
-
422
- const filterSensitiveLog: (obj: EmailConfiguration) => any;
423
- }
424
300
 
425
301
  export interface SMSConfiguration {
426
302
 
@@ -430,10 +306,6 @@ export interface SMSConfiguration {
430
306
 
431
307
  recipients: RecipientDetail[] | undefined;
432
308
  }
433
- export declare namespace SMSConfiguration {
434
-
435
- const filterSensitiveLog: (obj: SMSConfiguration) => any;
436
- }
437
309
 
438
310
  export interface NotificationAction {
439
311
 
@@ -443,19 +315,11 @@ export interface NotificationAction {
443
315
 
444
316
  emailConfigurations?: EmailConfiguration[];
445
317
  }
446
- export declare namespace NotificationAction {
447
-
448
- const filterSensitiveLog: (obj: NotificationAction) => any;
449
- }
450
318
 
451
319
  export interface AlarmNotification {
452
320
 
453
321
  notificationActions?: NotificationAction[];
454
322
  }
455
- export declare namespace AlarmNotification {
456
-
457
- const filterSensitiveLog: (obj: AlarmNotification) => any;
458
- }
459
323
  export declare enum ComparisonOperator {
460
324
  EQUAL = "EQUAL",
461
325
  GREATER = "GREATER",
@@ -473,19 +337,11 @@ export interface SimpleRule {
473
337
 
474
338
  threshold: string | undefined;
475
339
  }
476
- export declare namespace SimpleRule {
477
-
478
- const filterSensitiveLog: (obj: SimpleRule) => any;
479
- }
480
340
 
481
341
  export interface AlarmRule {
482
342
 
483
343
  simpleRule?: SimpleRule;
484
344
  }
485
- export declare namespace AlarmRule {
486
-
487
- const filterSensitiveLog: (obj: AlarmRule) => any;
488
- }
489
345
  export declare enum AnalysisResultLevel {
490
346
  ERROR = "ERROR",
491
347
  INFO = "INFO",
@@ -496,10 +352,6 @@ export interface AnalysisResultLocation {
496
352
 
497
353
  path?: string;
498
354
  }
499
- export declare namespace AnalysisResultLocation {
500
-
501
- const filterSensitiveLog: (obj: AnalysisResultLocation) => any;
502
- }
503
355
 
504
356
  export interface AnalysisResult {
505
357
 
@@ -511,10 +363,6 @@ export interface AnalysisResult {
511
363
 
512
364
  locations?: AnalysisResultLocation[];
513
365
  }
514
- export declare namespace AnalysisResult {
515
-
516
- const filterSensitiveLog: (obj: AnalysisResult) => any;
517
- }
518
366
  export declare enum AnalysisStatus {
519
367
  COMPLETE = "COMPLETE",
520
368
  FAILED = "FAILED",
@@ -525,10 +373,6 @@ export interface Attribute {
525
373
 
526
374
  jsonPath: string | undefined;
527
375
  }
528
- export declare namespace Attribute {
529
-
530
- const filterSensitiveLog: (obj: Attribute) => any;
531
- }
532
376
 
533
377
  export interface Tag {
534
378
 
@@ -536,10 +380,6 @@ export interface Tag {
536
380
 
537
381
  value: string | undefined;
538
382
  }
539
- export declare namespace Tag {
540
-
541
- const filterSensitiveLog: (obj: Tag) => any;
542
- }
543
383
  export interface CreateAlarmModelRequest {
544
384
 
545
385
  alarmModelName: string | undefined;
@@ -562,10 +402,6 @@ export interface CreateAlarmModelRequest {
562
402
 
563
403
  alarmCapabilities?: AlarmCapabilities;
564
404
  }
565
- export declare namespace CreateAlarmModelRequest {
566
-
567
- const filterSensitiveLog: (obj: CreateAlarmModelRequest) => any;
568
- }
569
405
  export interface CreateAlarmModelResponse {
570
406
 
571
407
  creationTime?: Date;
@@ -578,10 +414,6 @@ export interface CreateAlarmModelResponse {
578
414
 
579
415
  status?: AlarmModelVersionStatus | string;
580
416
  }
581
- export declare namespace CreateAlarmModelResponse {
582
-
583
- const filterSensitiveLog: (obj: CreateAlarmModelResponse) => any;
584
- }
585
417
 
586
418
  export declare class InternalFailureException extends __BaseException {
587
419
  readonly name: "InternalFailureException";
@@ -644,28 +476,16 @@ export interface Event {
644
476
 
645
477
  actions?: Action[];
646
478
  }
647
- export declare namespace Event {
648
-
649
- const filterSensitiveLog: (obj: Event) => any;
650
- }
651
479
 
652
480
  export interface OnEnterLifecycle {
653
481
 
654
482
  events?: Event[];
655
483
  }
656
- export declare namespace OnEnterLifecycle {
657
-
658
- const filterSensitiveLog: (obj: OnEnterLifecycle) => any;
659
- }
660
484
 
661
485
  export interface OnExitLifecycle {
662
486
 
663
487
  events?: Event[];
664
488
  }
665
- export declare namespace OnExitLifecycle {
666
-
667
- const filterSensitiveLog: (obj: OnExitLifecycle) => any;
668
- }
669
489
 
670
490
  export interface TransitionEvent {
671
491
 
@@ -677,10 +497,6 @@ export interface TransitionEvent {
677
497
 
678
498
  nextState: string | undefined;
679
499
  }
680
- export declare namespace TransitionEvent {
681
-
682
- const filterSensitiveLog: (obj: TransitionEvent) => any;
683
- }
684
500
 
685
501
  export interface OnInputLifecycle {
686
502
 
@@ -688,10 +504,6 @@ export interface OnInputLifecycle {
688
504
 
689
505
  transitionEvents?: TransitionEvent[];
690
506
  }
691
- export declare namespace OnInputLifecycle {
692
-
693
- const filterSensitiveLog: (obj: OnInputLifecycle) => any;
694
- }
695
507
 
696
508
  export interface State {
697
509
 
@@ -703,10 +515,6 @@ export interface State {
703
515
 
704
516
  onExit?: OnExitLifecycle;
705
517
  }
706
- export declare namespace State {
707
-
708
- const filterSensitiveLog: (obj: State) => any;
709
- }
710
518
 
711
519
  export interface DetectorModelDefinition {
712
520
 
@@ -714,10 +522,6 @@ export interface DetectorModelDefinition {
714
522
 
715
523
  initialStateName: string | undefined;
716
524
  }
717
- export declare namespace DetectorModelDefinition {
718
-
719
- const filterSensitiveLog: (obj: DetectorModelDefinition) => any;
720
- }
721
525
  export declare enum EvaluationMethod {
722
526
  BATCH = "BATCH",
723
527
  SERIAL = "SERIAL"
@@ -738,10 +542,6 @@ export interface CreateDetectorModelRequest {
738
542
 
739
543
  evaluationMethod?: EvaluationMethod | string;
740
544
  }
741
- export declare namespace CreateDetectorModelRequest {
742
-
743
- const filterSensitiveLog: (obj: CreateDetectorModelRequest) => any;
744
- }
745
545
  export declare enum DetectorModelVersionStatus {
746
546
  ACTIVATING = "ACTIVATING",
747
547
  ACTIVE = "ACTIVE",
@@ -774,27 +574,15 @@ export interface DetectorModelConfiguration {
774
574
 
775
575
  evaluationMethod?: EvaluationMethod | string;
776
576
  }
777
- export declare namespace DetectorModelConfiguration {
778
-
779
- const filterSensitiveLog: (obj: DetectorModelConfiguration) => any;
780
- }
781
577
  export interface CreateDetectorModelResponse {
782
578
 
783
579
  detectorModelConfiguration?: DetectorModelConfiguration;
784
580
  }
785
- export declare namespace CreateDetectorModelResponse {
786
-
787
- const filterSensitiveLog: (obj: CreateDetectorModelResponse) => any;
788
- }
789
581
 
790
582
  export interface InputDefinition {
791
583
 
792
584
  attributes: Attribute[] | undefined;
793
585
  }
794
- export declare namespace InputDefinition {
795
-
796
- const filterSensitiveLog: (obj: InputDefinition) => any;
797
- }
798
586
  export interface CreateInputRequest {
799
587
 
800
588
  inputName: string | undefined;
@@ -805,10 +593,6 @@ export interface CreateInputRequest {
805
593
 
806
594
  tags?: Tag[];
807
595
  }
808
- export declare namespace CreateInputRequest {
809
-
810
- const filterSensitiveLog: (obj: CreateInputRequest) => any;
811
- }
812
596
  export declare enum InputStatus {
813
597
  ACTIVE = "ACTIVE",
814
598
  CREATING = "CREATING",
@@ -830,32 +614,16 @@ export interface InputConfiguration {
830
614
 
831
615
  status: InputStatus | string | undefined;
832
616
  }
833
- export declare namespace InputConfiguration {
834
-
835
- const filterSensitiveLog: (obj: InputConfiguration) => any;
836
- }
837
617
  export interface CreateInputResponse {
838
618
 
839
619
  inputConfiguration?: InputConfiguration;
840
620
  }
841
- export declare namespace CreateInputResponse {
842
-
843
- const filterSensitiveLog: (obj: CreateInputResponse) => any;
844
- }
845
621
  export interface DeleteAlarmModelRequest {
846
622
 
847
623
  alarmModelName: string | undefined;
848
624
  }
849
- export declare namespace DeleteAlarmModelRequest {
850
-
851
- const filterSensitiveLog: (obj: DeleteAlarmModelRequest) => any;
852
- }
853
625
  export interface DeleteAlarmModelResponse {
854
626
  }
855
- export declare namespace DeleteAlarmModelResponse {
856
-
857
- const filterSensitiveLog: (obj: DeleteAlarmModelResponse) => any;
858
- }
859
627
 
860
628
  export declare class ResourceNotFoundException extends __BaseException {
861
629
  readonly name: "ResourceNotFoundException";
@@ -867,40 +635,20 @@ export interface DeleteDetectorModelRequest {
867
635
 
868
636
  detectorModelName: string | undefined;
869
637
  }
870
- export declare namespace DeleteDetectorModelRequest {
871
-
872
- const filterSensitiveLog: (obj: DeleteDetectorModelRequest) => any;
873
- }
874
638
  export interface DeleteDetectorModelResponse {
875
639
  }
876
- export declare namespace DeleteDetectorModelResponse {
877
-
878
- const filterSensitiveLog: (obj: DeleteDetectorModelResponse) => any;
879
- }
880
640
  export interface DeleteInputRequest {
881
641
 
882
642
  inputName: string | undefined;
883
643
  }
884
- export declare namespace DeleteInputRequest {
885
-
886
- const filterSensitiveLog: (obj: DeleteInputRequest) => any;
887
- }
888
644
  export interface DeleteInputResponse {
889
645
  }
890
- export declare namespace DeleteInputResponse {
891
-
892
- const filterSensitiveLog: (obj: DeleteInputResponse) => any;
893
- }
894
646
  export interface DescribeAlarmModelRequest {
895
647
 
896
648
  alarmModelName: string | undefined;
897
649
 
898
650
  alarmModelVersion?: string;
899
651
  }
900
- export declare namespace DescribeAlarmModelRequest {
901
-
902
- const filterSensitiveLog: (obj: DescribeAlarmModelRequest) => any;
903
- }
904
652
  export interface DescribeAlarmModelResponse {
905
653
 
906
654
  creationTime?: Date;
@@ -933,20 +681,12 @@ export interface DescribeAlarmModelResponse {
933
681
 
934
682
  alarmCapabilities?: AlarmCapabilities;
935
683
  }
936
- export declare namespace DescribeAlarmModelResponse {
937
-
938
- const filterSensitiveLog: (obj: DescribeAlarmModelResponse) => any;
939
- }
940
684
  export interface DescribeDetectorModelRequest {
941
685
 
942
686
  detectorModelName: string | undefined;
943
687
 
944
688
  detectorModelVersion?: string;
945
689
  }
946
- export declare namespace DescribeDetectorModelRequest {
947
-
948
- const filterSensitiveLog: (obj: DescribeDetectorModelRequest) => any;
949
- }
950
690
 
951
691
  export interface DetectorModel {
952
692
 
@@ -954,42 +694,22 @@ export interface DetectorModel {
954
694
 
955
695
  detectorModelConfiguration?: DetectorModelConfiguration;
956
696
  }
957
- export declare namespace DetectorModel {
958
-
959
- const filterSensitiveLog: (obj: DetectorModel) => any;
960
- }
961
697
  export interface DescribeDetectorModelResponse {
962
698
 
963
699
  detectorModel?: DetectorModel;
964
700
  }
965
- export declare namespace DescribeDetectorModelResponse {
966
-
967
- const filterSensitiveLog: (obj: DescribeDetectorModelResponse) => any;
968
- }
969
701
  export interface DescribeDetectorModelAnalysisRequest {
970
702
 
971
703
  analysisId: string | undefined;
972
704
  }
973
- export declare namespace DescribeDetectorModelAnalysisRequest {
974
-
975
- const filterSensitiveLog: (obj: DescribeDetectorModelAnalysisRequest) => any;
976
- }
977
705
  export interface DescribeDetectorModelAnalysisResponse {
978
706
 
979
707
  status?: AnalysisStatus | string;
980
708
  }
981
- export declare namespace DescribeDetectorModelAnalysisResponse {
982
-
983
- const filterSensitiveLog: (obj: DescribeDetectorModelAnalysisResponse) => any;
984
- }
985
709
  export interface DescribeInputRequest {
986
710
 
987
711
  inputName: string | undefined;
988
712
  }
989
- export declare namespace DescribeInputRequest {
990
-
991
- const filterSensitiveLog: (obj: DescribeInputRequest) => any;
992
- }
993
713
 
994
714
  export interface Input {
995
715
 
@@ -997,24 +717,12 @@ export interface Input {
997
717
 
998
718
  inputDefinition?: InputDefinition;
999
719
  }
1000
- export declare namespace Input {
1001
-
1002
- const filterSensitiveLog: (obj: Input) => any;
1003
- }
1004
720
  export interface DescribeInputResponse {
1005
721
 
1006
722
  input?: Input;
1007
723
  }
1008
- export declare namespace DescribeInputResponse {
1009
-
1010
- const filterSensitiveLog: (obj: DescribeInputResponse) => any;
1011
- }
1012
724
  export interface DescribeLoggingOptionsRequest {
1013
725
  }
1014
- export declare namespace DescribeLoggingOptionsRequest {
1015
-
1016
- const filterSensitiveLog: (obj: DescribeLoggingOptionsRequest) => any;
1017
- }
1018
726
 
1019
727
  export interface DetectorDebugOption {
1020
728
 
@@ -1022,10 +730,6 @@ export interface DetectorDebugOption {
1022
730
 
1023
731
  keyValue?: string;
1024
732
  }
1025
- export declare namespace DetectorDebugOption {
1026
-
1027
- const filterSensitiveLog: (obj: DetectorDebugOption) => any;
1028
- }
1029
733
  export declare enum LoggingLevel {
1030
734
  DEBUG = "DEBUG",
1031
735
  ERROR = "ERROR",
@@ -1042,18 +746,10 @@ export interface LoggingOptions {
1042
746
 
1043
747
  detectorDebugOptions?: DetectorDebugOption[];
1044
748
  }
1045
- export declare namespace LoggingOptions {
1046
-
1047
- const filterSensitiveLog: (obj: LoggingOptions) => any;
1048
- }
1049
749
  export interface DescribeLoggingOptionsResponse {
1050
750
 
1051
751
  loggingOptions?: LoggingOptions;
1052
752
  }
1053
- export declare namespace DescribeLoggingOptionsResponse {
1054
-
1055
- const filterSensitiveLog: (obj: DescribeLoggingOptionsResponse) => any;
1056
- }
1057
753
 
1058
754
  export declare class UnsupportedOperationException extends __BaseException {
1059
755
  readonly name: "UnsupportedOperationException";
@@ -1070,10 +766,6 @@ export interface DetectorModelSummary {
1070
766
 
1071
767
  creationTime?: Date;
1072
768
  }
1073
- export declare namespace DetectorModelSummary {
1074
-
1075
- const filterSensitiveLog: (obj: DetectorModelSummary) => any;
1076
- }
1077
769
 
1078
770
  export interface DetectorModelVersionSummary {
1079
771
 
@@ -1093,10 +785,6 @@ export interface DetectorModelVersionSummary {
1093
785
 
1094
786
  evaluationMethod?: EvaluationMethod | string;
1095
787
  }
1096
- export declare namespace DetectorModelVersionSummary {
1097
-
1098
- const filterSensitiveLog: (obj: DetectorModelVersionSummary) => any;
1099
- }
1100
788
  export interface GetDetectorModelAnalysisResultsRequest {
1101
789
 
1102
790
  analysisId: string | undefined;
@@ -1105,29 +793,17 @@ export interface GetDetectorModelAnalysisResultsRequest {
1105
793
 
1106
794
  maxResults?: number;
1107
795
  }
1108
- export declare namespace GetDetectorModelAnalysisResultsRequest {
1109
-
1110
- const filterSensitiveLog: (obj: GetDetectorModelAnalysisResultsRequest) => any;
1111
- }
1112
796
  export interface GetDetectorModelAnalysisResultsResponse {
1113
797
 
1114
798
  analysisResults?: AnalysisResult[];
1115
799
 
1116
800
  nextToken?: string;
1117
801
  }
1118
- export declare namespace GetDetectorModelAnalysisResultsResponse {
1119
-
1120
- const filterSensitiveLog: (obj: GetDetectorModelAnalysisResultsResponse) => any;
1121
- }
1122
802
 
1123
803
  export interface IotEventsInputIdentifier {
1124
804
 
1125
805
  inputName: string | undefined;
1126
806
  }
1127
- export declare namespace IotEventsInputIdentifier {
1128
-
1129
- const filterSensitiveLog: (obj: IotEventsInputIdentifier) => any;
1130
- }
1131
807
 
1132
808
  export interface IotSiteWiseAssetModelPropertyIdentifier {
1133
809
 
@@ -1135,19 +811,11 @@ export interface IotSiteWiseAssetModelPropertyIdentifier {
1135
811
 
1136
812
  propertyId: string | undefined;
1137
813
  }
1138
- export declare namespace IotSiteWiseAssetModelPropertyIdentifier {
1139
-
1140
- const filterSensitiveLog: (obj: IotSiteWiseAssetModelPropertyIdentifier) => any;
1141
- }
1142
814
 
1143
815
  export interface IotSiteWiseInputIdentifier {
1144
816
 
1145
817
  iotSiteWiseAssetModelPropertyIdentifier?: IotSiteWiseAssetModelPropertyIdentifier;
1146
818
  }
1147
- export declare namespace IotSiteWiseInputIdentifier {
1148
-
1149
- const filterSensitiveLog: (obj: IotSiteWiseInputIdentifier) => any;
1150
- }
1151
819
 
1152
820
  export interface InputIdentifier {
1153
821
 
@@ -1155,10 +823,6 @@ export interface InputIdentifier {
1155
823
 
1156
824
  iotSiteWiseInputIdentifier?: IotSiteWiseInputIdentifier;
1157
825
  }
1158
- export declare namespace InputIdentifier {
1159
-
1160
- const filterSensitiveLog: (obj: InputIdentifier) => any;
1161
- }
1162
826
 
1163
827
  export interface InputSummary {
1164
828
 
@@ -1174,30 +838,18 @@ export interface InputSummary {
1174
838
 
1175
839
  status?: InputStatus | string;
1176
840
  }
1177
- export declare namespace InputSummary {
1178
-
1179
- const filterSensitiveLog: (obj: InputSummary) => any;
1180
- }
1181
841
  export interface ListAlarmModelsRequest {
1182
842
 
1183
843
  nextToken?: string;
1184
844
 
1185
845
  maxResults?: number;
1186
846
  }
1187
- export declare namespace ListAlarmModelsRequest {
1188
-
1189
- const filterSensitiveLog: (obj: ListAlarmModelsRequest) => any;
1190
- }
1191
847
  export interface ListAlarmModelsResponse {
1192
848
 
1193
849
  alarmModelSummaries?: AlarmModelSummary[];
1194
850
 
1195
851
  nextToken?: string;
1196
852
  }
1197
- export declare namespace ListAlarmModelsResponse {
1198
-
1199
- const filterSensitiveLog: (obj: ListAlarmModelsResponse) => any;
1200
- }
1201
853
  export interface ListAlarmModelVersionsRequest {
1202
854
 
1203
855
  alarmModelName: string | undefined;
@@ -1206,40 +858,24 @@ export interface ListAlarmModelVersionsRequest {
1206
858
 
1207
859
  maxResults?: number;
1208
860
  }
1209
- export declare namespace ListAlarmModelVersionsRequest {
1210
-
1211
- const filterSensitiveLog: (obj: ListAlarmModelVersionsRequest) => any;
1212
- }
1213
861
  export interface ListAlarmModelVersionsResponse {
1214
862
 
1215
863
  alarmModelVersionSummaries?: AlarmModelVersionSummary[];
1216
864
 
1217
865
  nextToken?: string;
1218
866
  }
1219
- export declare namespace ListAlarmModelVersionsResponse {
1220
-
1221
- const filterSensitiveLog: (obj: ListAlarmModelVersionsResponse) => any;
1222
- }
1223
867
  export interface ListDetectorModelsRequest {
1224
868
 
1225
869
  nextToken?: string;
1226
870
 
1227
871
  maxResults?: number;
1228
872
  }
1229
- export declare namespace ListDetectorModelsRequest {
1230
-
1231
- const filterSensitiveLog: (obj: ListDetectorModelsRequest) => any;
1232
- }
1233
873
  export interface ListDetectorModelsResponse {
1234
874
 
1235
875
  detectorModelSummaries?: DetectorModelSummary[];
1236
876
 
1237
877
  nextToken?: string;
1238
878
  }
1239
- export declare namespace ListDetectorModelsResponse {
1240
-
1241
- const filterSensitiveLog: (obj: ListDetectorModelsResponse) => any;
1242
- }
1243
879
  export interface ListDetectorModelVersionsRequest {
1244
880
 
1245
881
  detectorModelName: string | undefined;
@@ -1248,20 +884,12 @@ export interface ListDetectorModelVersionsRequest {
1248
884
 
1249
885
  maxResults?: number;
1250
886
  }
1251
- export declare namespace ListDetectorModelVersionsRequest {
1252
-
1253
- const filterSensitiveLog: (obj: ListDetectorModelVersionsRequest) => any;
1254
- }
1255
887
  export interface ListDetectorModelVersionsResponse {
1256
888
 
1257
889
  detectorModelVersionSummaries?: DetectorModelVersionSummary[];
1258
890
 
1259
891
  nextToken?: string;
1260
892
  }
1261
- export declare namespace ListDetectorModelVersionsResponse {
1262
-
1263
- const filterSensitiveLog: (obj: ListDetectorModelVersionsResponse) => any;
1264
- }
1265
893
  export interface ListInputRoutingsRequest {
1266
894
 
1267
895
  inputIdentifier: InputIdentifier | undefined;
@@ -1270,10 +898,6 @@ export interface ListInputRoutingsRequest {
1270
898
 
1271
899
  nextToken?: string;
1272
900
  }
1273
- export declare namespace ListInputRoutingsRequest {
1274
-
1275
- const filterSensitiveLog: (obj: ListInputRoutingsRequest) => any;
1276
- }
1277
901
 
1278
902
  export interface RoutedResource {
1279
903
 
@@ -1281,112 +905,60 @@ export interface RoutedResource {
1281
905
 
1282
906
  arn?: string;
1283
907
  }
1284
- export declare namespace RoutedResource {
1285
-
1286
- const filterSensitiveLog: (obj: RoutedResource) => any;
1287
- }
1288
908
  export interface ListInputRoutingsResponse {
1289
909
 
1290
910
  routedResources?: RoutedResource[];
1291
911
 
1292
912
  nextToken?: string;
1293
913
  }
1294
- export declare namespace ListInputRoutingsResponse {
1295
-
1296
- const filterSensitiveLog: (obj: ListInputRoutingsResponse) => any;
1297
- }
1298
914
  export interface ListInputsRequest {
1299
915
 
1300
916
  nextToken?: string;
1301
917
 
1302
918
  maxResults?: number;
1303
919
  }
1304
- export declare namespace ListInputsRequest {
1305
-
1306
- const filterSensitiveLog: (obj: ListInputsRequest) => any;
1307
- }
1308
920
  export interface ListInputsResponse {
1309
921
 
1310
922
  inputSummaries?: InputSummary[];
1311
923
 
1312
924
  nextToken?: string;
1313
925
  }
1314
- export declare namespace ListInputsResponse {
1315
-
1316
- const filterSensitiveLog: (obj: ListInputsResponse) => any;
1317
- }
1318
926
  export interface ListTagsForResourceRequest {
1319
927
 
1320
928
  resourceArn: string | undefined;
1321
929
  }
1322
- export declare namespace ListTagsForResourceRequest {
1323
-
1324
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
1325
- }
1326
930
  export interface ListTagsForResourceResponse {
1327
931
 
1328
932
  tags?: Tag[];
1329
933
  }
1330
- export declare namespace ListTagsForResourceResponse {
1331
-
1332
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1333
- }
1334
934
  export interface PutLoggingOptionsRequest {
1335
935
 
1336
936
  loggingOptions: LoggingOptions | undefined;
1337
937
  }
1338
- export declare namespace PutLoggingOptionsRequest {
1339
-
1340
- const filterSensitiveLog: (obj: PutLoggingOptionsRequest) => any;
1341
- }
1342
938
  export interface StartDetectorModelAnalysisRequest {
1343
939
 
1344
940
  detectorModelDefinition: DetectorModelDefinition | undefined;
1345
941
  }
1346
- export declare namespace StartDetectorModelAnalysisRequest {
1347
-
1348
- const filterSensitiveLog: (obj: StartDetectorModelAnalysisRequest) => any;
1349
- }
1350
942
  export interface StartDetectorModelAnalysisResponse {
1351
943
 
1352
944
  analysisId?: string;
1353
945
  }
1354
- export declare namespace StartDetectorModelAnalysisResponse {
1355
-
1356
- const filterSensitiveLog: (obj: StartDetectorModelAnalysisResponse) => any;
1357
- }
1358
946
  export interface TagResourceRequest {
1359
947
 
1360
948
  resourceArn: string | undefined;
1361
949
 
1362
950
  tags: Tag[] | undefined;
1363
951
  }
1364
- export declare namespace TagResourceRequest {
1365
-
1366
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
1367
- }
1368
952
  export interface TagResourceResponse {
1369
953
  }
1370
- export declare namespace TagResourceResponse {
1371
-
1372
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
1373
- }
1374
954
  export interface UntagResourceRequest {
1375
955
 
1376
956
  resourceArn: string | undefined;
1377
957
 
1378
958
  tagKeys: string[] | undefined;
1379
959
  }
1380
- export declare namespace UntagResourceRequest {
1381
-
1382
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
1383
- }
1384
960
  export interface UntagResourceResponse {
1385
961
  }
1386
- export declare namespace UntagResourceResponse {
1387
-
1388
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
1389
- }
1390
962
  export interface UpdateAlarmModelRequest {
1391
963
 
1392
964
  alarmModelName: string | undefined;
@@ -1405,10 +977,6 @@ export interface UpdateAlarmModelRequest {
1405
977
 
1406
978
  alarmCapabilities?: AlarmCapabilities;
1407
979
  }
1408
- export declare namespace UpdateAlarmModelRequest {
1409
-
1410
- const filterSensitiveLog: (obj: UpdateAlarmModelRequest) => any;
1411
- }
1412
980
  export interface UpdateAlarmModelResponse {
1413
981
 
1414
982
  creationTime?: Date;
@@ -1421,10 +989,6 @@ export interface UpdateAlarmModelResponse {
1421
989
 
1422
990
  status?: AlarmModelVersionStatus | string;
1423
991
  }
1424
- export declare namespace UpdateAlarmModelResponse {
1425
-
1426
- const filterSensitiveLog: (obj: UpdateAlarmModelResponse) => any;
1427
- }
1428
992
  export interface UpdateDetectorModelRequest {
1429
993
 
1430
994
  detectorModelName: string | undefined;
@@ -1437,18 +1001,10 @@ export interface UpdateDetectorModelRequest {
1437
1001
 
1438
1002
  evaluationMethod?: EvaluationMethod | string;
1439
1003
  }
1440
- export declare namespace UpdateDetectorModelRequest {
1441
-
1442
- const filterSensitiveLog: (obj: UpdateDetectorModelRequest) => any;
1443
- }
1444
1004
  export interface UpdateDetectorModelResponse {
1445
1005
 
1446
1006
  detectorModelConfiguration?: DetectorModelConfiguration;
1447
1007
  }
1448
- export declare namespace UpdateDetectorModelResponse {
1449
-
1450
- const filterSensitiveLog: (obj: UpdateDetectorModelResponse) => any;
1451
- }
1452
1008
  export interface UpdateInputRequest {
1453
1009
 
1454
1010
  inputName: string | undefined;
@@ -1457,15 +1013,233 @@ export interface UpdateInputRequest {
1457
1013
 
1458
1014
  inputDefinition: InputDefinition | undefined;
1459
1015
  }
1460
- export declare namespace UpdateInputRequest {
1461
-
1462
- const filterSensitiveLog: (obj: UpdateInputRequest) => any;
1463
- }
1464
1016
  export interface UpdateInputResponse {
1465
1017
 
1466
1018
  inputConfiguration?: InputConfiguration;
1467
1019
  }
1468
- export declare namespace UpdateInputResponse {
1469
-
1470
- const filterSensitiveLog: (obj: UpdateInputResponse) => any;
1471
- }
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;