@aws-sdk/client-iot-events 3.128.0 → 3.137.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 (60) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist-cjs/commands/CreateAlarmModelCommand.js +2 -2
  3. package/dist-cjs/commands/CreateDetectorModelCommand.js +2 -2
  4. package/dist-cjs/commands/CreateInputCommand.js +2 -2
  5. package/dist-cjs/commands/DeleteAlarmModelCommand.js +2 -2
  6. package/dist-cjs/commands/DeleteDetectorModelCommand.js +2 -2
  7. package/dist-cjs/commands/DeleteInputCommand.js +2 -2
  8. package/dist-cjs/commands/DescribeAlarmModelCommand.js +2 -2
  9. package/dist-cjs/commands/DescribeDetectorModelAnalysisCommand.js +2 -2
  10. package/dist-cjs/commands/DescribeDetectorModelCommand.js +2 -2
  11. package/dist-cjs/commands/DescribeInputCommand.js +2 -2
  12. package/dist-cjs/commands/DescribeLoggingOptionsCommand.js +2 -2
  13. package/dist-cjs/commands/GetDetectorModelAnalysisResultsCommand.js +2 -2
  14. package/dist-cjs/commands/ListAlarmModelVersionsCommand.js +2 -2
  15. package/dist-cjs/commands/ListAlarmModelsCommand.js +2 -2
  16. package/dist-cjs/commands/ListDetectorModelVersionsCommand.js +2 -2
  17. package/dist-cjs/commands/ListDetectorModelsCommand.js +2 -2
  18. package/dist-cjs/commands/ListInputRoutingsCommand.js +2 -2
  19. package/dist-cjs/commands/ListInputsCommand.js +2 -2
  20. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  21. package/dist-cjs/commands/PutLoggingOptionsCommand.js +1 -1
  22. package/dist-cjs/commands/StartDetectorModelAnalysisCommand.js +2 -2
  23. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  24. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  25. package/dist-cjs/commands/UpdateAlarmModelCommand.js +2 -2
  26. package/dist-cjs/commands/UpdateDetectorModelCommand.js +2 -2
  27. package/dist-cjs/commands/UpdateInputCommand.js +2 -2
  28. package/dist-cjs/models/models_0.js +455 -681
  29. package/dist-cjs/protocols/Aws_restJson1.js +3 -0
  30. package/dist-es/commands/CreateAlarmModelCommand.js +3 -3
  31. package/dist-es/commands/CreateDetectorModelCommand.js +3 -3
  32. package/dist-es/commands/CreateInputCommand.js +3 -3
  33. package/dist-es/commands/DeleteAlarmModelCommand.js +3 -3
  34. package/dist-es/commands/DeleteDetectorModelCommand.js +3 -3
  35. package/dist-es/commands/DeleteInputCommand.js +3 -3
  36. package/dist-es/commands/DescribeAlarmModelCommand.js +3 -3
  37. package/dist-es/commands/DescribeDetectorModelAnalysisCommand.js +3 -3
  38. package/dist-es/commands/DescribeDetectorModelCommand.js +3 -3
  39. package/dist-es/commands/DescribeInputCommand.js +3 -3
  40. package/dist-es/commands/DescribeLoggingOptionsCommand.js +3 -3
  41. package/dist-es/commands/GetDetectorModelAnalysisResultsCommand.js +3 -3
  42. package/dist-es/commands/ListAlarmModelVersionsCommand.js +3 -3
  43. package/dist-es/commands/ListAlarmModelsCommand.js +3 -3
  44. package/dist-es/commands/ListDetectorModelVersionsCommand.js +3 -3
  45. package/dist-es/commands/ListDetectorModelsCommand.js +3 -3
  46. package/dist-es/commands/ListInputRoutingsCommand.js +3 -3
  47. package/dist-es/commands/ListInputsCommand.js +3 -3
  48. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  49. package/dist-es/commands/PutLoggingOptionsCommand.js +2 -2
  50. package/dist-es/commands/StartDetectorModelAnalysisCommand.js +3 -3
  51. package/dist-es/commands/TagResourceCommand.js +3 -3
  52. package/dist-es/commands/UntagResourceCommand.js +3 -3
  53. package/dist-es/commands/UpdateAlarmModelCommand.js +3 -3
  54. package/dist-es/commands/UpdateDetectorModelCommand.js +3 -3
  55. package/dist-es/commands/UpdateInputCommand.js +3 -3
  56. package/dist-es/models/models_0.js +113 -452
  57. package/dist-es/protocols/Aws_restJson1.js +3 -0
  58. package/dist-types/models/models_0.d.ts +452 -678
  59. package/dist-types/ts3.4/models/models_0.d.ts +226 -452
  60. package/package.json +9 -9
@@ -13,12 +13,6 @@ export interface AcknowledgeFlow {
13
13
  */
14
14
  enabled: boolean | undefined;
15
15
  }
16
- export declare namespace AcknowledgeFlow {
17
- /**
18
- * @internal
19
- */
20
- const filterSensitiveLog: (obj: AcknowledgeFlow) => any;
21
- }
22
16
  /**
23
17
  * <p>Information needed to clear the timer.</p>
24
18
  */
@@ -28,12 +22,6 @@ export interface ClearTimerAction {
28
22
  */
29
23
  timerName: string | undefined;
30
24
  }
31
- export declare namespace ClearTimerAction {
32
- /**
33
- * @internal
34
- */
35
- const filterSensitiveLog: (obj: ClearTimerAction) => any;
36
- }
37
25
  export declare enum PayloadType {
38
26
  JSON = "JSON",
39
27
  STRING = "STRING"
@@ -60,12 +48,6 @@ export interface Payload {
60
48
  */
61
49
  type: PayloadType | string | undefined;
62
50
  }
63
- export declare namespace Payload {
64
- /**
65
- * @internal
66
- */
67
- const filterSensitiveLog: (obj: Payload) => any;
68
- }
69
51
  /**
70
52
  * <p>Defines an action to write to the Amazon DynamoDB table that you created. The standard action
71
53
  * payload contains all the information about the detector model instance and the event that
@@ -214,12 +196,6 @@ export interface DynamoDBAction {
214
196
  */
215
197
  payload?: Payload;
216
198
  }
217
- export declare namespace DynamoDBAction {
218
- /**
219
- * @internal
220
- */
221
- const filterSensitiveLog: (obj: DynamoDBAction) => any;
222
- }
223
199
  /**
224
200
  * <p>Defines an action to write to the Amazon DynamoDB table that you created. The default action
225
201
  * payload contains all the information about the detector model instance and the event that
@@ -283,12 +259,6 @@ export interface DynamoDBv2Action {
283
259
  */
284
260
  payload?: Payload;
285
261
  }
286
- export declare namespace DynamoDBv2Action {
287
- /**
288
- * @internal
289
- */
290
- const filterSensitiveLog: (obj: DynamoDBv2Action) => any;
291
- }
292
262
  /**
293
263
  * <p>Sends information about the detector model instance and the event that triggered the
294
264
  * action to an Amazon Kinesis Data Firehose delivery stream.</p>
@@ -310,12 +280,6 @@ export interface FirehoseAction {
310
280
  */
311
281
  payload?: Payload;
312
282
  }
313
- export declare namespace FirehoseAction {
314
- /**
315
- * @internal
316
- */
317
- const filterSensitiveLog: (obj: FirehoseAction) => any;
318
- }
319
283
  /**
320
284
  * <p>Sends an AWS IoT Events input, passing in information about the detector model instance and the
321
285
  * event that triggered the action.</p>
@@ -330,12 +294,6 @@ export interface IotEventsAction {
330
294
  */
331
295
  payload?: Payload;
332
296
  }
333
- export declare namespace IotEventsAction {
334
- /**
335
- * @internal
336
- */
337
- const filterSensitiveLog: (obj: IotEventsAction) => any;
338
- }
339
297
  /**
340
298
  * <p>A structure that contains timestamp information. For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_TimeInNanos.html">TimeInNanos</a> in the <i>AWS IoT SiteWise API Reference</i>.</p>
341
299
  * <p>You must use expressions for all parameters in <code>AssetPropertyTimestamp</code>. The
@@ -381,12 +339,6 @@ export interface AssetPropertyTimestamp {
381
339
  */
382
340
  offsetInNanos?: string;
383
341
  }
384
- export declare namespace AssetPropertyTimestamp {
385
- /**
386
- * @internal
387
- */
388
- const filterSensitiveLog: (obj: AssetPropertyTimestamp) => any;
389
- }
390
342
  /**
391
343
  * <p>A structure that contains an asset property value. For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_Variant.html">Variant</a>
392
344
  * in the <i>AWS IoT SiteWise API Reference</i>.</p>
@@ -447,12 +399,6 @@ export interface AssetPropertyVariant {
447
399
  */
448
400
  booleanValue?: string;
449
401
  }
450
- export declare namespace AssetPropertyVariant {
451
- /**
452
- * @internal
453
- */
454
- const filterSensitiveLog: (obj: AssetPropertyVariant) => any;
455
- }
456
402
  /**
457
403
  * <p>A structure that contains value information. For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_AssetPropertyValue.html">AssetPropertyValue</a> in the <i>AWS IoT SiteWise API Reference</i>.</p>
458
404
  * <p>You must use expressions for all parameters in <code>AssetPropertyValue</code>. The
@@ -492,12 +438,6 @@ export interface AssetPropertyValue {
492
438
  */
493
439
  quality?: string;
494
440
  }
495
- export declare namespace AssetPropertyValue {
496
- /**
497
- * @internal
498
- */
499
- const filterSensitiveLog: (obj: AssetPropertyValue) => any;
500
- }
501
441
  /**
502
442
  * <p>Sends information about the detector model instance and the event that triggered the
503
443
  * action to a specified asset property in AWS IoT SiteWise.</p>
@@ -560,12 +500,6 @@ export interface IotSiteWiseAction {
560
500
  */
561
501
  propertyValue?: AssetPropertyValue;
562
502
  }
563
- export declare namespace IotSiteWiseAction {
564
- /**
565
- * @internal
566
- */
567
- const filterSensitiveLog: (obj: IotSiteWiseAction) => any;
568
- }
569
503
  /**
570
504
  * <p>Information required to publish the MQTT message through the AWS IoT message broker.</p>
571
505
  */
@@ -582,12 +516,6 @@ export interface IotTopicPublishAction {
582
516
  */
583
517
  payload?: Payload;
584
518
  }
585
- export declare namespace IotTopicPublishAction {
586
- /**
587
- * @internal
588
- */
589
- const filterSensitiveLog: (obj: IotTopicPublishAction) => any;
590
- }
591
519
  /**
592
520
  * <p>Calls a Lambda function, passing in information about the detector model instance and the
593
521
  * event that triggered the action.</p>
@@ -602,12 +530,6 @@ export interface LambdaAction {
602
530
  */
603
531
  payload?: Payload;
604
532
  }
605
- export declare namespace LambdaAction {
606
- /**
607
- * @internal
608
- */
609
- const filterSensitiveLog: (obj: LambdaAction) => any;
610
- }
611
533
  /**
612
534
  * <p>Information required to reset the timer. The timer is reset to the previously evaluated
613
535
  * result of the duration. The duration expression isn't reevaluated when you reset the
@@ -619,12 +541,6 @@ export interface ResetTimerAction {
619
541
  */
620
542
  timerName: string | undefined;
621
543
  }
622
- export declare namespace ResetTimerAction {
623
- /**
624
- * @internal
625
- */
626
- const filterSensitiveLog: (obj: ResetTimerAction) => any;
627
- }
628
544
  /**
629
545
  * <p>Information needed to set the timer.</p>
630
546
  */
@@ -649,12 +565,6 @@ export interface SetTimerAction {
649
565
  */
650
566
  durationExpression?: string;
651
567
  }
652
- export declare namespace SetTimerAction {
653
- /**
654
- * @internal
655
- */
656
- const filterSensitiveLog: (obj: SetTimerAction) => any;
657
- }
658
568
  /**
659
569
  * <p>Information about the variable and its new value.</p>
660
570
  */
@@ -668,12 +578,6 @@ export interface SetVariableAction {
668
578
  */
669
579
  value: string | undefined;
670
580
  }
671
- export declare namespace SetVariableAction {
672
- /**
673
- * @internal
674
- */
675
- const filterSensitiveLog: (obj: SetVariableAction) => any;
676
- }
677
581
  /**
678
582
  * <p>Information required to publish the Amazon SNS message.</p>
679
583
  */
@@ -688,12 +592,6 @@ export interface SNSTopicPublishAction {
688
592
  */
689
593
  payload?: Payload;
690
594
  }
691
- export declare namespace SNSTopicPublishAction {
692
- /**
693
- * @internal
694
- */
695
- const filterSensitiveLog: (obj: SNSTopicPublishAction) => any;
696
- }
697
595
  /**
698
596
  * <p>Sends information about the detector model instance and the event that triggered the
699
597
  * action to an Amazon SQS queue.</p>
@@ -714,12 +612,6 @@ export interface SqsAction {
714
612
  */
715
613
  payload?: Payload;
716
614
  }
717
- export declare namespace SqsAction {
718
- /**
719
- * @internal
720
- */
721
- const filterSensitiveLog: (obj: SqsAction) => any;
722
- }
723
615
  /**
724
616
  * <p>An action to be performed when the <code>condition</code> is TRUE.</p>
725
617
  */
@@ -792,12 +684,6 @@ export interface Action {
792
684
  */
793
685
  iotSiteWise?: IotSiteWiseAction;
794
686
  }
795
- export declare namespace Action {
796
- /**
797
- * @internal
798
- */
799
- const filterSensitiveLog: (obj: Action) => any;
800
- }
801
687
  /**
802
688
  * <p>Specifies one of the following actions to receive notifications when the alarm state
803
689
  * changes.</p>
@@ -971,12 +857,6 @@ export interface AlarmAction {
971
857
  */
972
858
  iotSiteWise?: IotSiteWiseAction;
973
859
  }
974
- export declare namespace AlarmAction {
975
- /**
976
- * @internal
977
- */
978
- const filterSensitiveLog: (obj: AlarmAction) => any;
979
- }
980
860
  /**
981
861
  * <p>Specifies the default alarm state.
982
862
  * The configuration applies to all alarms that were created based on this alarm model.</p>
@@ -989,12 +869,6 @@ export interface InitializationConfiguration {
989
869
  */
990
870
  disabledOnInitialization: boolean | undefined;
991
871
  }
992
- export declare namespace InitializationConfiguration {
993
- /**
994
- * @internal
995
- */
996
- const filterSensitiveLog: (obj: InitializationConfiguration) => any;
997
- }
998
872
  /**
999
873
  * <p>Contains the configuration information of alarm state changes.</p>
1000
874
  */
@@ -1009,12 +883,6 @@ export interface AlarmCapabilities {
1009
883
  */
1010
884
  acknowledgeFlow?: AcknowledgeFlow;
1011
885
  }
1012
- export declare namespace AlarmCapabilities {
1013
- /**
1014
- * @internal
1015
- */
1016
- const filterSensitiveLog: (obj: AlarmCapabilities) => any;
1017
- }
1018
886
  /**
1019
887
  * <p>Contains information about one or more alarm actions.</p>
1020
888
  */
@@ -1025,12 +893,6 @@ export interface AlarmEventActions {
1025
893
  */
1026
894
  alarmActions?: AlarmAction[];
1027
895
  }
1028
- export declare namespace AlarmEventActions {
1029
- /**
1030
- * @internal
1031
- */
1032
- const filterSensitiveLog: (obj: AlarmEventActions) => any;
1033
- }
1034
896
  /**
1035
897
  * <p>Contains a summary of an alarm model.</p>
1036
898
  */
@@ -1048,12 +910,6 @@ export interface AlarmModelSummary {
1048
910
  */
1049
911
  alarmModelName?: string;
1050
912
  }
1051
- export declare namespace AlarmModelSummary {
1052
- /**
1053
- * @internal
1054
- */
1055
- const filterSensitiveLog: (obj: AlarmModelSummary) => any;
1056
- }
1057
913
  export declare enum AlarmModelVersionStatus {
1058
914
  ACTIVATING = "ACTIVATING",
1059
915
  ACTIVE = "ACTIVE",
@@ -1120,12 +976,6 @@ export interface AlarmModelVersionSummary {
1120
976
  */
1121
977
  statusMessage?: string;
1122
978
  }
1123
- export declare namespace AlarmModelVersionSummary {
1124
- /**
1125
- * @internal
1126
- */
1127
- const filterSensitiveLog: (obj: AlarmModelVersionSummary) => any;
1128
- }
1129
979
  /**
1130
980
  * <p>Specifies an AWS Lambda function to manage alarm notifications.
1131
981
  * You can create one or use the <a href="https://docs.aws.amazon.com/iotevents/latest/developerguide/lambda-support.html">AWS Lambda function provided by AWS IoT Events</a>.</p>
@@ -1137,12 +987,6 @@ export interface NotificationTargetActions {
1137
987
  */
1138
988
  lambdaAction?: LambdaAction;
1139
989
  }
1140
- export declare namespace NotificationTargetActions {
1141
- /**
1142
- * @internal
1143
- */
1144
- const filterSensitiveLog: (obj: NotificationTargetActions) => any;
1145
- }
1146
990
  /**
1147
991
  * <p>Contains the subject and message of an email.</p>
1148
992
  */
@@ -1156,12 +1000,6 @@ export interface EmailContent {
1156
1000
  */
1157
1001
  additionalMessage?: string;
1158
1002
  }
1159
- export declare namespace EmailContent {
1160
- /**
1161
- * @internal
1162
- */
1163
- const filterSensitiveLog: (obj: EmailContent) => any;
1164
- }
1165
1003
  /**
1166
1004
  * <p>Contains information about your identity source in AWS Single Sign-On. For more information, see
1167
1005
  * the <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">AWS Single Sign-On
@@ -1177,12 +1015,6 @@ export interface SSOIdentity {
1177
1015
  */
1178
1016
  userId?: string;
1179
1017
  }
1180
- export declare namespace SSOIdentity {
1181
- /**
1182
- * @internal
1183
- */
1184
- const filterSensitiveLog: (obj: SSOIdentity) => any;
1185
- }
1186
1018
  /**
1187
1019
  * <p>The information that identifies the recipient.</p>
1188
1020
  */
@@ -1192,12 +1024,6 @@ export interface RecipientDetail {
1192
1024
  */
1193
1025
  ssoIdentity?: SSOIdentity;
1194
1026
  }
1195
- export declare namespace RecipientDetail {
1196
- /**
1197
- * @internal
1198
- */
1199
- const filterSensitiveLog: (obj: RecipientDetail) => any;
1200
- }
1201
1027
  /**
1202
1028
  * <p>Contains the information of one or more recipients who receive the emails.</p>
1203
1029
  * <important>
@@ -1210,12 +1036,6 @@ export interface EmailRecipients {
1210
1036
  */
1211
1037
  to?: RecipientDetail[];
1212
1038
  }
1213
- export declare namespace EmailRecipients {
1214
- /**
1215
- * @internal
1216
- */
1217
- const filterSensitiveLog: (obj: EmailRecipients) => any;
1218
- }
1219
1039
  /**
1220
1040
  * <p>Contains the configuration information of email notifications.</p>
1221
1041
  */
@@ -1240,12 +1060,6 @@ export interface EmailConfiguration {
1240
1060
  */
1241
1061
  recipients: EmailRecipients | undefined;
1242
1062
  }
1243
- export declare namespace EmailConfiguration {
1244
- /**
1245
- * @internal
1246
- */
1247
- const filterSensitiveLog: (obj: EmailConfiguration) => any;
1248
- }
1249
1063
  /**
1250
1064
  * <p>Contains the configuration information of SMS notifications.</p>
1251
1065
  */
@@ -1266,12 +1080,6 @@ export interface SMSConfiguration {
1266
1080
  */
1267
1081
  recipients: RecipientDetail[] | undefined;
1268
1082
  }
1269
- export declare namespace SMSConfiguration {
1270
- /**
1271
- * @internal
1272
- */
1273
- const filterSensitiveLog: (obj: SMSConfiguration) => any;
1274
- }
1275
1083
  /**
1276
1084
  * <p>Contains the notification settings of an alarm model.
1277
1085
  * The settings apply to all alarms that were created based on this alarm model.</p>
@@ -1291,12 +1099,6 @@ export interface NotificationAction {
1291
1099
  */
1292
1100
  emailConfigurations?: EmailConfiguration[];
1293
1101
  }
1294
- export declare namespace NotificationAction {
1295
- /**
1296
- * @internal
1297
- */
1298
- const filterSensitiveLog: (obj: NotificationAction) => any;
1299
- }
1300
1102
  /**
1301
1103
  * <p>Contains information about one or more notification actions.</p>
1302
1104
  */
@@ -1307,12 +1109,6 @@ export interface AlarmNotification {
1307
1109
  */
1308
1110
  notificationActions?: NotificationAction[];
1309
1111
  }
1310
- export declare namespace AlarmNotification {
1311
- /**
1312
- * @internal
1313
- */
1314
- const filterSensitiveLog: (obj: AlarmNotification) => any;
1315
- }
1316
1112
  export declare enum ComparisonOperator {
1317
1113
  EQUAL = "EQUAL",
1318
1114
  GREATER = "GREATER",
@@ -1340,12 +1136,6 @@ export interface SimpleRule {
1340
1136
  */
1341
1137
  threshold: string | undefined;
1342
1138
  }
1343
- export declare namespace SimpleRule {
1344
- /**
1345
- * @internal
1346
- */
1347
- const filterSensitiveLog: (obj: SimpleRule) => any;
1348
- }
1349
1139
  /**
1350
1140
  * <p>Defines when your alarm is invoked.</p>
1351
1141
  */
@@ -1355,12 +1145,6 @@ export interface AlarmRule {
1355
1145
  */
1356
1146
  simpleRule?: SimpleRule;
1357
1147
  }
1358
- export declare namespace AlarmRule {
1359
- /**
1360
- * @internal
1361
- */
1362
- const filterSensitiveLog: (obj: AlarmRule) => any;
1363
- }
1364
1148
  export declare enum AnalysisResultLevel {
1365
1149
  ERROR = "ERROR",
1366
1150
  INFO = "INFO",
@@ -1377,12 +1161,6 @@ export interface AnalysisResultLocation {
1377
1161
  */
1378
1162
  path?: string;
1379
1163
  }
1380
- export declare namespace AnalysisResultLocation {
1381
- /**
1382
- * @internal
1383
- */
1384
- const filterSensitiveLog: (obj: AnalysisResultLocation) => any;
1385
- }
1386
1164
  /**
1387
1165
  * <p>Contains the result of the analysis.</p>
1388
1166
  */
@@ -1466,12 +1244,6 @@ export interface AnalysisResult {
1466
1244
  */
1467
1245
  locations?: AnalysisResultLocation[];
1468
1246
  }
1469
- export declare namespace AnalysisResult {
1470
- /**
1471
- * @internal
1472
- */
1473
- const filterSensitiveLog: (obj: AnalysisResult) => any;
1474
- }
1475
1247
  export declare enum AnalysisStatus {
1476
1248
  COMPLETE = "COMPLETE",
1477
1249
  FAILED = "FAILED",
@@ -1495,12 +1267,6 @@ export interface Attribute {
1495
1267
  */
1496
1268
  jsonPath: string | undefined;
1497
1269
  }
1498
- export declare namespace Attribute {
1499
- /**
1500
- * @internal
1501
- */
1502
- const filterSensitiveLog: (obj: Attribute) => any;
1503
- }
1504
1270
  /**
1505
1271
  * <p>Metadata that can be used to manage the resource.</p>
1506
1272
  */
@@ -1514,12 +1280,6 @@ export interface Tag {
1514
1280
  */
1515
1281
  value: string | undefined;
1516
1282
  }
1517
- export declare namespace Tag {
1518
- /**
1519
- * @internal
1520
- */
1521
- const filterSensitiveLog: (obj: Tag) => any;
1522
- }
1523
1283
  export interface CreateAlarmModelRequest {
1524
1284
  /**
1525
1285
  * <p>A unique name that helps you identify the alarm model. You can't change this name after
@@ -1568,12 +1328,6 @@ export interface CreateAlarmModelRequest {
1568
1328
  */
1569
1329
  alarmCapabilities?: AlarmCapabilities;
1570
1330
  }
1571
- export declare namespace CreateAlarmModelRequest {
1572
- /**
1573
- * @internal
1574
- */
1575
- const filterSensitiveLog: (obj: CreateAlarmModelRequest) => any;
1576
- }
1577
1331
  export interface CreateAlarmModelResponse {
1578
1332
  /**
1579
1333
  * <p>The time the alarm model was created, in the Unix epoch format.</p>
@@ -1617,12 +1371,6 @@ export interface CreateAlarmModelResponse {
1617
1371
  */
1618
1372
  status?: AlarmModelVersionStatus | string;
1619
1373
  }
1620
- export declare namespace CreateAlarmModelResponse {
1621
- /**
1622
- * @internal
1623
- */
1624
- const filterSensitiveLog: (obj: CreateAlarmModelResponse) => any;
1625
- }
1626
1374
  /**
1627
1375
  * <p>An internal failure occurred.</p>
1628
1376
  */
@@ -1728,12 +1476,6 @@ export interface Event {
1728
1476
  */
1729
1477
  actions?: Action[];
1730
1478
  }
1731
- export declare namespace Event {
1732
- /**
1733
- * @internal
1734
- */
1735
- const filterSensitiveLog: (obj: Event) => any;
1736
- }
1737
1479
  /**
1738
1480
  * <p>When entering this state, perform these <code>actions</code> if the <code>condition</code>
1739
1481
  * is TRUE.</p>
@@ -1745,12 +1487,6 @@ export interface OnEnterLifecycle {
1745
1487
  */
1746
1488
  events?: Event[];
1747
1489
  }
1748
- export declare namespace OnEnterLifecycle {
1749
- /**
1750
- * @internal
1751
- */
1752
- const filterSensitiveLog: (obj: OnEnterLifecycle) => any;
1753
- }
1754
1490
  /**
1755
1491
  * <p>When exiting this state, perform these <code>actions</code> if the specified
1756
1492
  * <code>condition</code> is <code>TRUE</code>.</p>
@@ -1762,12 +1498,6 @@ export interface OnExitLifecycle {
1762
1498
  */
1763
1499
  events?: Event[];
1764
1500
  }
1765
- export declare namespace OnExitLifecycle {
1766
- /**
1767
- * @internal
1768
- */
1769
- const filterSensitiveLog: (obj: OnExitLifecycle) => any;
1770
- }
1771
1501
  /**
1772
1502
  * <p>Specifies the actions performed and the next state entered when a <code>condition</code>
1773
1503
  * evaluates to TRUE.</p>
@@ -1791,12 +1521,6 @@ export interface TransitionEvent {
1791
1521
  */
1792
1522
  nextState: string | undefined;
1793
1523
  }
1794
- export declare namespace TransitionEvent {
1795
- /**
1796
- * @internal
1797
- */
1798
- const filterSensitiveLog: (obj: TransitionEvent) => any;
1799
- }
1800
1524
  /**
1801
1525
  * <p>Specifies the actions performed when the <code>condition</code> evaluates to TRUE.</p>
1802
1526
  */
@@ -1811,12 +1535,6 @@ export interface OnInputLifecycle {
1811
1535
  */
1812
1536
  transitionEvents?: TransitionEvent[];
1813
1537
  }
1814
- export declare namespace OnInputLifecycle {
1815
- /**
1816
- * @internal
1817
- */
1818
- const filterSensitiveLog: (obj: OnInputLifecycle) => any;
1819
- }
1820
1538
  /**
1821
1539
  * <p>Information that defines a state of a detector.</p>
1822
1540
  */
@@ -1841,12 +1559,6 @@ export interface State {
1841
1559
  */
1842
1560
  onExit?: OnExitLifecycle;
1843
1561
  }
1844
- export declare namespace State {
1845
- /**
1846
- * @internal
1847
- */
1848
- const filterSensitiveLog: (obj: State) => any;
1849
- }
1850
1562
  /**
1851
1563
  * <p>Information that defines how a detector operates.</p>
1852
1564
  */
@@ -1860,12 +1572,6 @@ export interface DetectorModelDefinition {
1860
1572
  */
1861
1573
  initialStateName: string | undefined;
1862
1574
  }
1863
- export declare namespace DetectorModelDefinition {
1864
- /**
1865
- * @internal
1866
- */
1867
- const filterSensitiveLog: (obj: DetectorModelDefinition) => any;
1868
- }
1869
1575
  export declare enum EvaluationMethod {
1870
1576
  BATCH = "BATCH",
1871
1577
  SERIAL = "SERIAL"
@@ -1905,12 +1611,6 @@ export interface CreateDetectorModelRequest {
1905
1611
  */
1906
1612
  evaluationMethod?: EvaluationMethod | string;
1907
1613
  }
1908
- export declare namespace CreateDetectorModelRequest {
1909
- /**
1910
- * @internal
1911
- */
1912
- const filterSensitiveLog: (obj: CreateDetectorModelRequest) => any;
1913
- }
1914
1614
  export declare enum DetectorModelVersionStatus {
1915
1615
  ACTIVATING = "ACTIVATING",
1916
1616
  ACTIVE = "ACTIVE",
@@ -1972,24 +1672,12 @@ export interface DetectorModelConfiguration {
1972
1672
  */
1973
1673
  evaluationMethod?: EvaluationMethod | string;
1974
1674
  }
1975
- export declare namespace DetectorModelConfiguration {
1976
- /**
1977
- * @internal
1978
- */
1979
- const filterSensitiveLog: (obj: DetectorModelConfiguration) => any;
1980
- }
1981
1675
  export interface CreateDetectorModelResponse {
1982
1676
  /**
1983
1677
  * <p>Information about how the detector model is configured.</p>
1984
1678
  */
1985
1679
  detectorModelConfiguration?: DetectorModelConfiguration;
1986
1680
  }
1987
- export declare namespace CreateDetectorModelResponse {
1988
- /**
1989
- * @internal
1990
- */
1991
- const filterSensitiveLog: (obj: CreateDetectorModelResponse) => any;
1992
- }
1993
1681
  /**
1994
1682
  * <p>The definition of the input.</p>
1995
1683
  */
@@ -2003,12 +1691,6 @@ export interface InputDefinition {
2003
1691
  */
2004
1692
  attributes: Attribute[] | undefined;
2005
1693
  }
2006
- export declare namespace InputDefinition {
2007
- /**
2008
- * @internal
2009
- */
2010
- const filterSensitiveLog: (obj: InputDefinition) => any;
2011
- }
2012
1694
  export interface CreateInputRequest {
2013
1695
  /**
2014
1696
  * <p>The name you want to give to the input.</p>
@@ -2027,12 +1709,6 @@ export interface CreateInputRequest {
2027
1709
  */
2028
1710
  tags?: Tag[];
2029
1711
  }
2030
- export declare namespace CreateInputRequest {
2031
- /**
2032
- * @internal
2033
- */
2034
- const filterSensitiveLog: (obj: CreateInputRequest) => any;
2035
- }
2036
1712
  export declare enum InputStatus {
2037
1713
  ACTIVE = "ACTIVE",
2038
1714
  CREATING = "CREATING",
@@ -2068,44 +1744,20 @@ export interface InputConfiguration {
2068
1744
  */
2069
1745
  status: InputStatus | string | undefined;
2070
1746
  }
2071
- export declare namespace InputConfiguration {
2072
- /**
2073
- * @internal
2074
- */
2075
- const filterSensitiveLog: (obj: InputConfiguration) => any;
2076
- }
2077
1747
  export interface CreateInputResponse {
2078
1748
  /**
2079
1749
  * <p>Information about the configuration of the input.</p>
2080
1750
  */
2081
1751
  inputConfiguration?: InputConfiguration;
2082
1752
  }
2083
- export declare namespace CreateInputResponse {
2084
- /**
2085
- * @internal
2086
- */
2087
- const filterSensitiveLog: (obj: CreateInputResponse) => any;
2088
- }
2089
1753
  export interface DeleteAlarmModelRequest {
2090
1754
  /**
2091
1755
  * <p>The name of the alarm model.</p>
2092
1756
  */
2093
1757
  alarmModelName: string | undefined;
2094
1758
  }
2095
- export declare namespace DeleteAlarmModelRequest {
2096
- /**
2097
- * @internal
2098
- */
2099
- const filterSensitiveLog: (obj: DeleteAlarmModelRequest) => any;
2100
- }
2101
1759
  export interface DeleteAlarmModelResponse {
2102
1760
  }
2103
- export declare namespace DeleteAlarmModelResponse {
2104
- /**
2105
- * @internal
2106
- */
2107
- const filterSensitiveLog: (obj: DeleteAlarmModelResponse) => any;
2108
- }
2109
1761
  /**
2110
1762
  * <p>The resource was not found.</p>
2111
1763
  */
@@ -2123,40 +1775,16 @@ export interface DeleteDetectorModelRequest {
2123
1775
  */
2124
1776
  detectorModelName: string | undefined;
2125
1777
  }
2126
- export declare namespace DeleteDetectorModelRequest {
2127
- /**
2128
- * @internal
2129
- */
2130
- const filterSensitiveLog: (obj: DeleteDetectorModelRequest) => any;
2131
- }
2132
1778
  export interface DeleteDetectorModelResponse {
2133
1779
  }
2134
- export declare namespace DeleteDetectorModelResponse {
2135
- /**
2136
- * @internal
2137
- */
2138
- const filterSensitiveLog: (obj: DeleteDetectorModelResponse) => any;
2139
- }
2140
1780
  export interface DeleteInputRequest {
2141
1781
  /**
2142
1782
  * <p>The name of the input to delete.</p>
2143
1783
  */
2144
1784
  inputName: string | undefined;
2145
1785
  }
2146
- export declare namespace DeleteInputRequest {
2147
- /**
2148
- * @internal
2149
- */
2150
- const filterSensitiveLog: (obj: DeleteInputRequest) => any;
2151
- }
2152
1786
  export interface DeleteInputResponse {
2153
1787
  }
2154
- export declare namespace DeleteInputResponse {
2155
- /**
2156
- * @internal
2157
- */
2158
- const filterSensitiveLog: (obj: DeleteInputResponse) => any;
2159
- }
2160
1788
  export interface DescribeAlarmModelRequest {
2161
1789
  /**
2162
1790
  * <p>The name of the alarm model.</p>
@@ -2167,12 +1795,6 @@ export interface DescribeAlarmModelRequest {
2167
1795
  */
2168
1796
  alarmModelVersion?: string;
2169
1797
  }
2170
- export declare namespace DescribeAlarmModelRequest {
2171
- /**
2172
- * @internal
2173
- */
2174
- const filterSensitiveLog: (obj: DescribeAlarmModelRequest) => any;
2175
- }
2176
1798
  export interface DescribeAlarmModelResponse {
2177
1799
  /**
2178
1800
  * <p>The time the alarm model was created, in the Unix epoch format.</p>
@@ -2260,12 +1882,6 @@ export interface DescribeAlarmModelResponse {
2260
1882
  */
2261
1883
  alarmCapabilities?: AlarmCapabilities;
2262
1884
  }
2263
- export declare namespace DescribeAlarmModelResponse {
2264
- /**
2265
- * @internal
2266
- */
2267
- const filterSensitiveLog: (obj: DescribeAlarmModelResponse) => any;
2268
- }
2269
1885
  export interface DescribeDetectorModelRequest {
2270
1886
  /**
2271
1887
  * <p>The name of the detector model.</p>
@@ -2276,12 +1892,6 @@ export interface DescribeDetectorModelRequest {
2276
1892
  */
2277
1893
  detectorModelVersion?: string;
2278
1894
  }
2279
- export declare namespace DescribeDetectorModelRequest {
2280
- /**
2281
- * @internal
2282
- */
2283
- const filterSensitiveLog: (obj: DescribeDetectorModelRequest) => any;
2284
- }
2285
1895
  /**
2286
1896
  * <p>Information about the detector model.</p>
2287
1897
  */
@@ -2295,36 +1905,18 @@ export interface DetectorModel {
2295
1905
  */
2296
1906
  detectorModelConfiguration?: DetectorModelConfiguration;
2297
1907
  }
2298
- export declare namespace DetectorModel {
2299
- /**
2300
- * @internal
2301
- */
2302
- const filterSensitiveLog: (obj: DetectorModel) => any;
2303
- }
2304
1908
  export interface DescribeDetectorModelResponse {
2305
1909
  /**
2306
1910
  * <p>Information about the detector model.</p>
2307
1911
  */
2308
1912
  detectorModel?: DetectorModel;
2309
1913
  }
2310
- export declare namespace DescribeDetectorModelResponse {
2311
- /**
2312
- * @internal
2313
- */
2314
- const filterSensitiveLog: (obj: DescribeDetectorModelResponse) => any;
2315
- }
2316
1914
  export interface DescribeDetectorModelAnalysisRequest {
2317
1915
  /**
2318
1916
  * <p>The ID of the analysis result that you want to retrieve.</p>
2319
1917
  */
2320
1918
  analysisId: string | undefined;
2321
1919
  }
2322
- export declare namespace DescribeDetectorModelAnalysisRequest {
2323
- /**
2324
- * @internal
2325
- */
2326
- const filterSensitiveLog: (obj: DescribeDetectorModelAnalysisRequest) => any;
2327
- }
2328
1920
  export interface DescribeDetectorModelAnalysisResponse {
2329
1921
  /**
2330
1922
  * <p>The status of the analysis activity. The status can be one of the following values:</p>
@@ -2347,24 +1939,12 @@ export interface DescribeDetectorModelAnalysisResponse {
2347
1939
  */
2348
1940
  status?: AnalysisStatus | string;
2349
1941
  }
2350
- export declare namespace DescribeDetectorModelAnalysisResponse {
2351
- /**
2352
- * @internal
2353
- */
2354
- const filterSensitiveLog: (obj: DescribeDetectorModelAnalysisResponse) => any;
2355
- }
2356
1942
  export interface DescribeInputRequest {
2357
1943
  /**
2358
1944
  * <p>The name of the input.</p>
2359
1945
  */
2360
1946
  inputName: string | undefined;
2361
1947
  }
2362
- export declare namespace DescribeInputRequest {
2363
- /**
2364
- * @internal
2365
- */
2366
- const filterSensitiveLog: (obj: DescribeInputRequest) => any;
2367
- }
2368
1948
  /**
2369
1949
  * <p>Information about the input.</p>
2370
1950
  */
@@ -2378,32 +1958,14 @@ export interface Input {
2378
1958
  */
2379
1959
  inputDefinition?: InputDefinition;
2380
1960
  }
2381
- export declare namespace Input {
2382
- /**
2383
- * @internal
2384
- */
2385
- const filterSensitiveLog: (obj: Input) => any;
2386
- }
2387
1961
  export interface DescribeInputResponse {
2388
1962
  /**
2389
1963
  * <p>Information about the input.</p>
2390
1964
  */
2391
1965
  input?: Input;
2392
1966
  }
2393
- export declare namespace DescribeInputResponse {
2394
- /**
2395
- * @internal
2396
- */
2397
- const filterSensitiveLog: (obj: DescribeInputResponse) => any;
2398
- }
2399
1967
  export interface DescribeLoggingOptionsRequest {
2400
1968
  }
2401
- export declare namespace DescribeLoggingOptionsRequest {
2402
- /**
2403
- * @internal
2404
- */
2405
- const filterSensitiveLog: (obj: DescribeLoggingOptionsRequest) => any;
2406
- }
2407
1969
  /**
2408
1970
  * <p>The detector model and the specific detectors (instances) for which the logging level is
2409
1971
  * given.</p>
@@ -2419,12 +1981,6 @@ export interface DetectorDebugOption {
2419
1981
  */
2420
1982
  keyValue?: string;
2421
1983
  }
2422
- export declare namespace DetectorDebugOption {
2423
- /**
2424
- * @internal
2425
- */
2426
- const filterSensitiveLog: (obj: DetectorDebugOption) => any;
2427
- }
2428
1984
  export declare enum LoggingLevel {
2429
1985
  DEBUG = "DEBUG",
2430
1986
  ERROR = "ERROR",
@@ -2452,24 +2008,12 @@ export interface LoggingOptions {
2452
2008
  */
2453
2009
  detectorDebugOptions?: DetectorDebugOption[];
2454
2010
  }
2455
- export declare namespace LoggingOptions {
2456
- /**
2457
- * @internal
2458
- */
2459
- const filterSensitiveLog: (obj: LoggingOptions) => any;
2460
- }
2461
2011
  export interface DescribeLoggingOptionsResponse {
2462
2012
  /**
2463
2013
  * <p>The current settings of the AWS IoT Events logging options.</p>
2464
2014
  */
2465
2015
  loggingOptions?: LoggingOptions;
2466
2016
  }
2467
- export declare namespace DescribeLoggingOptionsResponse {
2468
- /**
2469
- * @internal
2470
- */
2471
- const filterSensitiveLog: (obj: DescribeLoggingOptionsResponse) => any;
2472
- }
2473
2017
  /**
2474
2018
  * <p>The requested operation is not supported.</p>
2475
2019
  */
@@ -2498,12 +2042,6 @@ export interface DetectorModelSummary {
2498
2042
  */
2499
2043
  creationTime?: Date;
2500
2044
  }
2501
- export declare namespace DetectorModelSummary {
2502
- /**
2503
- * @internal
2504
- */
2505
- const filterSensitiveLog: (obj: DetectorModelSummary) => any;
2506
- }
2507
2045
  /**
2508
2046
  * <p>Information about the detector model version.</p>
2509
2047
  */
@@ -2542,12 +2080,6 @@ export interface DetectorModelVersionSummary {
2542
2080
  */
2543
2081
  evaluationMethod?: EvaluationMethod | string;
2544
2082
  }
2545
- export declare namespace DetectorModelVersionSummary {
2546
- /**
2547
- * @internal
2548
- */
2549
- const filterSensitiveLog: (obj: DetectorModelVersionSummary) => any;
2550
- }
2551
2083
  export interface GetDetectorModelAnalysisResultsRequest {
2552
2084
  /**
2553
2085
  * <p>The ID of the analysis result that you want to retrieve.</p>
@@ -2562,12 +2094,6 @@ export interface GetDetectorModelAnalysisResultsRequest {
2562
2094
  */
2563
2095
  maxResults?: number;
2564
2096
  }
2565
- export declare namespace GetDetectorModelAnalysisResultsRequest {
2566
- /**
2567
- * @internal
2568
- */
2569
- const filterSensitiveLog: (obj: GetDetectorModelAnalysisResultsRequest) => any;
2570
- }
2571
2097
  export interface GetDetectorModelAnalysisResultsResponse {
2572
2098
  /**
2573
2099
  * <p>Contains information about one or more analysis results.</p>
@@ -2579,12 +2105,6 @@ export interface GetDetectorModelAnalysisResultsResponse {
2579
2105
  */
2580
2106
  nextToken?: string;
2581
2107
  }
2582
- export declare namespace GetDetectorModelAnalysisResultsResponse {
2583
- /**
2584
- * @internal
2585
- */
2586
- const filterSensitiveLog: (obj: GetDetectorModelAnalysisResultsResponse) => any;
2587
- }
2588
2108
  /**
2589
2109
  * <p>
2590
2110
  * The identifier of the input routed to AWS IoT Events.
@@ -2598,12 +2118,6 @@ export interface IotEventsInputIdentifier {
2598
2118
  */
2599
2119
  inputName: string | undefined;
2600
2120
  }
2601
- export declare namespace IotEventsInputIdentifier {
2602
- /**
2603
- * @internal
2604
- */
2605
- const filterSensitiveLog: (obj: IotEventsInputIdentifier) => any;
2606
- }
2607
2121
  /**
2608
2122
  * <p>
2609
2123
  * The asset model property identifer of the input routed from AWS IoT SiteWise.
@@ -2623,12 +2137,6 @@ export interface IotSiteWiseAssetModelPropertyIdentifier {
2623
2137
  */
2624
2138
  propertyId: string | undefined;
2625
2139
  }
2626
- export declare namespace IotSiteWiseAssetModelPropertyIdentifier {
2627
- /**
2628
- * @internal
2629
- */
2630
- const filterSensitiveLog: (obj: IotSiteWiseAssetModelPropertyIdentifier) => any;
2631
- }
2632
2140
  /**
2633
2141
  * <p>
2634
2142
  * The identifer of the input routed from AWS IoT SiteWise.
@@ -2642,12 +2150,6 @@ export interface IotSiteWiseInputIdentifier {
2642
2150
  */
2643
2151
  iotSiteWiseAssetModelPropertyIdentifier?: IotSiteWiseAssetModelPropertyIdentifier;
2644
2152
  }
2645
- export declare namespace IotSiteWiseInputIdentifier {
2646
- /**
2647
- * @internal
2648
- */
2649
- const filterSensitiveLog: (obj: IotSiteWiseInputIdentifier) => any;
2650
- }
2651
2153
  /**
2652
2154
  * <p>
2653
2155
  * The identifer of the input.
@@ -2667,12 +2169,6 @@ export interface InputIdentifier {
2667
2169
  */
2668
2170
  iotSiteWiseInputIdentifier?: IotSiteWiseInputIdentifier;
2669
2171
  }
2670
- export declare namespace InputIdentifier {
2671
- /**
2672
- * @internal
2673
- */
2674
- const filterSensitiveLog: (obj: InputIdentifier) => any;
2675
- }
2676
2172
  /**
2677
2173
  * <p>Information about the input.</p>
2678
2174
  */
@@ -2702,12 +2198,6 @@ export interface InputSummary {
2702
2198
  */
2703
2199
  status?: InputStatus | string;
2704
2200
  }
2705
- export declare namespace InputSummary {
2706
- /**
2707
- * @internal
2708
- */
2709
- const filterSensitiveLog: (obj: InputSummary) => any;
2710
- }
2711
2201
  export interface ListAlarmModelsRequest {
2712
2202
  /**
2713
2203
  * <p>The token that you can use to return the next set of results.</p>
@@ -2718,12 +2208,6 @@ export interface ListAlarmModelsRequest {
2718
2208
  */
2719
2209
  maxResults?: number;
2720
2210
  }
2721
- export declare namespace ListAlarmModelsRequest {
2722
- /**
2723
- * @internal
2724
- */
2725
- const filterSensitiveLog: (obj: ListAlarmModelsRequest) => any;
2726
- }
2727
2211
  export interface ListAlarmModelsResponse {
2728
2212
  /**
2729
2213
  * <p>A list that summarizes each alarm model.</p>
@@ -2735,12 +2219,6 @@ export interface ListAlarmModelsResponse {
2735
2219
  */
2736
2220
  nextToken?: string;
2737
2221
  }
2738
- export declare namespace ListAlarmModelsResponse {
2739
- /**
2740
- * @internal
2741
- */
2742
- const filterSensitiveLog: (obj: ListAlarmModelsResponse) => any;
2743
- }
2744
2222
  export interface ListAlarmModelVersionsRequest {
2745
2223
  /**
2746
2224
  * <p>The name of the alarm model.</p>
@@ -2755,12 +2233,6 @@ export interface ListAlarmModelVersionsRequest {
2755
2233
  */
2756
2234
  maxResults?: number;
2757
2235
  }
2758
- export declare namespace ListAlarmModelVersionsRequest {
2759
- /**
2760
- * @internal
2761
- */
2762
- const filterSensitiveLog: (obj: ListAlarmModelVersionsRequest) => any;
2763
- }
2764
2236
  export interface ListAlarmModelVersionsResponse {
2765
2237
  /**
2766
2238
  * <p>A list that summarizes each alarm model version.</p>
@@ -2772,12 +2244,6 @@ export interface ListAlarmModelVersionsResponse {
2772
2244
  */
2773
2245
  nextToken?: string;
2774
2246
  }
2775
- export declare namespace ListAlarmModelVersionsResponse {
2776
- /**
2777
- * @internal
2778
- */
2779
- const filterSensitiveLog: (obj: ListAlarmModelVersionsResponse) => any;
2780
- }
2781
2247
  export interface ListDetectorModelsRequest {
2782
2248
  /**
2783
2249
  * <p>The token that you can use to return the next set of results.</p>
@@ -2788,12 +2254,6 @@ export interface ListDetectorModelsRequest {
2788
2254
  */
2789
2255
  maxResults?: number;
2790
2256
  }
2791
- export declare namespace ListDetectorModelsRequest {
2792
- /**
2793
- * @internal
2794
- */
2795
- const filterSensitiveLog: (obj: ListDetectorModelsRequest) => any;
2796
- }
2797
2257
  export interface ListDetectorModelsResponse {
2798
2258
  /**
2799
2259
  * <p>Summary information about the detector models.</p>
@@ -2805,12 +2265,6 @@ export interface ListDetectorModelsResponse {
2805
2265
  */
2806
2266
  nextToken?: string;
2807
2267
  }
2808
- export declare namespace ListDetectorModelsResponse {
2809
- /**
2810
- * @internal
2811
- */
2812
- const filterSensitiveLog: (obj: ListDetectorModelsResponse) => any;
2813
- }
2814
2268
  export interface ListDetectorModelVersionsRequest {
2815
2269
  /**
2816
2270
  * <p>The name of the detector model whose versions are returned.</p>
@@ -2825,12 +2279,6 @@ export interface ListDetectorModelVersionsRequest {
2825
2279
  */
2826
2280
  maxResults?: number;
2827
2281
  }
2828
- export declare namespace ListDetectorModelVersionsRequest {
2829
- /**
2830
- * @internal
2831
- */
2832
- const filterSensitiveLog: (obj: ListDetectorModelVersionsRequest) => any;
2833
- }
2834
2282
  export interface ListDetectorModelVersionsResponse {
2835
2283
  /**
2836
2284
  * <p>Summary information about the detector model versions.</p>
@@ -2842,12 +2290,6 @@ export interface ListDetectorModelVersionsResponse {
2842
2290
  */
2843
2291
  nextToken?: string;
2844
2292
  }
2845
- export declare namespace ListDetectorModelVersionsResponse {
2846
- /**
2847
- * @internal
2848
- */
2849
- const filterSensitiveLog: (obj: ListDetectorModelVersionsResponse) => any;
2850
- }
2851
2293
  export interface ListInputRoutingsRequest {
2852
2294
  /**
2853
2295
  * <p>
@@ -2868,12 +2310,6 @@ export interface ListInputRoutingsRequest {
2868
2310
  */
2869
2311
  nextToken?: string;
2870
2312
  }
2871
- export declare namespace ListInputRoutingsRequest {
2872
- /**
2873
- * @internal
2874
- */
2875
- const filterSensitiveLog: (obj: ListInputRoutingsRequest) => any;
2876
- }
2877
2313
  /**
2878
2314
  * <p>
2879
2315
  * Contains information about the routed resource.
@@ -2893,12 +2329,6 @@ export interface RoutedResource {
2893
2329
  */
2894
2330
  arn?: string;
2895
2331
  }
2896
- export declare namespace RoutedResource {
2897
- /**
2898
- * @internal
2899
- */
2900
- const filterSensitiveLog: (obj: RoutedResource) => any;
2901
- }
2902
2332
  export interface ListInputRoutingsResponse {
2903
2333
  /**
2904
2334
  * <p>
@@ -2914,12 +2344,6 @@ export interface ListInputRoutingsResponse {
2914
2344
  */
2915
2345
  nextToken?: string;
2916
2346
  }
2917
- export declare namespace ListInputRoutingsResponse {
2918
- /**
2919
- * @internal
2920
- */
2921
- const filterSensitiveLog: (obj: ListInputRoutingsResponse) => any;
2922
- }
2923
2347
  export interface ListInputsRequest {
2924
2348
  /**
2925
2349
  * <p>The token that you can use to return the next set of results.</p>
@@ -2930,12 +2354,6 @@ export interface ListInputsRequest {
2930
2354
  */
2931
2355
  maxResults?: number;
2932
2356
  }
2933
- export declare namespace ListInputsRequest {
2934
- /**
2935
- * @internal
2936
- */
2937
- const filterSensitiveLog: (obj: ListInputsRequest) => any;
2938
- }
2939
2357
  export interface ListInputsResponse {
2940
2358
  /**
2941
2359
  * <p>Summary information about the inputs.</p>
@@ -2947,72 +2365,36 @@ export interface ListInputsResponse {
2947
2365
  */
2948
2366
  nextToken?: string;
2949
2367
  }
2950
- export declare namespace ListInputsResponse {
2951
- /**
2952
- * @internal
2953
- */
2954
- const filterSensitiveLog: (obj: ListInputsResponse) => any;
2955
- }
2956
2368
  export interface ListTagsForResourceRequest {
2957
2369
  /**
2958
2370
  * <p>The ARN of the resource.</p>
2959
2371
  */
2960
2372
  resourceArn: string | undefined;
2961
2373
  }
2962
- export declare namespace ListTagsForResourceRequest {
2963
- /**
2964
- * @internal
2965
- */
2966
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
2967
- }
2968
2374
  export interface ListTagsForResourceResponse {
2969
2375
  /**
2970
2376
  * <p>The list of tags assigned to the resource.</p>
2971
2377
  */
2972
2378
  tags?: Tag[];
2973
2379
  }
2974
- export declare namespace ListTagsForResourceResponse {
2975
- /**
2976
- * @internal
2977
- */
2978
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
2979
- }
2980
2380
  export interface PutLoggingOptionsRequest {
2981
2381
  /**
2982
2382
  * <p>The new values of the AWS IoT Events logging options.</p>
2983
2383
  */
2984
2384
  loggingOptions: LoggingOptions | undefined;
2985
2385
  }
2986
- export declare namespace PutLoggingOptionsRequest {
2987
- /**
2988
- * @internal
2989
- */
2990
- const filterSensitiveLog: (obj: PutLoggingOptionsRequest) => any;
2991
- }
2992
2386
  export interface StartDetectorModelAnalysisRequest {
2993
2387
  /**
2994
2388
  * <p>Information that defines how a detector operates.</p>
2995
2389
  */
2996
2390
  detectorModelDefinition: DetectorModelDefinition | undefined;
2997
2391
  }
2998
- export declare namespace StartDetectorModelAnalysisRequest {
2999
- /**
3000
- * @internal
3001
- */
3002
- const filterSensitiveLog: (obj: StartDetectorModelAnalysisRequest) => any;
3003
- }
3004
2392
  export interface StartDetectorModelAnalysisResponse {
3005
2393
  /**
3006
2394
  * <p>The ID that you can use to retrieve the analysis result.</p>
3007
2395
  */
3008
2396
  analysisId?: string;
3009
2397
  }
3010
- export declare namespace StartDetectorModelAnalysisResponse {
3011
- /**
3012
- * @internal
3013
- */
3014
- const filterSensitiveLog: (obj: StartDetectorModelAnalysisResponse) => any;
3015
- }
3016
2398
  export interface TagResourceRequest {
3017
2399
  /**
3018
2400
  * <p>The ARN of the resource.</p>
@@ -3023,20 +2405,8 @@ export interface TagResourceRequest {
3023
2405
  */
3024
2406
  tags: Tag[] | undefined;
3025
2407
  }
3026
- export declare namespace TagResourceRequest {
3027
- /**
3028
- * @internal
3029
- */
3030
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
3031
- }
3032
2408
  export interface TagResourceResponse {
3033
2409
  }
3034
- export declare namespace TagResourceResponse {
3035
- /**
3036
- * @internal
3037
- */
3038
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
3039
- }
3040
2410
  export interface UntagResourceRequest {
3041
2411
  /**
3042
2412
  * <p>The ARN of the resource.</p>
@@ -3047,20 +2417,8 @@ export interface UntagResourceRequest {
3047
2417
  */
3048
2418
  tagKeys: string[] | undefined;
3049
2419
  }
3050
- export declare namespace UntagResourceRequest {
3051
- /**
3052
- * @internal
3053
- */
3054
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
3055
- }
3056
2420
  export interface UntagResourceResponse {
3057
2421
  }
3058
- export declare namespace UntagResourceResponse {
3059
- /**
3060
- * @internal
3061
- */
3062
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
3063
- }
3064
2422
  export interface UpdateAlarmModelRequest {
3065
2423
  /**
3066
2424
  * <p>The name of the alarm model.</p>
@@ -3095,12 +2453,6 @@ export interface UpdateAlarmModelRequest {
3095
2453
  */
3096
2454
  alarmCapabilities?: AlarmCapabilities;
3097
2455
  }
3098
- export declare namespace UpdateAlarmModelRequest {
3099
- /**
3100
- * @internal
3101
- */
3102
- const filterSensitiveLog: (obj: UpdateAlarmModelRequest) => any;
3103
- }
3104
2456
  export interface UpdateAlarmModelResponse {
3105
2457
  /**
3106
2458
  * <p>The time the alarm model was created, in the Unix epoch format.</p>
@@ -3144,12 +2496,6 @@ export interface UpdateAlarmModelResponse {
3144
2496
  */
3145
2497
  status?: AlarmModelVersionStatus | string;
3146
2498
  }
3147
- export declare namespace UpdateAlarmModelResponse {
3148
- /**
3149
- * @internal
3150
- */
3151
- const filterSensitiveLog: (obj: UpdateAlarmModelResponse) => any;
3152
- }
3153
2499
  export interface UpdateDetectorModelRequest {
3154
2500
  /**
3155
2501
  * <p>The name of the detector model that is updated.</p>
@@ -3173,24 +2519,12 @@ export interface UpdateDetectorModelRequest {
3173
2519
  */
3174
2520
  evaluationMethod?: EvaluationMethod | string;
3175
2521
  }
3176
- export declare namespace UpdateDetectorModelRequest {
3177
- /**
3178
- * @internal
3179
- */
3180
- const filterSensitiveLog: (obj: UpdateDetectorModelRequest) => any;
3181
- }
3182
2522
  export interface UpdateDetectorModelResponse {
3183
2523
  /**
3184
2524
  * <p>Information about how the detector model is configured.</p>
3185
2525
  */
3186
2526
  detectorModelConfiguration?: DetectorModelConfiguration;
3187
2527
  }
3188
- export declare namespace UpdateDetectorModelResponse {
3189
- /**
3190
- * @internal
3191
- */
3192
- const filterSensitiveLog: (obj: UpdateDetectorModelResponse) => any;
3193
- }
3194
2528
  export interface UpdateInputRequest {
3195
2529
  /**
3196
2530
  * <p>The name of the input you want to update.</p>
@@ -3205,21 +2539,461 @@ export interface UpdateInputRequest {
3205
2539
  */
3206
2540
  inputDefinition: InputDefinition | undefined;
3207
2541
  }
3208
- export declare namespace UpdateInputRequest {
3209
- /**
3210
- * @internal
3211
- */
3212
- const filterSensitiveLog: (obj: UpdateInputRequest) => any;
3213
- }
3214
2542
  export interface UpdateInputResponse {
3215
2543
  /**
3216
2544
  * <p>Information about the configuration of the input.</p>
3217
2545
  */
3218
2546
  inputConfiguration?: InputConfiguration;
3219
2547
  }
3220
- export declare namespace UpdateInputResponse {
3221
- /**
3222
- * @internal
3223
- */
3224
- const filterSensitiveLog: (obj: UpdateInputResponse) => any;
3225
- }
2548
+ /**
2549
+ * @internal
2550
+ */
2551
+ export declare const AcknowledgeFlowFilterSensitiveLog: (obj: AcknowledgeFlow) => any;
2552
+ /**
2553
+ * @internal
2554
+ */
2555
+ export declare const ClearTimerActionFilterSensitiveLog: (obj: ClearTimerAction) => any;
2556
+ /**
2557
+ * @internal
2558
+ */
2559
+ export declare const PayloadFilterSensitiveLog: (obj: Payload) => any;
2560
+ /**
2561
+ * @internal
2562
+ */
2563
+ export declare const DynamoDBActionFilterSensitiveLog: (obj: DynamoDBAction) => any;
2564
+ /**
2565
+ * @internal
2566
+ */
2567
+ export declare const DynamoDBv2ActionFilterSensitiveLog: (obj: DynamoDBv2Action) => any;
2568
+ /**
2569
+ * @internal
2570
+ */
2571
+ export declare const FirehoseActionFilterSensitiveLog: (obj: FirehoseAction) => any;
2572
+ /**
2573
+ * @internal
2574
+ */
2575
+ export declare const IotEventsActionFilterSensitiveLog: (obj: IotEventsAction) => any;
2576
+ /**
2577
+ * @internal
2578
+ */
2579
+ export declare const AssetPropertyTimestampFilterSensitiveLog: (obj: AssetPropertyTimestamp) => any;
2580
+ /**
2581
+ * @internal
2582
+ */
2583
+ export declare const AssetPropertyVariantFilterSensitiveLog: (obj: AssetPropertyVariant) => any;
2584
+ /**
2585
+ * @internal
2586
+ */
2587
+ export declare const AssetPropertyValueFilterSensitiveLog: (obj: AssetPropertyValue) => any;
2588
+ /**
2589
+ * @internal
2590
+ */
2591
+ export declare const IotSiteWiseActionFilterSensitiveLog: (obj: IotSiteWiseAction) => any;
2592
+ /**
2593
+ * @internal
2594
+ */
2595
+ export declare const IotTopicPublishActionFilterSensitiveLog: (obj: IotTopicPublishAction) => any;
2596
+ /**
2597
+ * @internal
2598
+ */
2599
+ export declare const LambdaActionFilterSensitiveLog: (obj: LambdaAction) => any;
2600
+ /**
2601
+ * @internal
2602
+ */
2603
+ export declare const ResetTimerActionFilterSensitiveLog: (obj: ResetTimerAction) => any;
2604
+ /**
2605
+ * @internal
2606
+ */
2607
+ export declare const SetTimerActionFilterSensitiveLog: (obj: SetTimerAction) => any;
2608
+ /**
2609
+ * @internal
2610
+ */
2611
+ export declare const SetVariableActionFilterSensitiveLog: (obj: SetVariableAction) => any;
2612
+ /**
2613
+ * @internal
2614
+ */
2615
+ export declare const SNSTopicPublishActionFilterSensitiveLog: (obj: SNSTopicPublishAction) => any;
2616
+ /**
2617
+ * @internal
2618
+ */
2619
+ export declare const SqsActionFilterSensitiveLog: (obj: SqsAction) => any;
2620
+ /**
2621
+ * @internal
2622
+ */
2623
+ export declare const ActionFilterSensitiveLog: (obj: Action) => any;
2624
+ /**
2625
+ * @internal
2626
+ */
2627
+ export declare const AlarmActionFilterSensitiveLog: (obj: AlarmAction) => any;
2628
+ /**
2629
+ * @internal
2630
+ */
2631
+ export declare const InitializationConfigurationFilterSensitiveLog: (obj: InitializationConfiguration) => any;
2632
+ /**
2633
+ * @internal
2634
+ */
2635
+ export declare const AlarmCapabilitiesFilterSensitiveLog: (obj: AlarmCapabilities) => any;
2636
+ /**
2637
+ * @internal
2638
+ */
2639
+ export declare const AlarmEventActionsFilterSensitiveLog: (obj: AlarmEventActions) => any;
2640
+ /**
2641
+ * @internal
2642
+ */
2643
+ export declare const AlarmModelSummaryFilterSensitiveLog: (obj: AlarmModelSummary) => any;
2644
+ /**
2645
+ * @internal
2646
+ */
2647
+ export declare const AlarmModelVersionSummaryFilterSensitiveLog: (obj: AlarmModelVersionSummary) => any;
2648
+ /**
2649
+ * @internal
2650
+ */
2651
+ export declare const NotificationTargetActionsFilterSensitiveLog: (obj: NotificationTargetActions) => any;
2652
+ /**
2653
+ * @internal
2654
+ */
2655
+ export declare const EmailContentFilterSensitiveLog: (obj: EmailContent) => any;
2656
+ /**
2657
+ * @internal
2658
+ */
2659
+ export declare const SSOIdentityFilterSensitiveLog: (obj: SSOIdentity) => any;
2660
+ /**
2661
+ * @internal
2662
+ */
2663
+ export declare const RecipientDetailFilterSensitiveLog: (obj: RecipientDetail) => any;
2664
+ /**
2665
+ * @internal
2666
+ */
2667
+ export declare const EmailRecipientsFilterSensitiveLog: (obj: EmailRecipients) => any;
2668
+ /**
2669
+ * @internal
2670
+ */
2671
+ export declare const EmailConfigurationFilterSensitiveLog: (obj: EmailConfiguration) => any;
2672
+ /**
2673
+ * @internal
2674
+ */
2675
+ export declare const SMSConfigurationFilterSensitiveLog: (obj: SMSConfiguration) => any;
2676
+ /**
2677
+ * @internal
2678
+ */
2679
+ export declare const NotificationActionFilterSensitiveLog: (obj: NotificationAction) => any;
2680
+ /**
2681
+ * @internal
2682
+ */
2683
+ export declare const AlarmNotificationFilterSensitiveLog: (obj: AlarmNotification) => any;
2684
+ /**
2685
+ * @internal
2686
+ */
2687
+ export declare const SimpleRuleFilterSensitiveLog: (obj: SimpleRule) => any;
2688
+ /**
2689
+ * @internal
2690
+ */
2691
+ export declare const AlarmRuleFilterSensitiveLog: (obj: AlarmRule) => any;
2692
+ /**
2693
+ * @internal
2694
+ */
2695
+ export declare const AnalysisResultLocationFilterSensitiveLog: (obj: AnalysisResultLocation) => any;
2696
+ /**
2697
+ * @internal
2698
+ */
2699
+ export declare const AnalysisResultFilterSensitiveLog: (obj: AnalysisResult) => any;
2700
+ /**
2701
+ * @internal
2702
+ */
2703
+ export declare const AttributeFilterSensitiveLog: (obj: Attribute) => any;
2704
+ /**
2705
+ * @internal
2706
+ */
2707
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
2708
+ /**
2709
+ * @internal
2710
+ */
2711
+ export declare const CreateAlarmModelRequestFilterSensitiveLog: (obj: CreateAlarmModelRequest) => any;
2712
+ /**
2713
+ * @internal
2714
+ */
2715
+ export declare const CreateAlarmModelResponseFilterSensitiveLog: (obj: CreateAlarmModelResponse) => any;
2716
+ /**
2717
+ * @internal
2718
+ */
2719
+ export declare const EventFilterSensitiveLog: (obj: Event) => any;
2720
+ /**
2721
+ * @internal
2722
+ */
2723
+ export declare const OnEnterLifecycleFilterSensitiveLog: (obj: OnEnterLifecycle) => any;
2724
+ /**
2725
+ * @internal
2726
+ */
2727
+ export declare const OnExitLifecycleFilterSensitiveLog: (obj: OnExitLifecycle) => any;
2728
+ /**
2729
+ * @internal
2730
+ */
2731
+ export declare const TransitionEventFilterSensitiveLog: (obj: TransitionEvent) => any;
2732
+ /**
2733
+ * @internal
2734
+ */
2735
+ export declare const OnInputLifecycleFilterSensitiveLog: (obj: OnInputLifecycle) => any;
2736
+ /**
2737
+ * @internal
2738
+ */
2739
+ export declare const StateFilterSensitiveLog: (obj: State) => any;
2740
+ /**
2741
+ * @internal
2742
+ */
2743
+ export declare const DetectorModelDefinitionFilterSensitiveLog: (obj: DetectorModelDefinition) => any;
2744
+ /**
2745
+ * @internal
2746
+ */
2747
+ export declare const CreateDetectorModelRequestFilterSensitiveLog: (obj: CreateDetectorModelRequest) => any;
2748
+ /**
2749
+ * @internal
2750
+ */
2751
+ export declare const DetectorModelConfigurationFilterSensitiveLog: (obj: DetectorModelConfiguration) => any;
2752
+ /**
2753
+ * @internal
2754
+ */
2755
+ export declare const CreateDetectorModelResponseFilterSensitiveLog: (obj: CreateDetectorModelResponse) => any;
2756
+ /**
2757
+ * @internal
2758
+ */
2759
+ export declare const InputDefinitionFilterSensitiveLog: (obj: InputDefinition) => any;
2760
+ /**
2761
+ * @internal
2762
+ */
2763
+ export declare const CreateInputRequestFilterSensitiveLog: (obj: CreateInputRequest) => any;
2764
+ /**
2765
+ * @internal
2766
+ */
2767
+ export declare const InputConfigurationFilterSensitiveLog: (obj: InputConfiguration) => any;
2768
+ /**
2769
+ * @internal
2770
+ */
2771
+ export declare const CreateInputResponseFilterSensitiveLog: (obj: CreateInputResponse) => any;
2772
+ /**
2773
+ * @internal
2774
+ */
2775
+ export declare const DeleteAlarmModelRequestFilterSensitiveLog: (obj: DeleteAlarmModelRequest) => any;
2776
+ /**
2777
+ * @internal
2778
+ */
2779
+ export declare const DeleteAlarmModelResponseFilterSensitiveLog: (obj: DeleteAlarmModelResponse) => any;
2780
+ /**
2781
+ * @internal
2782
+ */
2783
+ export declare const DeleteDetectorModelRequestFilterSensitiveLog: (obj: DeleteDetectorModelRequest) => any;
2784
+ /**
2785
+ * @internal
2786
+ */
2787
+ export declare const DeleteDetectorModelResponseFilterSensitiveLog: (obj: DeleteDetectorModelResponse) => any;
2788
+ /**
2789
+ * @internal
2790
+ */
2791
+ export declare const DeleteInputRequestFilterSensitiveLog: (obj: DeleteInputRequest) => any;
2792
+ /**
2793
+ * @internal
2794
+ */
2795
+ export declare const DeleteInputResponseFilterSensitiveLog: (obj: DeleteInputResponse) => any;
2796
+ /**
2797
+ * @internal
2798
+ */
2799
+ export declare const DescribeAlarmModelRequestFilterSensitiveLog: (obj: DescribeAlarmModelRequest) => any;
2800
+ /**
2801
+ * @internal
2802
+ */
2803
+ export declare const DescribeAlarmModelResponseFilterSensitiveLog: (obj: DescribeAlarmModelResponse) => any;
2804
+ /**
2805
+ * @internal
2806
+ */
2807
+ export declare const DescribeDetectorModelRequestFilterSensitiveLog: (obj: DescribeDetectorModelRequest) => any;
2808
+ /**
2809
+ * @internal
2810
+ */
2811
+ export declare const DetectorModelFilterSensitiveLog: (obj: DetectorModel) => any;
2812
+ /**
2813
+ * @internal
2814
+ */
2815
+ export declare const DescribeDetectorModelResponseFilterSensitiveLog: (obj: DescribeDetectorModelResponse) => any;
2816
+ /**
2817
+ * @internal
2818
+ */
2819
+ export declare const DescribeDetectorModelAnalysisRequestFilterSensitiveLog: (obj: DescribeDetectorModelAnalysisRequest) => any;
2820
+ /**
2821
+ * @internal
2822
+ */
2823
+ export declare const DescribeDetectorModelAnalysisResponseFilterSensitiveLog: (obj: DescribeDetectorModelAnalysisResponse) => any;
2824
+ /**
2825
+ * @internal
2826
+ */
2827
+ export declare const DescribeInputRequestFilterSensitiveLog: (obj: DescribeInputRequest) => any;
2828
+ /**
2829
+ * @internal
2830
+ */
2831
+ export declare const InputFilterSensitiveLog: (obj: Input) => any;
2832
+ /**
2833
+ * @internal
2834
+ */
2835
+ export declare const DescribeInputResponseFilterSensitiveLog: (obj: DescribeInputResponse) => any;
2836
+ /**
2837
+ * @internal
2838
+ */
2839
+ export declare const DescribeLoggingOptionsRequestFilterSensitiveLog: (obj: DescribeLoggingOptionsRequest) => any;
2840
+ /**
2841
+ * @internal
2842
+ */
2843
+ export declare const DetectorDebugOptionFilterSensitiveLog: (obj: DetectorDebugOption) => any;
2844
+ /**
2845
+ * @internal
2846
+ */
2847
+ export declare const LoggingOptionsFilterSensitiveLog: (obj: LoggingOptions) => any;
2848
+ /**
2849
+ * @internal
2850
+ */
2851
+ export declare const DescribeLoggingOptionsResponseFilterSensitiveLog: (obj: DescribeLoggingOptionsResponse) => any;
2852
+ /**
2853
+ * @internal
2854
+ */
2855
+ export declare const DetectorModelSummaryFilterSensitiveLog: (obj: DetectorModelSummary) => any;
2856
+ /**
2857
+ * @internal
2858
+ */
2859
+ export declare const DetectorModelVersionSummaryFilterSensitiveLog: (obj: DetectorModelVersionSummary) => any;
2860
+ /**
2861
+ * @internal
2862
+ */
2863
+ export declare const GetDetectorModelAnalysisResultsRequestFilterSensitiveLog: (obj: GetDetectorModelAnalysisResultsRequest) => any;
2864
+ /**
2865
+ * @internal
2866
+ */
2867
+ export declare const GetDetectorModelAnalysisResultsResponseFilterSensitiveLog: (obj: GetDetectorModelAnalysisResultsResponse) => any;
2868
+ /**
2869
+ * @internal
2870
+ */
2871
+ export declare const IotEventsInputIdentifierFilterSensitiveLog: (obj: IotEventsInputIdentifier) => any;
2872
+ /**
2873
+ * @internal
2874
+ */
2875
+ export declare const IotSiteWiseAssetModelPropertyIdentifierFilterSensitiveLog: (obj: IotSiteWiseAssetModelPropertyIdentifier) => any;
2876
+ /**
2877
+ * @internal
2878
+ */
2879
+ export declare const IotSiteWiseInputIdentifierFilterSensitiveLog: (obj: IotSiteWiseInputIdentifier) => any;
2880
+ /**
2881
+ * @internal
2882
+ */
2883
+ export declare const InputIdentifierFilterSensitiveLog: (obj: InputIdentifier) => any;
2884
+ /**
2885
+ * @internal
2886
+ */
2887
+ export declare const InputSummaryFilterSensitiveLog: (obj: InputSummary) => any;
2888
+ /**
2889
+ * @internal
2890
+ */
2891
+ export declare const ListAlarmModelsRequestFilterSensitiveLog: (obj: ListAlarmModelsRequest) => any;
2892
+ /**
2893
+ * @internal
2894
+ */
2895
+ export declare const ListAlarmModelsResponseFilterSensitiveLog: (obj: ListAlarmModelsResponse) => any;
2896
+ /**
2897
+ * @internal
2898
+ */
2899
+ export declare const ListAlarmModelVersionsRequestFilterSensitiveLog: (obj: ListAlarmModelVersionsRequest) => any;
2900
+ /**
2901
+ * @internal
2902
+ */
2903
+ export declare const ListAlarmModelVersionsResponseFilterSensitiveLog: (obj: ListAlarmModelVersionsResponse) => any;
2904
+ /**
2905
+ * @internal
2906
+ */
2907
+ export declare const ListDetectorModelsRequestFilterSensitiveLog: (obj: ListDetectorModelsRequest) => any;
2908
+ /**
2909
+ * @internal
2910
+ */
2911
+ export declare const ListDetectorModelsResponseFilterSensitiveLog: (obj: ListDetectorModelsResponse) => any;
2912
+ /**
2913
+ * @internal
2914
+ */
2915
+ export declare const ListDetectorModelVersionsRequestFilterSensitiveLog: (obj: ListDetectorModelVersionsRequest) => any;
2916
+ /**
2917
+ * @internal
2918
+ */
2919
+ export declare const ListDetectorModelVersionsResponseFilterSensitiveLog: (obj: ListDetectorModelVersionsResponse) => any;
2920
+ /**
2921
+ * @internal
2922
+ */
2923
+ export declare const ListInputRoutingsRequestFilterSensitiveLog: (obj: ListInputRoutingsRequest) => any;
2924
+ /**
2925
+ * @internal
2926
+ */
2927
+ export declare const RoutedResourceFilterSensitiveLog: (obj: RoutedResource) => any;
2928
+ /**
2929
+ * @internal
2930
+ */
2931
+ export declare const ListInputRoutingsResponseFilterSensitiveLog: (obj: ListInputRoutingsResponse) => any;
2932
+ /**
2933
+ * @internal
2934
+ */
2935
+ export declare const ListInputsRequestFilterSensitiveLog: (obj: ListInputsRequest) => any;
2936
+ /**
2937
+ * @internal
2938
+ */
2939
+ export declare const ListInputsResponseFilterSensitiveLog: (obj: ListInputsResponse) => any;
2940
+ /**
2941
+ * @internal
2942
+ */
2943
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
2944
+ /**
2945
+ * @internal
2946
+ */
2947
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
2948
+ /**
2949
+ * @internal
2950
+ */
2951
+ export declare const PutLoggingOptionsRequestFilterSensitiveLog: (obj: PutLoggingOptionsRequest) => any;
2952
+ /**
2953
+ * @internal
2954
+ */
2955
+ export declare const StartDetectorModelAnalysisRequestFilterSensitiveLog: (obj: StartDetectorModelAnalysisRequest) => any;
2956
+ /**
2957
+ * @internal
2958
+ */
2959
+ export declare const StartDetectorModelAnalysisResponseFilterSensitiveLog: (obj: StartDetectorModelAnalysisResponse) => any;
2960
+ /**
2961
+ * @internal
2962
+ */
2963
+ export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
2964
+ /**
2965
+ * @internal
2966
+ */
2967
+ export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
2968
+ /**
2969
+ * @internal
2970
+ */
2971
+ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
2972
+ /**
2973
+ * @internal
2974
+ */
2975
+ export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
2976
+ /**
2977
+ * @internal
2978
+ */
2979
+ export declare const UpdateAlarmModelRequestFilterSensitiveLog: (obj: UpdateAlarmModelRequest) => any;
2980
+ /**
2981
+ * @internal
2982
+ */
2983
+ export declare const UpdateAlarmModelResponseFilterSensitiveLog: (obj: UpdateAlarmModelResponse) => any;
2984
+ /**
2985
+ * @internal
2986
+ */
2987
+ export declare const UpdateDetectorModelRequestFilterSensitiveLog: (obj: UpdateDetectorModelRequest) => any;
2988
+ /**
2989
+ * @internal
2990
+ */
2991
+ export declare const UpdateDetectorModelResponseFilterSensitiveLog: (obj: UpdateDetectorModelResponse) => any;
2992
+ /**
2993
+ * @internal
2994
+ */
2995
+ export declare const UpdateInputRequestFilterSensitiveLog: (obj: UpdateInputRequest) => any;
2996
+ /**
2997
+ * @internal
2998
+ */
2999
+ export declare const UpdateInputResponseFilterSensitiveLog: (obj: UpdateInputResponse) => any;