@aws-sdk/client-iot 3.301.0 → 3.306.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.
@@ -204,14 +204,19 @@ export interface DeleteTopicRuleDestinationResponse {
204
204
  }
205
205
  /**
206
206
  * @public
207
+ * @enum
207
208
  */
208
- export declare enum LogTargetType {
209
- CLIENT_ID = "CLIENT_ID",
210
- DEFAULT = "DEFAULT",
211
- PRINCIPAL_ID = "PRINCIPAL_ID",
212
- SOURCE_IP = "SOURCE_IP",
213
- THING_GROUP = "THING_GROUP"
214
- }
209
+ export declare const LogTargetType: {
210
+ readonly CLIENT_ID: "CLIENT_ID";
211
+ readonly DEFAULT: "DEFAULT";
212
+ readonly PRINCIPAL_ID: "PRINCIPAL_ID";
213
+ readonly SOURCE_IP: "SOURCE_IP";
214
+ readonly THING_GROUP: "THING_GROUP";
215
+ };
216
+ /**
217
+ * @public
218
+ */
219
+ export type LogTargetType = (typeof LogTargetType)[keyof typeof LogTargetType];
215
220
  /**
216
221
  * @public
217
222
  */
@@ -557,18 +562,28 @@ export interface DescribeCACertificateRequest {
557
562
  }
558
563
  /**
559
564
  * @public
565
+ * @enum
560
566
  */
561
- export declare enum CertificateMode {
562
- DEFAULT = "DEFAULT",
563
- SNI_ONLY = "SNI_ONLY"
564
- }
567
+ export declare const CertificateMode: {
568
+ readonly DEFAULT: "DEFAULT";
569
+ readonly SNI_ONLY: "SNI_ONLY";
570
+ };
565
571
  /**
566
572
  * @public
567
573
  */
568
- export declare enum CACertificateStatus {
569
- ACTIVE = "ACTIVE",
570
- INACTIVE = "INACTIVE"
571
- }
574
+ export type CertificateMode = (typeof CertificateMode)[keyof typeof CertificateMode];
575
+ /**
576
+ * @public
577
+ * @enum
578
+ */
579
+ export declare const CACertificateStatus: {
580
+ readonly ACTIVE: "ACTIVE";
581
+ readonly INACTIVE: "INACTIVE";
582
+ };
583
+ /**
584
+ * @public
585
+ */
586
+ export type CACertificateStatus = (typeof CACertificateStatus)[keyof typeof CACertificateStatus];
572
587
  /**
573
588
  * @public
574
589
  * <p>When the certificate is valid.</p>
@@ -685,15 +700,20 @@ export interface DescribeCertificateRequest {
685
700
  }
686
701
  /**
687
702
  * @public
703
+ * @enum
688
704
  */
689
- export declare enum CertificateStatus {
690
- ACTIVE = "ACTIVE",
691
- INACTIVE = "INACTIVE",
692
- PENDING_ACTIVATION = "PENDING_ACTIVATION",
693
- PENDING_TRANSFER = "PENDING_TRANSFER",
694
- REGISTER_INACTIVE = "REGISTER_INACTIVE",
695
- REVOKED = "REVOKED"
696
- }
705
+ export declare const CertificateStatus: {
706
+ readonly ACTIVE: "ACTIVE";
707
+ readonly INACTIVE: "INACTIVE";
708
+ readonly PENDING_ACTIVATION: "PENDING_ACTIVATION";
709
+ readonly PENDING_TRANSFER: "PENDING_TRANSFER";
710
+ readonly REGISTER_INACTIVE: "REGISTER_INACTIVE";
711
+ readonly REVOKED: "REVOKED";
712
+ };
713
+ /**
714
+ * @public
715
+ */
716
+ export type CertificateStatus = (typeof CertificateStatus)[keyof typeof CertificateStatus];
697
717
  /**
698
718
  * @public
699
719
  * <p>Data used to transfer a certificate to an Amazon Web Services account.</p>
@@ -935,13 +955,18 @@ export interface DetectMitigationActionsTaskStatistics {
935
955
  }
936
956
  /**
937
957
  * @public
958
+ * @enum
938
959
  */
939
- export declare enum DetectMitigationActionsTaskStatus {
940
- CANCELED = "CANCELED",
941
- FAILED = "FAILED",
942
- IN_PROGRESS = "IN_PROGRESS",
943
- SUCCESSFUL = "SUCCESSFUL"
944
- }
960
+ export declare const DetectMitigationActionsTaskStatus: {
961
+ readonly CANCELED: "CANCELED";
962
+ readonly FAILED: "FAILED";
963
+ readonly IN_PROGRESS: "IN_PROGRESS";
964
+ readonly SUCCESSFUL: "SUCCESSFUL";
965
+ };
966
+ /**
967
+ * @public
968
+ */
969
+ export type DetectMitigationActionsTaskStatus = (typeof DetectMitigationActionsTaskStatus)[keyof typeof DetectMitigationActionsTaskStatus];
945
970
  /**
946
971
  * @public
947
972
  * <p>
@@ -1093,26 +1118,41 @@ export interface DescribeDomainConfigurationRequest {
1093
1118
  }
1094
1119
  /**
1095
1120
  * @public
1121
+ * @enum
1096
1122
  */
1097
- export declare enum DomainConfigurationStatus {
1098
- DISABLED = "DISABLED",
1099
- ENABLED = "ENABLED"
1100
- }
1123
+ export declare const DomainConfigurationStatus: {
1124
+ readonly DISABLED: "DISABLED";
1125
+ readonly ENABLED: "ENABLED";
1126
+ };
1101
1127
  /**
1102
1128
  * @public
1103
1129
  */
1104
- export declare enum DomainType {
1105
- AWS_MANAGED = "AWS_MANAGED",
1106
- CUSTOMER_MANAGED = "CUSTOMER_MANAGED",
1107
- ENDPOINT = "ENDPOINT"
1108
- }
1130
+ export type DomainConfigurationStatus = (typeof DomainConfigurationStatus)[keyof typeof DomainConfigurationStatus];
1109
1131
  /**
1110
1132
  * @public
1133
+ * @enum
1111
1134
  */
1112
- export declare enum ServerCertificateStatus {
1113
- INVALID = "INVALID",
1114
- VALID = "VALID"
1115
- }
1135
+ export declare const DomainType: {
1136
+ readonly AWS_MANAGED: "AWS_MANAGED";
1137
+ readonly CUSTOMER_MANAGED: "CUSTOMER_MANAGED";
1138
+ readonly ENDPOINT: "ENDPOINT";
1139
+ };
1140
+ /**
1141
+ * @public
1142
+ */
1143
+ export type DomainType = (typeof DomainType)[keyof typeof DomainType];
1144
+ /**
1145
+ * @public
1146
+ * @enum
1147
+ */
1148
+ export declare const ServerCertificateStatus: {
1149
+ readonly INVALID: "INVALID";
1150
+ readonly VALID: "VALID";
1151
+ };
1152
+ /**
1153
+ * @public
1154
+ */
1155
+ export type ServerCertificateStatus = (typeof ServerCertificateStatus)[keyof typeof ServerCertificateStatus];
1116
1156
  /**
1117
1157
  * @public
1118
1158
  * <p>An object that contains information about a server certificate.</p>
@@ -1228,20 +1268,25 @@ export interface DescribeEventConfigurationsRequest {
1228
1268
  }
1229
1269
  /**
1230
1270
  * @public
1271
+ * @enum
1231
1272
  */
1232
- export declare enum EventType {
1233
- CA_CERTIFICATE = "CA_CERTIFICATE",
1234
- CERTIFICATE = "CERTIFICATE",
1235
- JOB = "JOB",
1236
- JOB_EXECUTION = "JOB_EXECUTION",
1237
- POLICY = "POLICY",
1238
- THING = "THING",
1239
- THING_GROUP = "THING_GROUP",
1240
- THING_GROUP_HIERARCHY = "THING_GROUP_HIERARCHY",
1241
- THING_GROUP_MEMBERSHIP = "THING_GROUP_MEMBERSHIP",
1242
- THING_TYPE = "THING_TYPE",
1243
- THING_TYPE_ASSOCIATION = "THING_TYPE_ASSOCIATION"
1244
- }
1273
+ export declare const EventType: {
1274
+ readonly CA_CERTIFICATE: "CA_CERTIFICATE";
1275
+ readonly CERTIFICATE: "CERTIFICATE";
1276
+ readonly JOB: "JOB";
1277
+ readonly JOB_EXECUTION: "JOB_EXECUTION";
1278
+ readonly POLICY: "POLICY";
1279
+ readonly THING: "THING";
1280
+ readonly THING_GROUP: "THING_GROUP";
1281
+ readonly THING_GROUP_HIERARCHY: "THING_GROUP_HIERARCHY";
1282
+ readonly THING_GROUP_MEMBERSHIP: "THING_GROUP_MEMBERSHIP";
1283
+ readonly THING_TYPE: "THING_TYPE";
1284
+ readonly THING_TYPE_ASSOCIATION: "THING_TYPE_ASSOCIATION";
1285
+ };
1286
+ /**
1287
+ * @public
1288
+ */
1289
+ export type EventType = (typeof EventType)[keyof typeof EventType];
1245
1290
  /**
1246
1291
  * @public
1247
1292
  * <p>Configuration.</p>
@@ -1347,12 +1392,17 @@ export interface DescribeIndexRequest {
1347
1392
  }
1348
1393
  /**
1349
1394
  * @public
1395
+ * @enum
1350
1396
  */
1351
- export declare enum IndexStatus {
1352
- ACTIVE = "ACTIVE",
1353
- BUILDING = "BUILDING",
1354
- REBUILDING = "REBUILDING"
1355
- }
1397
+ export declare const IndexStatus: {
1398
+ readonly ACTIVE: "ACTIVE";
1399
+ readonly BUILDING: "BUILDING";
1400
+ readonly REBUILDING: "REBUILDING";
1401
+ };
1402
+ /**
1403
+ * @public
1404
+ */
1405
+ export type IndexStatus = (typeof IndexStatus)[keyof typeof IndexStatus];
1356
1406
  /**
1357
1407
  * @public
1358
1408
  */
@@ -1455,14 +1505,19 @@ export interface ScheduledJobRollout {
1455
1505
  }
1456
1506
  /**
1457
1507
  * @public
1508
+ * @enum
1458
1509
  */
1459
- export declare enum JobStatus {
1460
- CANCELED = "CANCELED",
1461
- COMPLETED = "COMPLETED",
1462
- DELETION_IN_PROGRESS = "DELETION_IN_PROGRESS",
1463
- IN_PROGRESS = "IN_PROGRESS",
1464
- SCHEDULED = "SCHEDULED"
1465
- }
1510
+ export declare const JobStatus: {
1511
+ readonly CANCELED: "CANCELED";
1512
+ readonly COMPLETED: "COMPLETED";
1513
+ readonly DELETION_IN_PROGRESS: "DELETION_IN_PROGRESS";
1514
+ readonly IN_PROGRESS: "IN_PROGRESS";
1515
+ readonly SCHEDULED: "SCHEDULED";
1516
+ };
1517
+ /**
1518
+ * @public
1519
+ */
1520
+ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
1466
1521
  /**
1467
1522
  * @public
1468
1523
  * <p>The <code>Job</code> object contains details about a job.</p>
@@ -1631,17 +1686,22 @@ export interface DescribeJobExecutionRequest {
1631
1686
  }
1632
1687
  /**
1633
1688
  * @public
1689
+ * @enum
1634
1690
  */
1635
- export declare enum JobExecutionStatus {
1636
- CANCELED = "CANCELED",
1637
- FAILED = "FAILED",
1638
- IN_PROGRESS = "IN_PROGRESS",
1639
- QUEUED = "QUEUED",
1640
- REJECTED = "REJECTED",
1641
- REMOVED = "REMOVED",
1642
- SUCCEEDED = "SUCCEEDED",
1643
- TIMED_OUT = "TIMED_OUT"
1644
- }
1691
+ export declare const JobExecutionStatus: {
1692
+ readonly CANCELED: "CANCELED";
1693
+ readonly FAILED: "FAILED";
1694
+ readonly IN_PROGRESS: "IN_PROGRESS";
1695
+ readonly QUEUED: "QUEUED";
1696
+ readonly REJECTED: "REJECTED";
1697
+ readonly REMOVED: "REMOVED";
1698
+ readonly SUCCEEDED: "SUCCEEDED";
1699
+ readonly TIMED_OUT: "TIMED_OUT";
1700
+ };
1701
+ /**
1702
+ * @public
1703
+ */
1704
+ export type JobExecutionStatus = (typeof JobExecutionStatus)[keyof typeof JobExecutionStatus];
1645
1705
  /**
1646
1706
  * @public
1647
1707
  * <p>Details of the job execution status.</p>
@@ -1902,15 +1962,20 @@ export interface DescribeMitigationActionRequest {
1902
1962
  }
1903
1963
  /**
1904
1964
  * @public
1965
+ * @enum
1905
1966
  */
1906
- export declare enum MitigationActionType {
1907
- ADD_THINGS_TO_THING_GROUP = "ADD_THINGS_TO_THING_GROUP",
1908
- ENABLE_IOT_LOGGING = "ENABLE_IOT_LOGGING",
1909
- PUBLISH_FINDING_TO_SNS = "PUBLISH_FINDING_TO_SNS",
1910
- REPLACE_DEFAULT_POLICY_VERSION = "REPLACE_DEFAULT_POLICY_VERSION",
1911
- UPDATE_CA_CERTIFICATE = "UPDATE_CA_CERTIFICATE",
1912
- UPDATE_DEVICE_CERTIFICATE = "UPDATE_DEVICE_CERTIFICATE"
1913
- }
1967
+ export declare const MitigationActionType: {
1968
+ readonly ADD_THINGS_TO_THING_GROUP: "ADD_THINGS_TO_THING_GROUP";
1969
+ readonly ENABLE_IOT_LOGGING: "ENABLE_IOT_LOGGING";
1970
+ readonly PUBLISH_FINDING_TO_SNS: "PUBLISH_FINDING_TO_SNS";
1971
+ readonly REPLACE_DEFAULT_POLICY_VERSION: "REPLACE_DEFAULT_POLICY_VERSION";
1972
+ readonly UPDATE_CA_CERTIFICATE: "UPDATE_CA_CERTIFICATE";
1973
+ readonly UPDATE_DEVICE_CERTIFICATE: "UPDATE_DEVICE_CERTIFICATE";
1974
+ };
1975
+ /**
1976
+ * @public
1977
+ */
1978
+ export type MitigationActionType = (typeof MitigationActionType)[keyof typeof MitigationActionType];
1914
1979
  /**
1915
1980
  * @public
1916
1981
  */
@@ -2344,12 +2409,17 @@ export interface DescribeThingGroupRequest {
2344
2409
  }
2345
2410
  /**
2346
2411
  * @public
2412
+ * @enum
2347
2413
  */
2348
- export declare enum DynamicGroupStatus {
2349
- ACTIVE = "ACTIVE",
2350
- BUILDING = "BUILDING",
2351
- REBUILDING = "REBUILDING"
2352
- }
2414
+ export declare const DynamicGroupStatus: {
2415
+ readonly ACTIVE: "ACTIVE";
2416
+ readonly BUILDING: "BUILDING";
2417
+ readonly REBUILDING: "REBUILDING";
2418
+ };
2419
+ /**
2420
+ * @public
2421
+ */
2422
+ export type DynamicGroupStatus = (typeof DynamicGroupStatus)[keyof typeof DynamicGroupStatus];
2353
2423
  /**
2354
2424
  * @public
2355
2425
  * <p>The name and ARN of a group.</p>
@@ -2438,14 +2508,19 @@ export interface DescribeThingRegistrationTaskRequest {
2438
2508
  }
2439
2509
  /**
2440
2510
  * @public
2511
+ * @enum
2441
2512
  */
2442
- export declare enum Status {
2443
- Cancelled = "Cancelled",
2444
- Cancelling = "Cancelling",
2445
- Completed = "Completed",
2446
- Failed = "Failed",
2447
- InProgress = "InProgress"
2448
- }
2513
+ export declare const Status: {
2514
+ readonly Cancelled: "Cancelled";
2515
+ readonly Cancelling: "Cancelling";
2516
+ readonly Completed: "Completed";
2517
+ readonly Failed: "Failed";
2518
+ readonly InProgress: "InProgress";
2519
+ };
2520
+ /**
2521
+ * @public
2522
+ */
2523
+ export type Status = (typeof Status)[keyof typeof Status];
2449
2524
  /**
2450
2525
  * @public
2451
2526
  */
@@ -2672,12 +2747,17 @@ export interface GetBehaviorModelTrainingSummariesRequest {
2672
2747
  }
2673
2748
  /**
2674
2749
  * @public
2750
+ * @enum
2675
2751
  */
2676
- export declare enum ModelStatus {
2677
- ACTIVE = "ACTIVE",
2678
- EXPIRED = "EXPIRED",
2679
- PENDING_BUILD = "PENDING_BUILD"
2680
- }
2752
+ export declare const ModelStatus: {
2753
+ readonly ACTIVE: "ACTIVE";
2754
+ readonly EXPIRED: "EXPIRED";
2755
+ readonly PENDING_BUILD: "PENDING_BUILD";
2756
+ };
2757
+ /**
2758
+ * @public
2759
+ */
2760
+ export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus];
2681
2761
  /**
2682
2762
  * @public
2683
2763
  * <p>
@@ -2896,12 +2976,17 @@ export interface GetIndexingConfigurationRequest {
2896
2976
  }
2897
2977
  /**
2898
2978
  * @public
2979
+ * @enum
2899
2980
  */
2900
- export declare enum FieldType {
2901
- BOOLEAN = "Boolean",
2902
- NUMBER = "Number",
2903
- STRING = "String"
2904
- }
2981
+ export declare const FieldType: {
2982
+ readonly BOOLEAN: "Boolean";
2983
+ readonly NUMBER: "Number";
2984
+ readonly STRING: "String";
2985
+ };
2986
+ /**
2987
+ * @public
2988
+ */
2989
+ export type FieldType = (typeof FieldType)[keyof typeof FieldType];
2905
2990
  /**
2906
2991
  * @public
2907
2992
  * <p>Describes the name and data type at a field.</p>
@@ -2918,11 +3003,16 @@ export interface Field {
2918
3003
  }
2919
3004
  /**
2920
3005
  * @public
3006
+ * @enum
2921
3007
  */
2922
- export declare enum ThingGroupIndexingMode {
2923
- OFF = "OFF",
2924
- ON = "ON"
2925
- }
3008
+ export declare const ThingGroupIndexingMode: {
3009
+ readonly OFF: "OFF";
3010
+ readonly ON: "ON";
3011
+ };
3012
+ /**
3013
+ * @public
3014
+ */
3015
+ export type ThingGroupIndexingMode = (typeof ThingGroupIndexingMode)[keyof typeof ThingGroupIndexingMode];
2926
3016
  /**
2927
3017
  * @public
2928
3018
  * <p>Thing group indexing configuration.</p>
@@ -2946,11 +3036,16 @@ export interface ThingGroupIndexingConfiguration {
2946
3036
  }
2947
3037
  /**
2948
3038
  * @public
3039
+ * @enum
2949
3040
  */
2950
- export declare enum DeviceDefenderIndexingMode {
2951
- OFF = "OFF",
2952
- VIOLATIONS = "VIOLATIONS"
2953
- }
3041
+ export declare const DeviceDefenderIndexingMode: {
3042
+ readonly OFF: "OFF";
3043
+ readonly VIOLATIONS: "VIOLATIONS";
3044
+ };
3045
+ /**
3046
+ * @public
3047
+ */
3048
+ export type DeviceDefenderIndexingMode = (typeof DeviceDefenderIndexingMode)[keyof typeof DeviceDefenderIndexingMode];
2954
3049
  /**
2955
3050
  * @public
2956
3051
  * <p>Provides additional filters for specific data sources. Named shadow is the only data source that currently supports and requires a filter.
@@ -2968,26 +3063,41 @@ export interface IndexingFilter {
2968
3063
  }
2969
3064
  /**
2970
3065
  * @public
3066
+ * @enum
2971
3067
  */
2972
- export declare enum NamedShadowIndexingMode {
2973
- OFF = "OFF",
2974
- ON = "ON"
2975
- }
3068
+ export declare const NamedShadowIndexingMode: {
3069
+ readonly OFF: "OFF";
3070
+ readonly ON: "ON";
3071
+ };
2976
3072
  /**
2977
3073
  * @public
2978
3074
  */
2979
- export declare enum ThingConnectivityIndexingMode {
2980
- OFF = "OFF",
2981
- STATUS = "STATUS"
2982
- }
3075
+ export type NamedShadowIndexingMode = (typeof NamedShadowIndexingMode)[keyof typeof NamedShadowIndexingMode];
2983
3076
  /**
2984
3077
  * @public
3078
+ * @enum
2985
3079
  */
2986
- export declare enum ThingIndexingMode {
2987
- OFF = "OFF",
2988
- REGISTRY = "REGISTRY",
2989
- REGISTRY_AND_SHADOW = "REGISTRY_AND_SHADOW"
2990
- }
3080
+ export declare const ThingConnectivityIndexingMode: {
3081
+ readonly OFF: "OFF";
3082
+ readonly STATUS: "STATUS";
3083
+ };
3084
+ /**
3085
+ * @public
3086
+ */
3087
+ export type ThingConnectivityIndexingMode = (typeof ThingConnectivityIndexingMode)[keyof typeof ThingConnectivityIndexingMode];
3088
+ /**
3089
+ * @public
3090
+ * @enum
3091
+ */
3092
+ export declare const ThingIndexingMode: {
3093
+ readonly OFF: "OFF";
3094
+ readonly REGISTRY: "REGISTRY";
3095
+ readonly REGISTRY_AND_SHADOW: "REGISTRY_AND_SHADOW";
3096
+ };
3097
+ /**
3098
+ * @public
3099
+ */
3100
+ export type ThingIndexingMode = (typeof ThingIndexingMode)[keyof typeof ThingIndexingMode];
2991
3101
  /**
2992
3102
  * @public
2993
3103
  * <p>The thing indexing configuration. For more information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/managing-index.html">Managing
@@ -3579,12 +3689,17 @@ export declare class NotConfiguredException extends __BaseException {
3579
3689
  }
3580
3690
  /**
3581
3691
  * @public
3692
+ * @enum
3582
3693
  */
3583
- export declare enum BehaviorCriteriaType {
3584
- MACHINE_LEARNING = "MACHINE_LEARNING",
3585
- STATIC = "STATIC",
3586
- STATISTICAL = "STATISTICAL"
3587
- }
3694
+ export declare const BehaviorCriteriaType: {
3695
+ readonly MACHINE_LEARNING: "MACHINE_LEARNING";
3696
+ readonly STATIC: "STATIC";
3697
+ readonly STATISTICAL: "STATISTICAL";
3698
+ };
3699
+ /**
3700
+ * @public
3701
+ */
3702
+ export type BehaviorCriteriaType = (typeof BehaviorCriteriaType)[keyof typeof BehaviorCriteriaType];
3588
3703
  /**
3589
3704
  * @public
3590
3705
  */
@@ -4230,13 +4345,18 @@ export interface ListDetectMitigationActionsExecutionsRequest {
4230
4345
  }
4231
4346
  /**
4232
4347
  * @public
4348
+ * @enum
4233
4349
  */
4234
- export declare enum DetectMitigationActionExecutionStatus {
4235
- FAILED = "FAILED",
4236
- IN_PROGRESS = "IN_PROGRESS",
4237
- SKIPPED = "SKIPPED",
4238
- SUCCESSFUL = "SUCCESSFUL"
4239
- }
4350
+ export declare const DetectMitigationActionExecutionStatus: {
4351
+ readonly FAILED: "FAILED";
4352
+ readonly IN_PROGRESS: "IN_PROGRESS";
4353
+ readonly SKIPPED: "SKIPPED";
4354
+ readonly SUCCESSFUL: "SUCCESSFUL";
4355
+ };
4356
+ /**
4357
+ * @public
4358
+ */
4359
+ export type DetectMitigationActionExecutionStatus = (typeof DetectMitigationActionExecutionStatus)[keyof typeof DetectMitigationActionExecutionStatus];
4240
4360
  /**
4241
4361
  * @public
4242
4362
  * <p>
@@ -251,11 +251,16 @@ export interface ListThingPrincipalsResponse {
251
251
  }
252
252
  /**
253
253
  * @public
254
+ * @enum
254
255
  */
255
- export declare enum ReportType {
256
- ERRORS = "ERRORS",
257
- RESULTS = "RESULTS"
258
- }
256
+ export declare const ReportType: {
257
+ readonly ERRORS: "ERRORS";
258
+ readonly RESULTS: "RESULTS";
259
+ };
260
+ /**
261
+ * @public
262
+ */
263
+ export type ReportType = (typeof ReportType)[keyof typeof ReportType];
259
264
  /**
260
265
  * @public
261
266
  */
@@ -830,12 +835,17 @@ export interface ListViolationEventsRequest {
830
835
  }
831
836
  /**
832
837
  * @public
838
+ * @enum
833
839
  */
834
- export declare enum ViolationEventType {
835
- ALARM_CLEARED = "alarm-cleared",
836
- ALARM_INVALIDATED = "alarm-invalidated",
837
- IN_ALARM = "in-alarm"
838
- }
840
+ export declare const ViolationEventType: {
841
+ readonly ALARM_CLEARED: "alarm-cleared";
842
+ readonly ALARM_INVALIDATED: "alarm-invalidated";
843
+ readonly IN_ALARM: "in-alarm";
844
+ };
845
+ /**
846
+ * @public
847
+ */
848
+ export type ViolationEventType = (typeof ViolationEventType)[keyof typeof ViolationEventType];
839
849
  /**
840
850
  * @public
841
851
  * <p>Information about a Device Defender security profile behavior violation.</p>