@aws-sdk/client-ssm 3.301.0 → 3.303.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.
@@ -98,28 +98,33 @@ export interface DescribeOpsItemsRequest {
98
98
  }
99
99
  /**
100
100
  * @public
101
- */
102
- export declare enum OpsItemStatus {
103
- APPROVED = "Approved",
104
- CANCELLED = "Cancelled",
105
- CANCELLING = "Cancelling",
106
- CHANGE_CALENDAR_OVERRIDE_APPROVED = "ChangeCalendarOverrideApproved",
107
- CHANGE_CALENDAR_OVERRIDE_REJECTED = "ChangeCalendarOverrideRejected",
108
- CLOSED = "Closed",
109
- COMPLETED_WITH_FAILURE = "CompletedWithFailure",
110
- COMPLETED_WITH_SUCCESS = "CompletedWithSuccess",
111
- FAILED = "Failed",
112
- IN_PROGRESS = "InProgress",
113
- OPEN = "Open",
114
- PENDING = "Pending",
115
- PENDING_APPROVAL = "PendingApproval",
116
- PENDING_CHANGE_CALENDAR_OVERRIDE = "PendingChangeCalendarOverride",
117
- REJECTED = "Rejected",
118
- RESOLVED = "Resolved",
119
- RUNBOOK_IN_PROGRESS = "RunbookInProgress",
120
- SCHEDULED = "Scheduled",
121
- TIMED_OUT = "TimedOut"
122
- }
101
+ * @enum
102
+ */
103
+ export declare const OpsItemStatus: {
104
+ readonly APPROVED: "Approved";
105
+ readonly CANCELLED: "Cancelled";
106
+ readonly CANCELLING: "Cancelling";
107
+ readonly CHANGE_CALENDAR_OVERRIDE_APPROVED: "ChangeCalendarOverrideApproved";
108
+ readonly CHANGE_CALENDAR_OVERRIDE_REJECTED: "ChangeCalendarOverrideRejected";
109
+ readonly CLOSED: "Closed";
110
+ readonly COMPLETED_WITH_FAILURE: "CompletedWithFailure";
111
+ readonly COMPLETED_WITH_SUCCESS: "CompletedWithSuccess";
112
+ readonly FAILED: "Failed";
113
+ readonly IN_PROGRESS: "InProgress";
114
+ readonly OPEN: "Open";
115
+ readonly PENDING: "Pending";
116
+ readonly PENDING_APPROVAL: "PendingApproval";
117
+ readonly PENDING_CHANGE_CALENDAR_OVERRIDE: "PendingChangeCalendarOverride";
118
+ readonly REJECTED: "Rejected";
119
+ readonly RESOLVED: "Resolved";
120
+ readonly RUNBOOK_IN_PROGRESS: "RunbookInProgress";
121
+ readonly SCHEDULED: "Scheduled";
122
+ readonly TIMED_OUT: "TimedOut";
123
+ };
124
+ /**
125
+ * @public
126
+ */
127
+ export type OpsItemStatus = (typeof OpsItemStatus)[keyof typeof OpsItemStatus];
123
128
  /**
124
129
  * @public
125
130
  * <p>A count of OpsItems.</p>
@@ -240,12 +245,17 @@ export interface DescribeOpsItemsResponse {
240
245
  }
241
246
  /**
242
247
  * @public
248
+ * @enum
243
249
  */
244
- export declare enum ParametersFilterKey {
245
- KEY_ID = "KeyId",
246
- NAME = "Name",
247
- TYPE = "Type"
248
- }
250
+ export declare const ParametersFilterKey: {
251
+ readonly KEY_ID: "KeyId";
252
+ readonly NAME: "Name";
253
+ readonly TYPE: "Type";
254
+ };
255
+ /**
256
+ * @public
257
+ */
258
+ export type ParametersFilterKey = (typeof ParametersFilterKey)[keyof typeof ParametersFilterKey];
249
259
  /**
250
260
  * @public
251
261
  * <p>This data type is deprecated. Instead, use <a>ParameterStringFilter</a>.</p>
@@ -341,20 +351,30 @@ export interface ParameterInlinePolicy {
341
351
  }
342
352
  /**
343
353
  * @public
354
+ * @enum
344
355
  */
345
- export declare enum ParameterTier {
346
- ADVANCED = "Advanced",
347
- INTELLIGENT_TIERING = "Intelligent-Tiering",
348
- STANDARD = "Standard"
349
- }
356
+ export declare const ParameterTier: {
357
+ readonly ADVANCED: "Advanced";
358
+ readonly INTELLIGENT_TIERING: "Intelligent-Tiering";
359
+ readonly STANDARD: "Standard";
360
+ };
350
361
  /**
351
362
  * @public
352
363
  */
353
- export declare enum ParameterType {
354
- SECURE_STRING = "SecureString",
355
- STRING = "String",
356
- STRING_LIST = "StringList"
357
- }
364
+ export type ParameterTier = (typeof ParameterTier)[keyof typeof ParameterTier];
365
+ /**
366
+ * @public
367
+ * @enum
368
+ */
369
+ export declare const ParameterType: {
370
+ readonly SECURE_STRING: "SecureString";
371
+ readonly STRING: "String";
372
+ readonly STRING_LIST: "StringList";
373
+ };
374
+ /**
375
+ * @public
376
+ */
377
+ export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
358
378
  /**
359
379
  * @public
360
380
  * <p>Metadata includes information like the ARN of the last user and the date/time the parameter
@@ -688,22 +708,32 @@ export interface DescribePatchGroupStateResult {
688
708
  }
689
709
  /**
690
710
  * @public
711
+ * @enum
691
712
  */
692
- export declare enum PatchSet {
693
- Application = "APPLICATION",
694
- Os = "OS"
695
- }
713
+ export declare const PatchSet: {
714
+ readonly Application: "APPLICATION";
715
+ readonly Os: "OS";
716
+ };
696
717
  /**
697
718
  * @public
698
719
  */
699
- export declare enum PatchProperty {
700
- PatchClassification = "CLASSIFICATION",
701
- PatchMsrcSeverity = "MSRC_SEVERITY",
702
- PatchPriority = "PRIORITY",
703
- PatchProductFamily = "PRODUCT_FAMILY",
704
- PatchSeverity = "SEVERITY",
705
- Product = "PRODUCT"
706
- }
720
+ export type PatchSet = (typeof PatchSet)[keyof typeof PatchSet];
721
+ /**
722
+ * @public
723
+ * @enum
724
+ */
725
+ export declare const PatchProperty: {
726
+ readonly PatchClassification: "CLASSIFICATION";
727
+ readonly PatchMsrcSeverity: "MSRC_SEVERITY";
728
+ readonly PatchPriority: "PRIORITY";
729
+ readonly PatchProductFamily: "PRODUCT_FAMILY";
730
+ readonly PatchSeverity: "SEVERITY";
731
+ readonly Product: "PRODUCT";
732
+ };
733
+ /**
734
+ * @public
735
+ */
736
+ export type PatchProperty = (typeof PatchProperty)[keyof typeof PatchProperty];
707
737
  /**
708
738
  * @public
709
739
  */
@@ -747,15 +777,20 @@ export interface DescribePatchPropertiesResult {
747
777
  }
748
778
  /**
749
779
  * @public
780
+ * @enum
750
781
  */
751
- export declare enum SessionFilterKey {
752
- INVOKED_AFTER = "InvokedAfter",
753
- INVOKED_BEFORE = "InvokedBefore",
754
- OWNER = "Owner",
755
- SESSION_ID = "SessionId",
756
- STATUS = "Status",
757
- TARGET_ID = "Target"
758
- }
782
+ export declare const SessionFilterKey: {
783
+ readonly INVOKED_AFTER: "InvokedAfter";
784
+ readonly INVOKED_BEFORE: "InvokedBefore";
785
+ readonly OWNER: "Owner";
786
+ readonly SESSION_ID: "SessionId";
787
+ readonly STATUS: "Status";
788
+ readonly TARGET_ID: "Target";
789
+ };
790
+ /**
791
+ * @public
792
+ */
793
+ export type SessionFilterKey = (typeof SessionFilterKey)[keyof typeof SessionFilterKey];
759
794
  /**
760
795
  * @public
761
796
  * <p>Describes a filter for Session Manager information.</p>
@@ -815,11 +850,16 @@ export interface SessionFilter {
815
850
  }
816
851
  /**
817
852
  * @public
853
+ * @enum
818
854
  */
819
- export declare enum SessionState {
820
- ACTIVE = "Active",
821
- HISTORY = "History"
822
- }
855
+ export declare const SessionState: {
856
+ readonly ACTIVE: "Active";
857
+ readonly HISTORY: "History";
858
+ };
859
+ /**
860
+ * @public
861
+ */
862
+ export type SessionState = (typeof SessionState)[keyof typeof SessionState];
823
863
  /**
824
864
  * @public
825
865
  */
@@ -859,15 +899,20 @@ export interface SessionManagerOutputUrl {
859
899
  }
860
900
  /**
861
901
  * @public
902
+ * @enum
862
903
  */
863
- export declare enum SessionStatus {
864
- CONNECTED = "Connected",
865
- CONNECTING = "Connecting",
866
- DISCONNECTED = "Disconnected",
867
- FAILED = "Failed",
868
- TERMINATED = "Terminated",
869
- TERMINATING = "Terminating"
870
- }
904
+ export declare const SessionStatus: {
905
+ readonly CONNECTED: "Connected";
906
+ readonly CONNECTING: "Connecting";
907
+ readonly DISCONNECTED: "Disconnected";
908
+ readonly FAILED: "Failed";
909
+ readonly TERMINATED: "Terminated";
910
+ readonly TERMINATING: "Terminating";
911
+ };
912
+ /**
913
+ * @public
914
+ */
915
+ export type SessionStatus = (typeof SessionStatus)[keyof typeof SessionStatus];
871
916
  /**
872
917
  * @public
873
918
  * <p>Information about a Session Manager connection to a managed node.</p>
@@ -1185,11 +1230,16 @@ export interface GetCalendarStateRequest {
1185
1230
  }
1186
1231
  /**
1187
1232
  * @public
1233
+ * @enum
1188
1234
  */
1189
- export declare enum CalendarState {
1190
- CLOSED = "CLOSED",
1191
- OPEN = "OPEN"
1192
- }
1235
+ export declare const CalendarState: {
1236
+ readonly CLOSED: "CLOSED";
1237
+ readonly OPEN: "OPEN";
1238
+ };
1239
+ /**
1240
+ * @public
1241
+ */
1242
+ export type CalendarState = (typeof CalendarState)[keyof typeof CalendarState];
1193
1243
  /**
1194
1244
  * @public
1195
1245
  */
@@ -1291,17 +1341,22 @@ export interface CloudWatchOutputConfig {
1291
1341
  }
1292
1342
  /**
1293
1343
  * @public
1344
+ * @enum
1294
1345
  */
1295
- export declare enum CommandInvocationStatus {
1296
- CANCELLED = "Cancelled",
1297
- CANCELLING = "Cancelling",
1298
- DELAYED = "Delayed",
1299
- FAILED = "Failed",
1300
- IN_PROGRESS = "InProgress",
1301
- PENDING = "Pending",
1302
- SUCCESS = "Success",
1303
- TIMED_OUT = "TimedOut"
1304
- }
1346
+ export declare const CommandInvocationStatus: {
1347
+ readonly CANCELLED: "Cancelled";
1348
+ readonly CANCELLING: "Cancelling";
1349
+ readonly DELAYED: "Delayed";
1350
+ readonly FAILED: "Failed";
1351
+ readonly IN_PROGRESS: "InProgress";
1352
+ readonly PENDING: "Pending";
1353
+ readonly SUCCESS: "Success";
1354
+ readonly TIMED_OUT: "TimedOut";
1355
+ };
1356
+ /**
1357
+ * @public
1358
+ */
1359
+ export type CommandInvocationStatus = (typeof CommandInvocationStatus)[keyof typeof CommandInvocationStatus];
1305
1360
  /**
1306
1361
  * @public
1307
1362
  */
@@ -1487,11 +1542,16 @@ export interface GetConnectionStatusRequest {
1487
1542
  }
1488
1543
  /**
1489
1544
  * @public
1545
+ * @enum
1490
1546
  */
1491
- export declare enum ConnectionStatus {
1492
- CONNECTED = "Connected",
1493
- NOT_CONNECTED = "NotConnected"
1494
- }
1547
+ export declare const ConnectionStatus: {
1548
+ readonly CONNECTED: "Connected";
1549
+ readonly NOT_CONNECTED: "NotConnected";
1550
+ };
1551
+ /**
1552
+ * @public
1553
+ */
1554
+ export type ConnectionStatus = (typeof ConnectionStatus)[keyof typeof ConnectionStatus];
1495
1555
  /**
1496
1556
  * @public
1497
1557
  */
@@ -1665,10 +1725,15 @@ export interface GetDocumentRequest {
1665
1725
  }
1666
1726
  /**
1667
1727
  * @public
1728
+ * @enum
1668
1729
  */
1669
- export declare enum AttachmentHashType {
1670
- SHA256 = "Sha256"
1671
- }
1730
+ export declare const AttachmentHashType: {
1731
+ readonly SHA256: "Sha256";
1732
+ };
1733
+ /**
1734
+ * @public
1735
+ */
1736
+ export type AttachmentHashType = (typeof AttachmentHashType)[keyof typeof AttachmentHashType];
1672
1737
  /**
1673
1738
  * @public
1674
1739
  * <p>A structure that includes attributes that describe a document attachment.</p>
@@ -1766,15 +1831,20 @@ export interface GetDocumentResult {
1766
1831
  }
1767
1832
  /**
1768
1833
  * @public
1834
+ * @enum
1769
1835
  */
1770
- export declare enum InventoryQueryOperatorType {
1771
- BEGIN_WITH = "BeginWith",
1772
- EQUAL = "Equal",
1773
- EXISTS = "Exists",
1774
- GREATER_THAN = "GreaterThan",
1775
- LESS_THAN = "LessThan",
1776
- NOT_EQUAL = "NotEqual"
1777
- }
1836
+ export declare const InventoryQueryOperatorType: {
1837
+ readonly BEGIN_WITH: "BeginWith";
1838
+ readonly EQUAL: "Equal";
1839
+ readonly EXISTS: "Exists";
1840
+ readonly GREATER_THAN: "GreaterThan";
1841
+ readonly LESS_THAN: "LessThan";
1842
+ readonly NOT_EQUAL: "NotEqual";
1843
+ };
1844
+ /**
1845
+ * @public
1846
+ */
1847
+ export type InventoryQueryOperatorType = (typeof InventoryQueryOperatorType)[keyof typeof InventoryQueryOperatorType];
1778
1848
  /**
1779
1849
  * @public
1780
1850
  * <p>One or more filters. Use a filter to return a more specific list of results.</p>
@@ -1959,11 +2029,16 @@ export interface GetInventorySchemaRequest {
1959
2029
  }
1960
2030
  /**
1961
2031
  * @public
2032
+ * @enum
1962
2033
  */
1963
- export declare enum InventoryAttributeDataType {
1964
- NUMBER = "number",
1965
- STRING = "string"
1966
- }
2034
+ export declare const InventoryAttributeDataType: {
2035
+ readonly NUMBER: "number";
2036
+ readonly STRING: "string";
2037
+ };
2038
+ /**
2039
+ * @public
2040
+ */
2041
+ export type InventoryAttributeDataType = (typeof InventoryAttributeDataType)[keyof typeof InventoryAttributeDataType];
1967
2042
  /**
1968
2043
  * @public
1969
2044
  * <p>Attributes are the entries within the inventory item content. It contains name and
@@ -2395,22 +2470,32 @@ export interface MaintenanceWindowLambdaParameters {
2395
2470
  }
2396
2471
  /**
2397
2472
  * @public
2473
+ * @enum
2398
2474
  */
2399
- export declare enum NotificationEvent {
2400
- ALL = "All",
2401
- CANCELLED = "Cancelled",
2402
- FAILED = "Failed",
2403
- IN_PROGRESS = "InProgress",
2404
- SUCCESS = "Success",
2405
- TIMED_OUT = "TimedOut"
2406
- }
2475
+ export declare const NotificationEvent: {
2476
+ readonly ALL: "All";
2477
+ readonly CANCELLED: "Cancelled";
2478
+ readonly FAILED: "Failed";
2479
+ readonly IN_PROGRESS: "InProgress";
2480
+ readonly SUCCESS: "Success";
2481
+ readonly TIMED_OUT: "TimedOut";
2482
+ };
2407
2483
  /**
2408
2484
  * @public
2409
2485
  */
2410
- export declare enum NotificationType {
2411
- Command = "Command",
2412
- Invocation = "Invocation"
2413
- }
2486
+ export type NotificationEvent = (typeof NotificationEvent)[keyof typeof NotificationEvent];
2487
+ /**
2488
+ * @public
2489
+ * @enum
2490
+ */
2491
+ export declare const NotificationType: {
2492
+ readonly Command: "Command";
2493
+ readonly Invocation: "Invocation";
2494
+ };
2495
+ /**
2496
+ * @public
2497
+ */
2498
+ export type NotificationType = (typeof NotificationType)[keyof typeof NotificationType];
2414
2499
  /**
2415
2500
  * @public
2416
2501
  * <p>Configurations for sending notifications.</p>
@@ -2899,15 +2984,20 @@ export interface GetOpsMetadataResult {
2899
2984
  }
2900
2985
  /**
2901
2986
  * @public
2987
+ * @enum
2902
2988
  */
2903
- export declare enum OpsFilterOperatorType {
2904
- BEGIN_WITH = "BeginWith",
2905
- EQUAL = "Equal",
2906
- EXISTS = "Exists",
2907
- GREATER_THAN = "GreaterThan",
2908
- LESS_THAN = "LessThan",
2909
- NOT_EQUAL = "NotEqual"
2910
- }
2989
+ export declare const OpsFilterOperatorType: {
2990
+ readonly BEGIN_WITH: "BeginWith";
2991
+ readonly EQUAL: "Equal";
2992
+ readonly EXISTS: "Exists";
2993
+ readonly GREATER_THAN: "GreaterThan";
2994
+ readonly LESS_THAN: "LessThan";
2995
+ readonly NOT_EQUAL: "NotEqual";
2996
+ };
2997
+ /**
2998
+ * @public
2999
+ */
3000
+ export type OpsFilterOperatorType = (typeof OpsFilterOperatorType)[keyof typeof OpsFilterOperatorType];
2911
3001
  /**
2912
3002
  * @public
2913
3003
  * <p>A filter for viewing OpsData summaries.</p>
@@ -3639,17 +3729,22 @@ export declare class ParameterVersionLabelLimitExceeded extends __BaseException
3639
3729
  }
3640
3730
  /**
3641
3731
  * @public
3732
+ * @enum
3642
3733
  */
3643
- export declare enum AssociationFilterKey {
3644
- AssociationId = "AssociationId",
3645
- AssociationName = "AssociationName",
3646
- InstanceId = "InstanceId",
3647
- LastExecutedAfter = "LastExecutedAfter",
3648
- LastExecutedBefore = "LastExecutedBefore",
3649
- Name = "Name",
3650
- ResourceGroupName = "ResourceGroupName",
3651
- Status = "AssociationStatusName"
3652
- }
3734
+ export declare const AssociationFilterKey: {
3735
+ readonly AssociationId: "AssociationId";
3736
+ readonly AssociationName: "AssociationName";
3737
+ readonly InstanceId: "InstanceId";
3738
+ readonly LastExecutedAfter: "LastExecutedAfter";
3739
+ readonly LastExecutedBefore: "LastExecutedBefore";
3740
+ readonly Name: "Name";
3741
+ readonly ResourceGroupName: "ResourceGroupName";
3742
+ readonly Status: "AssociationStatusName";
3743
+ };
3744
+ /**
3745
+ * @public
3746
+ */
3747
+ export type AssociationFilterKey = (typeof AssociationFilterKey)[keyof typeof AssociationFilterKey];
3653
3748
  /**
3654
3749
  * @public
3655
3750
  * <p>Describes a filter.</p>
@@ -3928,14 +4023,19 @@ export interface ListAssociationVersionsResult {
3928
4023
  }
3929
4024
  /**
3930
4025
  * @public
4026
+ * @enum
3931
4027
  */
3932
- export declare enum CommandFilterKey {
3933
- DOCUMENT_NAME = "DocumentName",
3934
- EXECUTION_STAGE = "ExecutionStage",
3935
- INVOKED_AFTER = "InvokedAfter",
3936
- INVOKED_BEFORE = "InvokedBefore",
3937
- STATUS = "Status"
3938
- }
4028
+ export declare const CommandFilterKey: {
4029
+ readonly DOCUMENT_NAME: "DocumentName";
4030
+ readonly EXECUTION_STAGE: "ExecutionStage";
4031
+ readonly INVOKED_AFTER: "InvokedAfter";
4032
+ readonly INVOKED_BEFORE: "InvokedBefore";
4033
+ readonly STATUS: "Status";
4034
+ };
4035
+ /**
4036
+ * @public
4037
+ */
4038
+ export type CommandFilterKey = (typeof CommandFilterKey)[keyof typeof CommandFilterKey];
3939
4039
  /**
3940
4040
  * @public
3941
4041
  * <p>Describes a command filter.</p>
@@ -4165,15 +4265,20 @@ export interface ListCommandInvocationsRequest {
4165
4265
  }
4166
4266
  /**
4167
4267
  * @public
4268
+ * @enum
4168
4269
  */
4169
- export declare enum CommandPluginStatus {
4170
- CANCELLED = "Cancelled",
4171
- FAILED = "Failed",
4172
- IN_PROGRESS = "InProgress",
4173
- PENDING = "Pending",
4174
- SUCCESS = "Success",
4175
- TIMED_OUT = "TimedOut"
4176
- }
4270
+ export declare const CommandPluginStatus: {
4271
+ readonly CANCELLED: "Cancelled";
4272
+ readonly FAILED: "Failed";
4273
+ readonly IN_PROGRESS: "InProgress";
4274
+ readonly PENDING: "Pending";
4275
+ readonly SUCCESS: "Success";
4276
+ readonly TIMED_OUT: "TimedOut";
4277
+ };
4278
+ /**
4279
+ * @public
4280
+ */
4281
+ export type CommandPluginStatus = (typeof CommandPluginStatus)[keyof typeof CommandPluginStatus];
4177
4282
  /**
4178
4283
  * @public
4179
4284
  * <p>Describes plugin details.</p>
@@ -4496,16 +4601,21 @@ export interface ListCommandsRequest {
4496
4601
  }
4497
4602
  /**
4498
4603
  * @public
4604
+ * @enum
4499
4605
  */
4500
- export declare enum CommandStatus {
4501
- CANCELLED = "Cancelled",
4502
- CANCELLING = "Cancelling",
4503
- FAILED = "Failed",
4504
- IN_PROGRESS = "InProgress",
4505
- PENDING = "Pending",
4506
- SUCCESS = "Success",
4507
- TIMED_OUT = "TimedOut"
4508
- }
4606
+ export declare const CommandStatus: {
4607
+ readonly CANCELLED: "Cancelled";
4608
+ readonly CANCELLING: "Cancelling";
4609
+ readonly FAILED: "Failed";
4610
+ readonly IN_PROGRESS: "InProgress";
4611
+ readonly PENDING: "Pending";
4612
+ readonly SUCCESS: "Success";
4613
+ readonly TIMED_OUT: "TimedOut";
4614
+ };
4615
+ /**
4616
+ * @public
4617
+ */
4618
+ export type CommandStatus = (typeof CommandStatus)[keyof typeof CommandStatus];
4509
4619
  /**
4510
4620
  * @public
4511
4621
  * <p>Describes a command request.</p>
@@ -4702,14 +4812,19 @@ export interface ListCommandsResult {
4702
4812
  }
4703
4813
  /**
4704
4814
  * @public
4815
+ * @enum
4705
4816
  */
4706
- export declare enum ComplianceQueryOperatorType {
4707
- BeginWith = "BEGIN_WITH",
4708
- Equal = "EQUAL",
4709
- GreaterThan = "GREATER_THAN",
4710
- LessThan = "LESS_THAN",
4711
- NotEqual = "NOT_EQUAL"
4712
- }
4817
+ export declare const ComplianceQueryOperatorType: {
4818
+ readonly BeginWith: "BEGIN_WITH";
4819
+ readonly Equal: "EQUAL";
4820
+ readonly GreaterThan: "GREATER_THAN";
4821
+ readonly LessThan: "LESS_THAN";
4822
+ readonly NotEqual: "NOT_EQUAL";
4823
+ };
4824
+ /**
4825
+ * @public
4826
+ */
4827
+ export type ComplianceQueryOperatorType = (typeof ComplianceQueryOperatorType)[keyof typeof ComplianceQueryOperatorType];
4713
4828
  /**
4714
4829
  * @public
4715
4830
  * <p>One or more filters. Use a filter to return a more specific list of results.</p>
@@ -4782,22 +4897,32 @@ export interface ComplianceExecutionSummary {
4782
4897
  }
4783
4898
  /**
4784
4899
  * @public
4900
+ * @enum
4785
4901
  */
4786
- export declare enum ComplianceSeverity {
4787
- Critical = "CRITICAL",
4788
- High = "HIGH",
4789
- Informational = "INFORMATIONAL",
4790
- Low = "LOW",
4791
- Medium = "MEDIUM",
4792
- Unspecified = "UNSPECIFIED"
4793
- }
4902
+ export declare const ComplianceSeverity: {
4903
+ readonly Critical: "CRITICAL";
4904
+ readonly High: "HIGH";
4905
+ readonly Informational: "INFORMATIONAL";
4906
+ readonly Low: "LOW";
4907
+ readonly Medium: "MEDIUM";
4908
+ readonly Unspecified: "UNSPECIFIED";
4909
+ };
4794
4910
  /**
4795
4911
  * @public
4796
4912
  */
4797
- export declare enum ComplianceStatus {
4798
- Compliant = "COMPLIANT",
4799
- NonCompliant = "NON_COMPLIANT"
4800
- }
4913
+ export type ComplianceSeverity = (typeof ComplianceSeverity)[keyof typeof ComplianceSeverity];
4914
+ /**
4915
+ * @public
4916
+ * @enum
4917
+ */
4918
+ export declare const ComplianceStatus: {
4919
+ readonly Compliant: "COMPLIANT";
4920
+ readonly NonCompliant: "NON_COMPLIANT";
4921
+ };
4922
+ /**
4923
+ * @public
4924
+ */
4925
+ export type ComplianceStatus = (typeof ComplianceStatus)[keyof typeof ComplianceStatus];
4801
4926
  /**
4802
4927
  * @public
4803
4928
  * <p>Information about the compliance as defined by the resource type. For example, for a patch
@@ -4991,10 +5116,15 @@ export interface ListComplianceSummariesResult {
4991
5116
  }
4992
5117
  /**
4993
5118
  * @public
5119
+ * @enum
4994
5120
  */
4995
- export declare enum DocumentMetadataEnum {
4996
- DocumentReviews = "DocumentReviews"
4997
- }
5121
+ export declare const DocumentMetadataEnum: {
5122
+ readonly DocumentReviews: "DocumentReviews";
5123
+ };
5124
+ /**
5125
+ * @public
5126
+ */
5127
+ export type DocumentMetadataEnum = (typeof DocumentMetadataEnum)[keyof typeof DocumentMetadataEnum];
4998
5128
  /**
4999
5129
  * @public
5000
5130
  */
@@ -5025,10 +5155,15 @@ export interface ListDocumentMetadataHistoryRequest {
5025
5155
  }
5026
5156
  /**
5027
5157
  * @public
5158
+ * @enum
5028
5159
  */
5029
- export declare enum DocumentReviewCommentType {
5030
- Comment = "Comment"
5031
- }
5160
+ export declare const DocumentReviewCommentType: {
5161
+ readonly Comment: "Comment";
5162
+ };
5163
+ /**
5164
+ * @public
5165
+ */
5166
+ export type DocumentReviewCommentType = (typeof DocumentReviewCommentType)[keyof typeof DocumentReviewCommentType];
5032
5167
  /**
5033
5168
  * @public
5034
5169
  * <p>Information about comments added to a document review request.</p>
@@ -5115,13 +5250,18 @@ export interface ListDocumentMetadataHistoryResponse {
5115
5250
  }
5116
5251
  /**
5117
5252
  * @public
5253
+ * @enum
5118
5254
  */
5119
- export declare enum DocumentFilterKey {
5120
- DocumentType = "DocumentType",
5121
- Name = "Name",
5122
- Owner = "Owner",
5123
- PlatformTypes = "PlatformTypes"
5124
- }
5255
+ export declare const DocumentFilterKey: {
5256
+ readonly DocumentType: "DocumentType";
5257
+ readonly Name: "Name";
5258
+ readonly Owner: "Owner";
5259
+ readonly PlatformTypes: "PlatformTypes";
5260
+ };
5261
+ /**
5262
+ * @public
5263
+ */
5264
+ export type DocumentFilterKey = (typeof DocumentFilterKey)[keyof typeof DocumentFilterKey];
5125
5265
  /**
5126
5266
  * @public
5127
5267
  * <p>This data type is deprecated. Instead, use <a>DocumentKeyValuesFilter</a>.</p>
@@ -5531,16 +5671,26 @@ export interface ListInventoryEntriesResult {
5531
5671
  }
5532
5672
  /**
5533
5673
  * @public
5674
+ * @enum
5534
5675
  */
5535
- export declare enum OpsItemEventFilterKey {
5536
- OPSITEM_ID = "OpsItemId"
5537
- }
5676
+ export declare const OpsItemEventFilterKey: {
5677
+ readonly OPSITEM_ID: "OpsItemId";
5678
+ };
5538
5679
  /**
5539
5680
  * @public
5540
5681
  */
5541
- export declare enum OpsItemEventFilterOperator {
5542
- EQUAL = "Equal"
5543
- }
5682
+ export type OpsItemEventFilterKey = (typeof OpsItemEventFilterKey)[keyof typeof OpsItemEventFilterKey];
5683
+ /**
5684
+ * @public
5685
+ * @enum
5686
+ */
5687
+ export declare const OpsItemEventFilterOperator: {
5688
+ readonly EQUAL: "Equal";
5689
+ };
5690
+ /**
5691
+ * @public
5692
+ */
5693
+ export type OpsItemEventFilterOperator = (typeof OpsItemEventFilterOperator)[keyof typeof OpsItemEventFilterOperator];
5544
5694
  /**
5545
5695
  * @public
5546
5696
  * <p>Describes a filter for a specific list of OpsItem events. You can filter event information
@@ -5642,18 +5792,28 @@ export interface ListOpsItemEventsResponse {
5642
5792
  }
5643
5793
  /**
5644
5794
  * @public
5795
+ * @enum
5645
5796
  */
5646
- export declare enum OpsItemRelatedItemsFilterKey {
5647
- ASSOCIATION_ID = "AssociationId",
5648
- RESOURCE_TYPE = "ResourceType",
5649
- RESOURCE_URI = "ResourceUri"
5650
- }
5797
+ export declare const OpsItemRelatedItemsFilterKey: {
5798
+ readonly ASSOCIATION_ID: "AssociationId";
5799
+ readonly RESOURCE_TYPE: "ResourceType";
5800
+ readonly RESOURCE_URI: "ResourceUri";
5801
+ };
5651
5802
  /**
5652
5803
  * @public
5653
5804
  */
5654
- export declare enum OpsItemRelatedItemsFilterOperator {
5655
- EQUAL = "Equal"
5656
- }
5805
+ export type OpsItemRelatedItemsFilterKey = (typeof OpsItemRelatedItemsFilterKey)[keyof typeof OpsItemRelatedItemsFilterKey];
5806
+ /**
5807
+ * @public
5808
+ * @enum
5809
+ */
5810
+ export declare const OpsItemRelatedItemsFilterOperator: {
5811
+ readonly EQUAL: "Equal";
5812
+ };
5813
+ /**
5814
+ * @public
5815
+ */
5816
+ export type OpsItemRelatedItemsFilterOperator = (typeof OpsItemRelatedItemsFilterOperator)[keyof typeof OpsItemRelatedItemsFilterOperator];
5657
5817
  /**
5658
5818
  * @public
5659
5819
  * <p>Describes a filter for a specific list of related-item resources. </p>
@@ -5920,12 +6080,17 @@ export interface ListResourceDataSyncRequest {
5920
6080
  }
5921
6081
  /**
5922
6082
  * @public
6083
+ * @enum
5923
6084
  */
5924
- export declare enum LastResourceDataSyncStatus {
5925
- FAILED = "Failed",
5926
- INPROGRESS = "InProgress",
5927
- SUCCESSFUL = "Successful"
5928
- }
6085
+ export declare const LastResourceDataSyncStatus: {
6086
+ readonly FAILED: "Failed";
6087
+ readonly INPROGRESS: "InProgress";
6088
+ readonly SUCCESSFUL: "Successful";
6089
+ };
6090
+ /**
6091
+ * @public
6092
+ */
6093
+ export type LastResourceDataSyncStatus = (typeof LastResourceDataSyncStatus)[keyof typeof LastResourceDataSyncStatus];
5929
6094
  /**
5930
6095
  * @public
5931
6096
  * <p>The data type name for including resource data sync state. There are four sync
@@ -6201,11 +6366,16 @@ export interface ComplianceItemEntry {
6201
6366
  }
6202
6367
  /**
6203
6368
  * @public
6369
+ * @enum
6204
6370
  */
6205
- export declare enum ComplianceUploadType {
6206
- Complete = "COMPLETE",
6207
- Partial = "PARTIAL"
6208
- }
6371
+ export declare const ComplianceUploadType: {
6372
+ readonly Complete: "COMPLETE";
6373
+ readonly Partial: "PARTIAL";
6374
+ };
6375
+ /**
6376
+ * @public
6377
+ */
6378
+ export type ComplianceUploadType = (typeof ComplianceUploadType)[keyof typeof ComplianceUploadType];
6209
6379
  /**
6210
6380
  * @public
6211
6381
  */
@@ -7402,14 +7572,19 @@ export declare class InvalidAutomationSignalException extends __BaseException {
7402
7572
  }
7403
7573
  /**
7404
7574
  * @public
7575
+ * @enum
7405
7576
  */
7406
- export declare enum SignalType {
7407
- APPROVE = "Approve",
7408
- REJECT = "Reject",
7409
- RESUME = "Resume",
7410
- START_STEP = "StartStep",
7411
- STOP_STEP = "StopStep"
7412
- }
7577
+ export declare const SignalType: {
7578
+ readonly APPROVE: "Approve";
7579
+ readonly REJECT: "Reject";
7580
+ readonly RESUME: "Resume";
7581
+ readonly START_STEP: "StartStep";
7582
+ readonly STOP_STEP: "StopStep";
7583
+ };
7584
+ /**
7585
+ * @public
7586
+ */
7587
+ export type SignalType = (typeof SignalType)[keyof typeof SignalType];
7413
7588
  /**
7414
7589
  * @public
7415
7590
  */
@@ -8018,11 +8193,16 @@ export declare class InvalidAutomationStatusUpdateException extends __BaseExcept
8018
8193
  }
8019
8194
  /**
8020
8195
  * @public
8196
+ * @enum
8021
8197
  */
8022
- export declare enum StopType {
8023
- CANCEL = "Cancel",
8024
- COMPLETE = "Complete"
8025
- }
8198
+ export declare const StopType: {
8199
+ readonly CANCEL: "Cancel";
8200
+ readonly COMPLETE: "Complete";
8201
+ };
8202
+ /**
8203
+ * @public
8204
+ */
8205
+ export type StopType = (typeof StopType)[keyof typeof StopType];
8026
8206
  /**
8027
8207
  * @public
8028
8208
  */