@aws-sdk/client-cloudformation 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.
@@ -2,21 +2,31 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
2
2
  import { CloudFormationServiceException as __BaseException } from "./CloudFormationServiceException";
3
3
  /**
4
4
  * @public
5
+ * @enum
5
6
  */
6
- export declare enum AccountFilterType {
7
- DIFFERENCE = "DIFFERENCE",
8
- INTERSECTION = "INTERSECTION",
9
- NONE = "NONE",
10
- UNION = "UNION"
11
- }
7
+ export declare const AccountFilterType: {
8
+ readonly DIFFERENCE: "DIFFERENCE";
9
+ readonly INTERSECTION: "INTERSECTION";
10
+ readonly NONE: "NONE";
11
+ readonly UNION: "UNION";
12
+ };
12
13
  /**
13
14
  * @public
14
15
  */
15
- export declare enum AccountGateStatus {
16
- FAILED = "FAILED",
17
- SKIPPED = "SKIPPED",
18
- SUCCEEDED = "SUCCEEDED"
19
- }
16
+ export type AccountFilterType = (typeof AccountFilterType)[keyof typeof AccountFilterType];
17
+ /**
18
+ * @public
19
+ * @enum
20
+ */
21
+ export declare const AccountGateStatus: {
22
+ readonly FAILED: "FAILED";
23
+ readonly SKIPPED: "SKIPPED";
24
+ readonly SUCCEEDED: "SUCCEEDED";
25
+ };
26
+ /**
27
+ * @public
28
+ */
29
+ export type AccountGateStatus = (typeof AccountGateStatus)[keyof typeof AccountGateStatus];
20
30
  /**
21
31
  * @public
22
32
  * <p>Structure that contains the results of the account gate function which CloudFormation invokes, if present, before proceeding with a stack set operation in an account and
@@ -129,19 +139,29 @@ export interface LoggingConfig {
129
139
  }
130
140
  /**
131
141
  * @public
142
+ * @enum
132
143
  */
133
- export declare enum ThirdPartyType {
134
- HOOK = "HOOK",
135
- MODULE = "MODULE",
136
- RESOURCE = "RESOURCE"
137
- }
144
+ export declare const ThirdPartyType: {
145
+ readonly HOOK: "HOOK";
146
+ readonly MODULE: "MODULE";
147
+ readonly RESOURCE: "RESOURCE";
148
+ };
138
149
  /**
139
150
  * @public
140
151
  */
141
- export declare enum VersionBump {
142
- MAJOR = "MAJOR",
143
- MINOR = "MINOR"
144
- }
152
+ export type ThirdPartyType = (typeof ThirdPartyType)[keyof typeof ThirdPartyType];
153
+ /**
154
+ * @public
155
+ * @enum
156
+ */
157
+ export declare const VersionBump: {
158
+ readonly MAJOR: "MAJOR";
159
+ readonly MINOR: "MINOR";
160
+ };
161
+ /**
162
+ * @public
163
+ */
164
+ export type VersionBump = (typeof VersionBump)[keyof typeof VersionBump];
145
165
  /**
146
166
  * @public
147
167
  */
@@ -433,11 +453,16 @@ export declare class TypeConfigurationNotFoundException extends __BaseException
433
453
  }
434
454
  /**
435
455
  * @public
456
+ * @enum
436
457
  */
437
- export declare enum CallAs {
438
- DELEGATED_ADMIN = "DELEGATED_ADMIN",
439
- SELF = "SELF"
440
- }
458
+ export declare const CallAs: {
459
+ readonly DELEGATED_ADMIN: "DELEGATED_ADMIN";
460
+ readonly SELF: "SELF";
461
+ };
462
+ /**
463
+ * @public
464
+ */
465
+ export type CallAs = (typeof CallAs)[keyof typeof CallAs];
441
466
  /**
442
467
  * @public
443
468
  * <p>The input for the <a>CancelUpdateStack</a> action.</p>
@@ -471,67 +496,102 @@ export declare class TokenAlreadyExistsException extends __BaseException {
471
496
  }
472
497
  /**
473
498
  * @public
499
+ * @enum
474
500
  */
475
- export declare enum Capability {
476
- CAPABILITY_AUTO_EXPAND = "CAPABILITY_AUTO_EXPAND",
477
- CAPABILITY_IAM = "CAPABILITY_IAM",
478
- CAPABILITY_NAMED_IAM = "CAPABILITY_NAMED_IAM"
479
- }
501
+ export declare const Capability: {
502
+ readonly CAPABILITY_AUTO_EXPAND: "CAPABILITY_AUTO_EXPAND";
503
+ readonly CAPABILITY_IAM: "CAPABILITY_IAM";
504
+ readonly CAPABILITY_NAMED_IAM: "CAPABILITY_NAMED_IAM";
505
+ };
480
506
  /**
481
507
  * @public
482
508
  */
483
- export declare enum Category {
484
- ACTIVATED = "ACTIVATED",
485
- AWS_TYPES = "AWS_TYPES",
486
- REGISTERED = "REGISTERED",
487
- THIRD_PARTY = "THIRD_PARTY"
488
- }
509
+ export type Capability = (typeof Capability)[keyof typeof Capability];
489
510
  /**
490
511
  * @public
512
+ * @enum
491
513
  */
492
- export declare enum ChangeAction {
493
- Add = "Add",
494
- Dynamic = "Dynamic",
495
- Import = "Import",
496
- Modify = "Modify",
497
- Remove = "Remove"
498
- }
514
+ export declare const Category: {
515
+ readonly ACTIVATED: "ACTIVATED";
516
+ readonly AWS_TYPES: "AWS_TYPES";
517
+ readonly REGISTERED: "REGISTERED";
518
+ readonly THIRD_PARTY: "THIRD_PARTY";
519
+ };
499
520
  /**
500
521
  * @public
501
522
  */
502
- export declare enum ChangeSource {
503
- Automatic = "Automatic",
504
- DirectModification = "DirectModification",
505
- ParameterReference = "ParameterReference",
506
- ResourceAttribute = "ResourceAttribute",
507
- ResourceReference = "ResourceReference"
508
- }
523
+ export type Category = (typeof Category)[keyof typeof Category];
509
524
  /**
510
525
  * @public
526
+ * @enum
511
527
  */
512
- export declare enum EvaluationType {
513
- Dynamic = "Dynamic",
514
- Static = "Static"
515
- }
528
+ export declare const ChangeAction: {
529
+ readonly Add: "Add";
530
+ readonly Dynamic: "Dynamic";
531
+ readonly Import: "Import";
532
+ readonly Modify: "Modify";
533
+ readonly Remove: "Remove";
534
+ };
516
535
  /**
517
536
  * @public
518
537
  */
519
- export declare enum ResourceAttribute {
520
- CreationPolicy = "CreationPolicy",
521
- DeletionPolicy = "DeletionPolicy",
522
- Metadata = "Metadata",
523
- Properties = "Properties",
524
- Tags = "Tags",
525
- UpdatePolicy = "UpdatePolicy"
526
- }
538
+ export type ChangeAction = (typeof ChangeAction)[keyof typeof ChangeAction];
527
539
  /**
528
540
  * @public
541
+ * @enum
529
542
  */
530
- export declare enum RequiresRecreation {
531
- Always = "Always",
532
- Conditionally = "Conditionally",
533
- Never = "Never"
534
- }
543
+ export declare const ChangeSource: {
544
+ readonly Automatic: "Automatic";
545
+ readonly DirectModification: "DirectModification";
546
+ readonly ParameterReference: "ParameterReference";
547
+ readonly ResourceAttribute: "ResourceAttribute";
548
+ readonly ResourceReference: "ResourceReference";
549
+ };
550
+ /**
551
+ * @public
552
+ */
553
+ export type ChangeSource = (typeof ChangeSource)[keyof typeof ChangeSource];
554
+ /**
555
+ * @public
556
+ * @enum
557
+ */
558
+ export declare const EvaluationType: {
559
+ readonly Dynamic: "Dynamic";
560
+ readonly Static: "Static";
561
+ };
562
+ /**
563
+ * @public
564
+ */
565
+ export type EvaluationType = (typeof EvaluationType)[keyof typeof EvaluationType];
566
+ /**
567
+ * @public
568
+ * @enum
569
+ */
570
+ export declare const ResourceAttribute: {
571
+ readonly CreationPolicy: "CreationPolicy";
572
+ readonly DeletionPolicy: "DeletionPolicy";
573
+ readonly Metadata: "Metadata";
574
+ readonly Properties: "Properties";
575
+ readonly Tags: "Tags";
576
+ readonly UpdatePolicy: "UpdatePolicy";
577
+ };
578
+ /**
579
+ * @public
580
+ */
581
+ export type ResourceAttribute = (typeof ResourceAttribute)[keyof typeof ResourceAttribute];
582
+ /**
583
+ * @public
584
+ * @enum
585
+ */
586
+ export declare const RequiresRecreation: {
587
+ readonly Always: "Always";
588
+ readonly Conditionally: "Conditionally";
589
+ readonly Never: "Never";
590
+ };
591
+ /**
592
+ * @public
593
+ */
594
+ export type RequiresRecreation = (typeof RequiresRecreation)[keyof typeof RequiresRecreation];
535
595
  /**
536
596
  * @public
537
597
  * <p>The field that CloudFormation will change, such as the name of a resource's
@@ -672,12 +732,17 @@ export interface ModuleInfo {
672
732
  }
673
733
  /**
674
734
  * @public
735
+ * @enum
675
736
  */
676
- export declare enum Replacement {
677
- Conditional = "Conditional",
678
- False = "False",
679
- True = "True"
680
- }
737
+ export declare const Replacement: {
738
+ readonly Conditional: "Conditional";
739
+ readonly False: "False";
740
+ readonly True: "True";
741
+ };
742
+ /**
743
+ * @public
744
+ */
745
+ export type Replacement = (typeof Replacement)[keyof typeof Replacement];
681
746
  /**
682
747
  * @public
683
748
  * <p>The <code>ResourceChange</code> structure describes the resource and the action that
@@ -744,10 +809,15 @@ export interface ResourceChange {
744
809
  }
745
810
  /**
746
811
  * @public
812
+ * @enum
747
813
  */
748
- export declare enum ChangeType {
749
- Resource = "Resource"
750
- }
814
+ export declare const ChangeType: {
815
+ readonly Resource: "Resource";
816
+ };
817
+ /**
818
+ * @public
819
+ */
820
+ export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
751
821
  /**
752
822
  * @public
753
823
  * <p>The <code>Change</code> structure describes the changes CloudFormation will perform
@@ -772,17 +842,27 @@ export interface Change {
772
842
  }
773
843
  /**
774
844
  * @public
845
+ * @enum
775
846
  */
776
- export declare enum HookFailureMode {
777
- FAIL = "FAIL",
778
- WARN = "WARN"
779
- }
847
+ export declare const HookFailureMode: {
848
+ readonly FAIL: "FAIL";
849
+ readonly WARN: "WARN";
850
+ };
780
851
  /**
781
852
  * @public
782
853
  */
783
- export declare enum HookInvocationPoint {
784
- PRE_PROVISION = "PRE_PROVISION"
785
- }
854
+ export type HookFailureMode = (typeof HookFailureMode)[keyof typeof HookFailureMode];
855
+ /**
856
+ * @public
857
+ * @enum
858
+ */
859
+ export declare const HookInvocationPoint: {
860
+ readonly PRE_PROVISION: "PRE_PROVISION";
861
+ };
862
+ /**
863
+ * @public
864
+ */
865
+ export type HookInvocationPoint = (typeof HookInvocationPoint)[keyof typeof HookInvocationPoint];
786
866
  /**
787
867
  * @public
788
868
  * <p>Specifies <code>RESOURCE</code> type target details for activated hooks.</p>
@@ -803,10 +883,15 @@ export interface ChangeSetHookResourceTargetDetails {
803
883
  }
804
884
  /**
805
885
  * @public
886
+ * @enum
806
887
  */
807
- export declare enum HookTargetType {
808
- RESOURCE = "RESOURCE"
809
- }
888
+ export declare const HookTargetType: {
889
+ readonly RESOURCE: "RESOURCE";
890
+ };
891
+ /**
892
+ * @public
893
+ */
894
+ export type HookTargetType = (typeof HookTargetType)[keyof typeof HookTargetType];
810
895
  /**
811
896
  * @public
812
897
  * <p>Specifies target details for an activated hook.</p>
@@ -905,12 +990,17 @@ export interface ChangeSetHook {
905
990
  }
906
991
  /**
907
992
  * @public
993
+ * @enum
908
994
  */
909
- export declare enum ChangeSetHooksStatus {
910
- PLANNED = "PLANNED",
911
- PLANNING = "PLANNING",
912
- UNAVAILABLE = "UNAVAILABLE"
913
- }
995
+ export declare const ChangeSetHooksStatus: {
996
+ readonly PLANNED: "PLANNED";
997
+ readonly PLANNING: "PLANNING";
998
+ readonly UNAVAILABLE: "UNAVAILABLE";
999
+ };
1000
+ /**
1001
+ * @public
1002
+ */
1003
+ export type ChangeSetHooksStatus = (typeof ChangeSetHooksStatus)[keyof typeof ChangeSetHooksStatus];
914
1004
  /**
915
1005
  * @public
916
1006
  * <p>The specified change set name or ID doesn't exit. To view valid change sets for a stack,
@@ -927,28 +1017,38 @@ export declare class ChangeSetNotFoundException extends __BaseException {
927
1017
  }
928
1018
  /**
929
1019
  * @public
1020
+ * @enum
930
1021
  */
931
- export declare enum ChangeSetStatus {
932
- CREATE_COMPLETE = "CREATE_COMPLETE",
933
- CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
934
- CREATE_PENDING = "CREATE_PENDING",
935
- DELETE_COMPLETE = "DELETE_COMPLETE",
936
- DELETE_FAILED = "DELETE_FAILED",
937
- DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
938
- DELETE_PENDING = "DELETE_PENDING",
939
- FAILED = "FAILED"
940
- }
1022
+ export declare const ChangeSetStatus: {
1023
+ readonly CREATE_COMPLETE: "CREATE_COMPLETE";
1024
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
1025
+ readonly CREATE_PENDING: "CREATE_PENDING";
1026
+ readonly DELETE_COMPLETE: "DELETE_COMPLETE";
1027
+ readonly DELETE_FAILED: "DELETE_FAILED";
1028
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
1029
+ readonly DELETE_PENDING: "DELETE_PENDING";
1030
+ readonly FAILED: "FAILED";
1031
+ };
941
1032
  /**
942
1033
  * @public
943
1034
  */
944
- export declare enum ExecutionStatus {
945
- AVAILABLE = "AVAILABLE",
946
- EXECUTE_COMPLETE = "EXECUTE_COMPLETE",
947
- EXECUTE_FAILED = "EXECUTE_FAILED",
948
- EXECUTE_IN_PROGRESS = "EXECUTE_IN_PROGRESS",
949
- OBSOLETE = "OBSOLETE",
950
- UNAVAILABLE = "UNAVAILABLE"
951
- }
1035
+ export type ChangeSetStatus = (typeof ChangeSetStatus)[keyof typeof ChangeSetStatus];
1036
+ /**
1037
+ * @public
1038
+ * @enum
1039
+ */
1040
+ export declare const ExecutionStatus: {
1041
+ readonly AVAILABLE: "AVAILABLE";
1042
+ readonly EXECUTE_COMPLETE: "EXECUTE_COMPLETE";
1043
+ readonly EXECUTE_FAILED: "EXECUTE_FAILED";
1044
+ readonly EXECUTE_IN_PROGRESS: "EXECUTE_IN_PROGRESS";
1045
+ readonly OBSOLETE: "OBSOLETE";
1046
+ readonly UNAVAILABLE: "UNAVAILABLE";
1047
+ };
1048
+ /**
1049
+ * @public
1050
+ */
1051
+ export type ExecutionStatus = (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
952
1052
  /**
953
1053
  * @public
954
1054
  * <p>The <code>ChangeSetSummary</code> structure describes a change set, its status, and the
@@ -1013,12 +1113,17 @@ export interface ChangeSetSummary {
1013
1113
  }
1014
1114
  /**
1015
1115
  * @public
1116
+ * @enum
1016
1117
  */
1017
- export declare enum ChangeSetType {
1018
- CREATE = "CREATE",
1019
- IMPORT = "IMPORT",
1020
- UPDATE = "UPDATE"
1021
- }
1118
+ export declare const ChangeSetType: {
1119
+ readonly CREATE: "CREATE";
1120
+ readonly IMPORT: "IMPORT";
1121
+ readonly UPDATE: "UPDATE";
1122
+ };
1123
+ /**
1124
+ * @public
1125
+ */
1126
+ export type ChangeSetType = (typeof ChangeSetType)[keyof typeof ChangeSetType];
1022
1127
  /**
1023
1128
  * @public
1024
1129
  * <p>The input for the <a>ContinueUpdateRollback</a> action.</p>
@@ -1498,12 +1603,17 @@ export declare class LimitExceededException extends __BaseException {
1498
1603
  }
1499
1604
  /**
1500
1605
  * @public
1606
+ * @enum
1501
1607
  */
1502
- export declare enum OnFailure {
1503
- DELETE = "DELETE",
1504
- DO_NOTHING = "DO_NOTHING",
1505
- ROLLBACK = "ROLLBACK"
1506
- }
1608
+ export declare const OnFailure: {
1609
+ readonly DELETE: "DELETE";
1610
+ readonly DO_NOTHING: "DO_NOTHING";
1611
+ readonly ROLLBACK: "ROLLBACK";
1612
+ };
1613
+ /**
1614
+ * @public
1615
+ */
1616
+ export type OnFailure = (typeof OnFailure)[keyof typeof OnFailure];
1507
1617
  /**
1508
1618
  * @public
1509
1619
  * <p>The input for <a>CreateStack</a> action.</p>
@@ -1829,11 +1939,16 @@ export interface DeploymentTargets {
1829
1939
  }
1830
1940
  /**
1831
1941
  * @public
1942
+ * @enum
1832
1943
  */
1833
- export declare enum RegionConcurrencyType {
1834
- PARALLEL = "PARALLEL",
1835
- SEQUENTIAL = "SEQUENTIAL"
1836
- }
1944
+ export declare const RegionConcurrencyType: {
1945
+ readonly PARALLEL: "PARALLEL";
1946
+ readonly SEQUENTIAL: "SEQUENTIAL";
1947
+ };
1948
+ /**
1949
+ * @public
1950
+ */
1951
+ export type RegionConcurrencyType = (typeof RegionConcurrencyType)[keyof typeof RegionConcurrencyType];
1837
1952
  /**
1838
1953
  * @public
1839
1954
  * <p>The user-specified preferences for how CloudFormation performs a stack set
@@ -2104,11 +2219,16 @@ export interface ManagedExecution {
2104
2219
  }
2105
2220
  /**
2106
2221
  * @public
2222
+ * @enum
2107
2223
  */
2108
- export declare enum PermissionModels {
2109
- SELF_MANAGED = "SELF_MANAGED",
2110
- SERVICE_MANAGED = "SERVICE_MANAGED"
2111
- }
2224
+ export declare const PermissionModels: {
2225
+ readonly SELF_MANAGED: "SELF_MANAGED";
2226
+ readonly SERVICE_MANAGED: "SERVICE_MANAGED";
2227
+ };
2228
+ /**
2229
+ * @public
2230
+ */
2231
+ export type PermissionModels = (typeof PermissionModels)[keyof typeof PermissionModels];
2112
2232
  /**
2113
2233
  * @public
2114
2234
  */
@@ -2598,12 +2718,17 @@ export declare class StackSetNotEmptyException extends __BaseException {
2598
2718
  }
2599
2719
  /**
2600
2720
  * @public
2721
+ * @enum
2601
2722
  */
2602
- export declare enum RegistryType {
2603
- HOOK = "HOOK",
2604
- MODULE = "MODULE",
2605
- RESOURCE = "RESOURCE"
2606
- }
2723
+ export declare const RegistryType: {
2724
+ readonly HOOK: "HOOK";
2725
+ readonly MODULE: "MODULE";
2726
+ readonly RESOURCE: "RESOURCE";
2727
+ };
2728
+ /**
2729
+ * @public
2730
+ */
2731
+ export type RegistryType = (typeof RegistryType)[keyof typeof RegistryType];
2607
2732
  /**
2608
2733
  * @public
2609
2734
  */
@@ -2854,19 +2979,29 @@ export interface DescribePublisherInput {
2854
2979
  }
2855
2980
  /**
2856
2981
  * @public
2982
+ * @enum
2857
2983
  */
2858
- export declare enum IdentityProvider {
2859
- AWS_Marketplace = "AWS_Marketplace",
2860
- Bitbucket = "Bitbucket",
2861
- GitHub = "GitHub"
2862
- }
2984
+ export declare const IdentityProvider: {
2985
+ readonly AWS_Marketplace: "AWS_Marketplace";
2986
+ readonly Bitbucket: "Bitbucket";
2987
+ readonly GitHub: "GitHub";
2988
+ };
2863
2989
  /**
2864
2990
  * @public
2865
2991
  */
2866
- export declare enum PublisherStatus {
2867
- UNVERIFIED = "UNVERIFIED",
2868
- VERIFIED = "VERIFIED"
2869
- }
2992
+ export type IdentityProvider = (typeof IdentityProvider)[keyof typeof IdentityProvider];
2993
+ /**
2994
+ * @public
2995
+ * @enum
2996
+ */
2997
+ export declare const PublisherStatus: {
2998
+ readonly UNVERIFIED: "UNVERIFIED";
2999
+ readonly VERIFIED: "VERIFIED";
3000
+ };
3001
+ /**
3002
+ * @public
3003
+ */
3004
+ export type PublisherStatus = (typeof PublisherStatus)[keyof typeof PublisherStatus];
2870
3005
  /**
2871
3006
  * @public
2872
3007
  */
@@ -2904,21 +3039,31 @@ export interface DescribeStackDriftDetectionStatusInput {
2904
3039
  }
2905
3040
  /**
2906
3041
  * @public
3042
+ * @enum
2907
3043
  */
2908
- export declare enum StackDriftDetectionStatus {
2909
- DETECTION_COMPLETE = "DETECTION_COMPLETE",
2910
- DETECTION_FAILED = "DETECTION_FAILED",
2911
- DETECTION_IN_PROGRESS = "DETECTION_IN_PROGRESS"
2912
- }
3044
+ export declare const StackDriftDetectionStatus: {
3045
+ readonly DETECTION_COMPLETE: "DETECTION_COMPLETE";
3046
+ readonly DETECTION_FAILED: "DETECTION_FAILED";
3047
+ readonly DETECTION_IN_PROGRESS: "DETECTION_IN_PROGRESS";
3048
+ };
2913
3049
  /**
2914
3050
  * @public
2915
3051
  */
2916
- export declare enum StackDriftStatus {
2917
- DRIFTED = "DRIFTED",
2918
- IN_SYNC = "IN_SYNC",
2919
- NOT_CHECKED = "NOT_CHECKED",
2920
- UNKNOWN = "UNKNOWN"
2921
- }
3052
+ export type StackDriftDetectionStatus = (typeof StackDriftDetectionStatus)[keyof typeof StackDriftDetectionStatus];
3053
+ /**
3054
+ * @public
3055
+ * @enum
3056
+ */
3057
+ export declare const StackDriftStatus: {
3058
+ readonly DRIFTED: "DRIFTED";
3059
+ readonly IN_SYNC: "IN_SYNC";
3060
+ readonly NOT_CHECKED: "NOT_CHECKED";
3061
+ readonly UNKNOWN: "UNKNOWN";
3062
+ };
3063
+ /**
3064
+ * @public
3065
+ */
3066
+ export type StackDriftStatus = (typeof StackDriftStatus)[keyof typeof StackDriftStatus];
2922
3067
  /**
2923
3068
  * @public
2924
3069
  */
@@ -3029,40 +3174,50 @@ export interface DescribeStackEventsInput {
3029
3174
  }
3030
3175
  /**
3031
3176
  * @public
3177
+ * @enum
3032
3178
  */
3033
- export declare enum HookStatus {
3034
- HOOK_COMPLETE_FAILED = "HOOK_COMPLETE_FAILED",
3035
- HOOK_COMPLETE_SUCCEEDED = "HOOK_COMPLETE_SUCCEEDED",
3036
- HOOK_FAILED = "HOOK_FAILED",
3037
- HOOK_IN_PROGRESS = "HOOK_IN_PROGRESS"
3038
- }
3179
+ export declare const HookStatus: {
3180
+ readonly HOOK_COMPLETE_FAILED: "HOOK_COMPLETE_FAILED";
3181
+ readonly HOOK_COMPLETE_SUCCEEDED: "HOOK_COMPLETE_SUCCEEDED";
3182
+ readonly HOOK_FAILED: "HOOK_FAILED";
3183
+ readonly HOOK_IN_PROGRESS: "HOOK_IN_PROGRESS";
3184
+ };
3039
3185
  /**
3040
3186
  * @public
3041
3187
  */
3042
- export declare enum ResourceStatus {
3043
- CREATE_COMPLETE = "CREATE_COMPLETE",
3044
- CREATE_FAILED = "CREATE_FAILED",
3045
- CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
3046
- DELETE_COMPLETE = "DELETE_COMPLETE",
3047
- DELETE_FAILED = "DELETE_FAILED",
3048
- DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
3049
- DELETE_SKIPPED = "DELETE_SKIPPED",
3050
- IMPORT_COMPLETE = "IMPORT_COMPLETE",
3051
- IMPORT_FAILED = "IMPORT_FAILED",
3052
- IMPORT_IN_PROGRESS = "IMPORT_IN_PROGRESS",
3053
- IMPORT_ROLLBACK_COMPLETE = "IMPORT_ROLLBACK_COMPLETE",
3054
- IMPORT_ROLLBACK_FAILED = "IMPORT_ROLLBACK_FAILED",
3055
- IMPORT_ROLLBACK_IN_PROGRESS = "IMPORT_ROLLBACK_IN_PROGRESS",
3056
- ROLLBACK_COMPLETE = "ROLLBACK_COMPLETE",
3057
- ROLLBACK_FAILED = "ROLLBACK_FAILED",
3058
- ROLLBACK_IN_PROGRESS = "ROLLBACK_IN_PROGRESS",
3059
- UPDATE_COMPLETE = "UPDATE_COMPLETE",
3060
- UPDATE_FAILED = "UPDATE_FAILED",
3061
- UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS",
3062
- UPDATE_ROLLBACK_COMPLETE = "UPDATE_ROLLBACK_COMPLETE",
3063
- UPDATE_ROLLBACK_FAILED = "UPDATE_ROLLBACK_FAILED",
3064
- UPDATE_ROLLBACK_IN_PROGRESS = "UPDATE_ROLLBACK_IN_PROGRESS"
3065
- }
3188
+ export type HookStatus = (typeof HookStatus)[keyof typeof HookStatus];
3189
+ /**
3190
+ * @public
3191
+ * @enum
3192
+ */
3193
+ export declare const ResourceStatus: {
3194
+ readonly CREATE_COMPLETE: "CREATE_COMPLETE";
3195
+ readonly CREATE_FAILED: "CREATE_FAILED";
3196
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
3197
+ readonly DELETE_COMPLETE: "DELETE_COMPLETE";
3198
+ readonly DELETE_FAILED: "DELETE_FAILED";
3199
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
3200
+ readonly DELETE_SKIPPED: "DELETE_SKIPPED";
3201
+ readonly IMPORT_COMPLETE: "IMPORT_COMPLETE";
3202
+ readonly IMPORT_FAILED: "IMPORT_FAILED";
3203
+ readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
3204
+ readonly IMPORT_ROLLBACK_COMPLETE: "IMPORT_ROLLBACK_COMPLETE";
3205
+ readonly IMPORT_ROLLBACK_FAILED: "IMPORT_ROLLBACK_FAILED";
3206
+ readonly IMPORT_ROLLBACK_IN_PROGRESS: "IMPORT_ROLLBACK_IN_PROGRESS";
3207
+ readonly ROLLBACK_COMPLETE: "ROLLBACK_COMPLETE";
3208
+ readonly ROLLBACK_FAILED: "ROLLBACK_FAILED";
3209
+ readonly ROLLBACK_IN_PROGRESS: "ROLLBACK_IN_PROGRESS";
3210
+ readonly UPDATE_COMPLETE: "UPDATE_COMPLETE";
3211
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
3212
+ readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
3213
+ readonly UPDATE_ROLLBACK_COMPLETE: "UPDATE_ROLLBACK_COMPLETE";
3214
+ readonly UPDATE_ROLLBACK_FAILED: "UPDATE_ROLLBACK_FAILED";
3215
+ readonly UPDATE_ROLLBACK_IN_PROGRESS: "UPDATE_ROLLBACK_IN_PROGRESS";
3216
+ };
3217
+ /**
3218
+ * @public
3219
+ */
3220
+ export type ResourceStatus = (typeof ResourceStatus)[keyof typeof ResourceStatus];
3066
3221
  /**
3067
3222
  * @public
3068
3223
  * <p>The StackEvent data type.</p>
@@ -3211,15 +3366,20 @@ export interface DescribeStackInstanceInput {
3211
3366
  }
3212
3367
  /**
3213
3368
  * @public
3369
+ * @enum
3214
3370
  */
3215
- export declare enum StackInstanceDetailedStatus {
3216
- CANCELLED = "CANCELLED",
3217
- FAILED = "FAILED",
3218
- INOPERABLE = "INOPERABLE",
3219
- PENDING = "PENDING",
3220
- RUNNING = "RUNNING",
3221
- SUCCEEDED = "SUCCEEDED"
3222
- }
3371
+ export declare const StackInstanceDetailedStatus: {
3372
+ readonly CANCELLED: "CANCELLED";
3373
+ readonly FAILED: "FAILED";
3374
+ readonly INOPERABLE: "INOPERABLE";
3375
+ readonly PENDING: "PENDING";
3376
+ readonly RUNNING: "RUNNING";
3377
+ readonly SUCCEEDED: "SUCCEEDED";
3378
+ };
3379
+ /**
3380
+ * @public
3381
+ */
3382
+ export type StackInstanceDetailedStatus = (typeof StackInstanceDetailedStatus)[keyof typeof StackInstanceDetailedStatus];
3223
3383
  /**
3224
3384
  * @public
3225
3385
  * <p>The detailed status of the stack instance.</p>
@@ -3269,12 +3429,17 @@ export interface StackInstanceComprehensiveStatus {
3269
3429
  }
3270
3430
  /**
3271
3431
  * @public
3432
+ * @enum
3272
3433
  */
3273
- export declare enum StackInstanceStatus {
3274
- CURRENT = "CURRENT",
3275
- INOPERABLE = "INOPERABLE",
3276
- OUTDATED = "OUTDATED"
3277
- }
3434
+ export declare const StackInstanceStatus: {
3435
+ readonly CURRENT: "CURRENT";
3436
+ readonly INOPERABLE: "INOPERABLE";
3437
+ readonly OUTDATED: "OUTDATED";
3438
+ };
3439
+ /**
3440
+ * @public
3441
+ */
3442
+ export type StackInstanceStatus = (typeof StackInstanceStatus)[keyof typeof StackInstanceStatus];
3278
3443
  /**
3279
3444
  * @public
3280
3445
  * <p>An CloudFormation stack, in a specific account and Region, that's part of a stack
@@ -3448,13 +3613,18 @@ export interface DescribeStackResourceInput {
3448
3613
  }
3449
3614
  /**
3450
3615
  * @public
3616
+ * @enum
3451
3617
  */
3452
- export declare enum StackResourceDriftStatus {
3453
- DELETED = "DELETED",
3454
- IN_SYNC = "IN_SYNC",
3455
- MODIFIED = "MODIFIED",
3456
- NOT_CHECKED = "NOT_CHECKED"
3457
- }
3618
+ export declare const StackResourceDriftStatus: {
3619
+ readonly DELETED: "DELETED";
3620
+ readonly IN_SYNC: "IN_SYNC";
3621
+ readonly MODIFIED: "MODIFIED";
3622
+ readonly NOT_CHECKED: "NOT_CHECKED";
3623
+ };
3624
+ /**
3625
+ * @public
3626
+ */
3627
+ export type StackResourceDriftStatus = (typeof StackResourceDriftStatus)[keyof typeof StackResourceDriftStatus];
3458
3628
  /**
3459
3629
  * @public
3460
3630
  * <p>Contains information about whether the resource's actual configuration differs, or has
@@ -3633,12 +3803,17 @@ export interface PhysicalResourceIdContextKeyValuePair {
3633
3803
  }
3634
3804
  /**
3635
3805
  * @public
3806
+ * @enum
3636
3807
  */
3637
- export declare enum DifferenceType {
3638
- ADD = "ADD",
3639
- NOT_EQUAL = "NOT_EQUAL",
3640
- REMOVE = "REMOVE"
3641
- }
3808
+ export declare const DifferenceType: {
3809
+ readonly ADD: "ADD";
3810
+ readonly NOT_EQUAL: "NOT_EQUAL";
3811
+ readonly REMOVE: "REMOVE";
3812
+ };
3813
+ /**
3814
+ * @public
3815
+ */
3816
+ export type DifferenceType = (typeof DifferenceType)[keyof typeof DifferenceType];
3642
3817
  /**
3643
3818
  * @public
3644
3819
  * <p>Information about a resource property whose actual value differs from its expected
@@ -3999,32 +4174,37 @@ export interface Output {
3999
4174
  }
4000
4175
  /**
4001
4176
  * @public
4177
+ * @enum
4002
4178
  */
4003
- export declare enum StackStatus {
4004
- CREATE_COMPLETE = "CREATE_COMPLETE",
4005
- CREATE_FAILED = "CREATE_FAILED",
4006
- CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
4007
- DELETE_COMPLETE = "DELETE_COMPLETE",
4008
- DELETE_FAILED = "DELETE_FAILED",
4009
- DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
4010
- IMPORT_COMPLETE = "IMPORT_COMPLETE",
4011
- IMPORT_IN_PROGRESS = "IMPORT_IN_PROGRESS",
4012
- IMPORT_ROLLBACK_COMPLETE = "IMPORT_ROLLBACK_COMPLETE",
4013
- IMPORT_ROLLBACK_FAILED = "IMPORT_ROLLBACK_FAILED",
4014
- IMPORT_ROLLBACK_IN_PROGRESS = "IMPORT_ROLLBACK_IN_PROGRESS",
4015
- REVIEW_IN_PROGRESS = "REVIEW_IN_PROGRESS",
4016
- ROLLBACK_COMPLETE = "ROLLBACK_COMPLETE",
4017
- ROLLBACK_FAILED = "ROLLBACK_FAILED",
4018
- ROLLBACK_IN_PROGRESS = "ROLLBACK_IN_PROGRESS",
4019
- UPDATE_COMPLETE = "UPDATE_COMPLETE",
4020
- UPDATE_COMPLETE_CLEANUP_IN_PROGRESS = "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS",
4021
- UPDATE_FAILED = "UPDATE_FAILED",
4022
- UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS",
4023
- UPDATE_ROLLBACK_COMPLETE = "UPDATE_ROLLBACK_COMPLETE",
4024
- UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS = "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS",
4025
- UPDATE_ROLLBACK_FAILED = "UPDATE_ROLLBACK_FAILED",
4026
- UPDATE_ROLLBACK_IN_PROGRESS = "UPDATE_ROLLBACK_IN_PROGRESS"
4027
- }
4179
+ export declare const StackStatus: {
4180
+ readonly CREATE_COMPLETE: "CREATE_COMPLETE";
4181
+ readonly CREATE_FAILED: "CREATE_FAILED";
4182
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
4183
+ readonly DELETE_COMPLETE: "DELETE_COMPLETE";
4184
+ readonly DELETE_FAILED: "DELETE_FAILED";
4185
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
4186
+ readonly IMPORT_COMPLETE: "IMPORT_COMPLETE";
4187
+ readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
4188
+ readonly IMPORT_ROLLBACK_COMPLETE: "IMPORT_ROLLBACK_COMPLETE";
4189
+ readonly IMPORT_ROLLBACK_FAILED: "IMPORT_ROLLBACK_FAILED";
4190
+ readonly IMPORT_ROLLBACK_IN_PROGRESS: "IMPORT_ROLLBACK_IN_PROGRESS";
4191
+ readonly REVIEW_IN_PROGRESS: "REVIEW_IN_PROGRESS";
4192
+ readonly ROLLBACK_COMPLETE: "ROLLBACK_COMPLETE";
4193
+ readonly ROLLBACK_FAILED: "ROLLBACK_FAILED";
4194
+ readonly ROLLBACK_IN_PROGRESS: "ROLLBACK_IN_PROGRESS";
4195
+ readonly UPDATE_COMPLETE: "UPDATE_COMPLETE";
4196
+ readonly UPDATE_COMPLETE_CLEANUP_IN_PROGRESS: "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS";
4197
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
4198
+ readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
4199
+ readonly UPDATE_ROLLBACK_COMPLETE: "UPDATE_ROLLBACK_COMPLETE";
4200
+ readonly UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS: "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS";
4201
+ readonly UPDATE_ROLLBACK_FAILED: "UPDATE_ROLLBACK_FAILED";
4202
+ readonly UPDATE_ROLLBACK_IN_PROGRESS: "UPDATE_ROLLBACK_IN_PROGRESS";
4203
+ };
4204
+ /**
4205
+ * @public
4206
+ */
4207
+ export type StackStatus = (typeof StackStatus)[keyof typeof StackStatus];
4028
4208
  /**
4029
4209
  * @public
4030
4210
  * <p>The Stack data type.</p>
@@ -4192,22 +4372,32 @@ export interface DescribeStackSetInput {
4192
4372
  }
4193
4373
  /**
4194
4374
  * @public
4375
+ * @enum
4195
4376
  */
4196
- export declare enum StackSetDriftDetectionStatus {
4197
- COMPLETED = "COMPLETED",
4198
- FAILED = "FAILED",
4199
- IN_PROGRESS = "IN_PROGRESS",
4200
- PARTIAL_SUCCESS = "PARTIAL_SUCCESS",
4201
- STOPPED = "STOPPED"
4202
- }
4377
+ export declare const StackSetDriftDetectionStatus: {
4378
+ readonly COMPLETED: "COMPLETED";
4379
+ readonly FAILED: "FAILED";
4380
+ readonly IN_PROGRESS: "IN_PROGRESS";
4381
+ readonly PARTIAL_SUCCESS: "PARTIAL_SUCCESS";
4382
+ readonly STOPPED: "STOPPED";
4383
+ };
4203
4384
  /**
4204
4385
  * @public
4205
4386
  */
4206
- export declare enum StackSetDriftStatus {
4207
- DRIFTED = "DRIFTED",
4208
- IN_SYNC = "IN_SYNC",
4209
- NOT_CHECKED = "NOT_CHECKED"
4210
- }
4387
+ export type StackSetDriftDetectionStatus = (typeof StackSetDriftDetectionStatus)[keyof typeof StackSetDriftDetectionStatus];
4388
+ /**
4389
+ * @public
4390
+ * @enum
4391
+ */
4392
+ export declare const StackSetDriftStatus: {
4393
+ readonly DRIFTED: "DRIFTED";
4394
+ readonly IN_SYNC: "IN_SYNC";
4395
+ readonly NOT_CHECKED: "NOT_CHECKED";
4396
+ };
4397
+ /**
4398
+ * @public
4399
+ */
4400
+ export type StackSetDriftStatus = (typeof StackSetDriftStatus)[keyof typeof StackSetDriftStatus];
4211
4401
  /**
4212
4402
  * @public
4213
4403
  * <p>Detailed information about the drift status of the stack set.</p>
@@ -4323,11 +4513,16 @@ export interface StackSetDriftDetectionDetails {
4323
4513
  }
4324
4514
  /**
4325
4515
  * @public
4516
+ * @enum
4326
4517
  */
4327
- export declare enum StackSetStatus {
4328
- ACTIVE = "ACTIVE",
4329
- DELETED = "DELETED"
4330
- }
4518
+ export declare const StackSetStatus: {
4519
+ readonly ACTIVE: "ACTIVE";
4520
+ readonly DELETED: "DELETED";
4521
+ };
4522
+ /**
4523
+ * @public
4524
+ */
4525
+ export type StackSetStatus = (typeof StackSetStatus)[keyof typeof StackSetStatus];
4331
4526
  /**
4332
4527
  * @public
4333
4528
  * <p>A structure that contains information about a stack set. A stack set enables you to
@@ -4481,24 +4676,34 @@ export interface DescribeStackSetOperationInput {
4481
4676
  }
4482
4677
  /**
4483
4678
  * @public
4679
+ * @enum
4484
4680
  */
4485
- export declare enum StackSetOperationAction {
4486
- CREATE = "CREATE",
4487
- DELETE = "DELETE",
4488
- DETECT_DRIFT = "DETECT_DRIFT",
4489
- UPDATE = "UPDATE"
4490
- }
4681
+ export declare const StackSetOperationAction: {
4682
+ readonly CREATE: "CREATE";
4683
+ readonly DELETE: "DELETE";
4684
+ readonly DETECT_DRIFT: "DETECT_DRIFT";
4685
+ readonly UPDATE: "UPDATE";
4686
+ };
4491
4687
  /**
4492
4688
  * @public
4493
4689
  */
4494
- export declare enum StackSetOperationStatus {
4495
- FAILED = "FAILED",
4496
- QUEUED = "QUEUED",
4497
- RUNNING = "RUNNING",
4498
- STOPPED = "STOPPED",
4499
- STOPPING = "STOPPING",
4500
- SUCCEEDED = "SUCCEEDED"
4501
- }
4690
+ export type StackSetOperationAction = (typeof StackSetOperationAction)[keyof typeof StackSetOperationAction];
4691
+ /**
4692
+ * @public
4693
+ * @enum
4694
+ */
4695
+ export declare const StackSetOperationStatus: {
4696
+ readonly FAILED: "FAILED";
4697
+ readonly QUEUED: "QUEUED";
4698
+ readonly RUNNING: "RUNNING";
4699
+ readonly STOPPED: "STOPPED";
4700
+ readonly STOPPING: "STOPPING";
4701
+ readonly SUCCEEDED: "SUCCEEDED";
4702
+ };
4703
+ /**
4704
+ * @public
4705
+ */
4706
+ export type StackSetOperationStatus = (typeof StackSetOperationStatus)[keyof typeof StackSetOperationStatus];
4502
4707
  /**
4503
4708
  * @public
4504
4709
  * <p>Detailed information about the StackSet operation.</p>
@@ -4697,19 +4902,29 @@ export interface DescribeTypeInput {
4697
4902
  }
4698
4903
  /**
4699
4904
  * @public
4905
+ * @enum
4700
4906
  */
4701
- export declare enum DeprecatedStatus {
4702
- DEPRECATED = "DEPRECATED",
4703
- LIVE = "LIVE"
4704
- }
4907
+ export declare const DeprecatedStatus: {
4908
+ readonly DEPRECATED: "DEPRECATED";
4909
+ readonly LIVE: "LIVE";
4910
+ };
4705
4911
  /**
4706
4912
  * @public
4707
4913
  */
4708
- export declare enum ProvisioningType {
4709
- FULLY_MUTABLE = "FULLY_MUTABLE",
4710
- IMMUTABLE = "IMMUTABLE",
4711
- NON_PROVISIONABLE = "NON_PROVISIONABLE"
4712
- }
4914
+ export type DeprecatedStatus = (typeof DeprecatedStatus)[keyof typeof DeprecatedStatus];
4915
+ /**
4916
+ * @public
4917
+ * @enum
4918
+ */
4919
+ export declare const ProvisioningType: {
4920
+ readonly FULLY_MUTABLE: "FULLY_MUTABLE";
4921
+ readonly IMMUTABLE: "IMMUTABLE";
4922
+ readonly NON_PROVISIONABLE: "NON_PROVISIONABLE";
4923
+ };
4924
+ /**
4925
+ * @public
4926
+ */
4927
+ export type ProvisioningType = (typeof ProvisioningType)[keyof typeof ProvisioningType];
4713
4928
  /**
4714
4929
  * @public
4715
4930
  * <p>For extensions that are modules, a public third-party extension that must be activated
@@ -4746,20 +4961,30 @@ export interface RequiredActivatedType {
4746
4961
  }
4747
4962
  /**
4748
4963
  * @public
4964
+ * @enum
4749
4965
  */
4750
- export declare enum TypeTestsStatus {
4751
- FAILED = "FAILED",
4752
- IN_PROGRESS = "IN_PROGRESS",
4753
- NOT_TESTED = "NOT_TESTED",
4754
- PASSED = "PASSED"
4755
- }
4966
+ export declare const TypeTestsStatus: {
4967
+ readonly FAILED: "FAILED";
4968
+ readonly IN_PROGRESS: "IN_PROGRESS";
4969
+ readonly NOT_TESTED: "NOT_TESTED";
4970
+ readonly PASSED: "PASSED";
4971
+ };
4756
4972
  /**
4757
4973
  * @public
4758
4974
  */
4759
- export declare enum Visibility {
4760
- PRIVATE = "PRIVATE",
4761
- PUBLIC = "PUBLIC"
4762
- }
4975
+ export type TypeTestsStatus = (typeof TypeTestsStatus)[keyof typeof TypeTestsStatus];
4976
+ /**
4977
+ * @public
4978
+ * @enum
4979
+ */
4980
+ export declare const Visibility: {
4981
+ readonly PRIVATE: "PRIVATE";
4982
+ readonly PUBLIC: "PUBLIC";
4983
+ };
4984
+ /**
4985
+ * @public
4986
+ */
4987
+ export type Visibility = (typeof Visibility)[keyof typeof Visibility];
4763
4988
  /**
4764
4989
  * @public
4765
4990
  */
@@ -5045,12 +5270,17 @@ export interface DescribeTypeRegistrationInput {
5045
5270
  }
5046
5271
  /**
5047
5272
  * @public
5273
+ * @enum
5048
5274
  */
5049
- export declare enum RegistrationStatus {
5050
- COMPLETE = "COMPLETE",
5051
- FAILED = "FAILED",
5052
- IN_PROGRESS = "IN_PROGRESS"
5053
- }
5275
+ export declare const RegistrationStatus: {
5276
+ readonly COMPLETE: "COMPLETE";
5277
+ readonly FAILED: "FAILED";
5278
+ readonly IN_PROGRESS: "IN_PROGRESS";
5279
+ };
5280
+ /**
5281
+ * @public
5282
+ */
5283
+ export type RegistrationStatus = (typeof RegistrationStatus)[keyof typeof RegistrationStatus];
5054
5284
  /**
5055
5285
  * @public
5056
5286
  */
@@ -5277,11 +5507,16 @@ export interface GetStackPolicyOutput {
5277
5507
  }
5278
5508
  /**
5279
5509
  * @public
5510
+ * @enum
5280
5511
  */
5281
- export declare enum TemplateStage {
5282
- Original = "Original",
5283
- Processed = "Processed"
5284
- }
5512
+ export declare const TemplateStage: {
5513
+ readonly Original: "Original";
5514
+ readonly Processed: "Processed";
5515
+ };
5516
+ /**
5517
+ * @public
5518
+ */
5519
+ export type TemplateStage = (typeof TemplateStage)[keyof typeof TemplateStage];
5285
5520
  /**
5286
5521
  * @public
5287
5522
  * <p>The input for a <a>GetTemplate</a> action.</p>
@@ -5704,11 +5939,16 @@ export interface ListImportsOutput {
5704
5939
  }
5705
5940
  /**
5706
5941
  * @public
5942
+ * @enum
5707
5943
  */
5708
- export declare enum StackInstanceFilterName {
5709
- DETAILED_STATUS = "DETAILED_STATUS",
5710
- LAST_OPERATION_ID = "LAST_OPERATION_ID"
5711
- }
5944
+ export declare const StackInstanceFilterName: {
5945
+ readonly DETAILED_STATUS: "DETAILED_STATUS";
5946
+ readonly LAST_OPERATION_ID: "LAST_OPERATION_ID";
5947
+ };
5948
+ /**
5949
+ * @public
5950
+ */
5951
+ export type StackInstanceFilterName = (typeof StackInstanceFilterName)[keyof typeof StackInstanceFilterName];
5712
5952
  /**
5713
5953
  * @public
5714
5954
  * <p>The filter to apply to stack instances</p>
@@ -6170,10 +6410,15 @@ export interface ListStacksOutput {
6170
6410
  }
6171
6411
  /**
6172
6412
  * @public
6413
+ * @enum
6173
6414
  */
6174
- export declare enum OperationResultFilterName {
6175
- OPERATION_RESULT_STATUS = "OPERATION_RESULT_STATUS"
6176
- }
6415
+ export declare const OperationResultFilterName: {
6416
+ readonly OPERATION_RESULT_STATUS: "OPERATION_RESULT_STATUS";
6417
+ };
6418
+ /**
6419
+ * @public
6420
+ */
6421
+ export type OperationResultFilterName = (typeof OperationResultFilterName)[keyof typeof OperationResultFilterName];
6177
6422
  /**
6178
6423
  * @public
6179
6424
  * <p>The status that operation results are filtered by.</p>
@@ -6244,14 +6489,19 @@ export interface ListStackSetOperationResultsInput {
6244
6489
  }
6245
6490
  /**
6246
6491
  * @public
6492
+ * @enum
6247
6493
  */
6248
- export declare enum StackSetOperationResultStatus {
6249
- CANCELLED = "CANCELLED",
6250
- FAILED = "FAILED",
6251
- PENDING = "PENDING",
6252
- RUNNING = "RUNNING",
6253
- SUCCEEDED = "SUCCEEDED"
6254
- }
6494
+ export declare const StackSetOperationResultStatus: {
6495
+ readonly CANCELLED: "CANCELLED";
6496
+ readonly FAILED: "FAILED";
6497
+ readonly PENDING: "PENDING";
6498
+ readonly RUNNING: "RUNNING";
6499
+ readonly SUCCEEDED: "SUCCEEDED";
6500
+ };
6501
+ /**
6502
+ * @public
6503
+ */
6504
+ export type StackSetOperationResultStatus = (typeof StackSetOperationResultStatus)[keyof typeof StackSetOperationResultStatus];
6255
6505
  /**
6256
6506
  * @public
6257
6507
  * <p>The structure that contains information about a specified operation's results for a
@@ -7173,37 +7423,47 @@ export declare class OperationStatusCheckFailedException extends __BaseException
7173
7423
  }
7174
7424
  /**
7175
7425
  * @public
7426
+ * @enum
7176
7427
  */
7177
- export declare enum OperationStatus {
7178
- FAILED = "FAILED",
7179
- IN_PROGRESS = "IN_PROGRESS",
7180
- PENDING = "PENDING",
7181
- SUCCESS = "SUCCESS"
7182
- }
7428
+ export declare const OperationStatus: {
7429
+ readonly FAILED: "FAILED";
7430
+ readonly IN_PROGRESS: "IN_PROGRESS";
7431
+ readonly PENDING: "PENDING";
7432
+ readonly SUCCESS: "SUCCESS";
7433
+ };
7183
7434
  /**
7184
7435
  * @public
7185
7436
  */
7186
- export declare enum HandlerErrorCode {
7187
- AccessDenied = "AccessDenied",
7188
- AlreadyExists = "AlreadyExists",
7189
- GeneralServiceException = "GeneralServiceException",
7190
- HandlerInternalFailure = "HandlerInternalFailure",
7191
- InternalFailure = "InternalFailure",
7192
- InvalidCredentials = "InvalidCredentials",
7193
- InvalidRequest = "InvalidRequest",
7194
- InvalidTypeConfiguration = "InvalidTypeConfiguration",
7195
- NetworkFailure = "NetworkFailure",
7196
- NonCompliant = "NonCompliant",
7197
- NotFound = "NotFound",
7198
- NotUpdatable = "NotUpdatable",
7199
- ResourceConflict = "ResourceConflict",
7200
- ServiceInternalError = "ServiceInternalError",
7201
- ServiceLimitExceeded = "ServiceLimitExceeded",
7202
- ServiceTimeout = "NotStabilized",
7203
- Throttling = "Throttling",
7204
- Unknown = "Unknown",
7205
- UnsupportedTarget = "UnsupportedTarget"
7206
- }
7437
+ export type OperationStatus = (typeof OperationStatus)[keyof typeof OperationStatus];
7438
+ /**
7439
+ * @public
7440
+ * @enum
7441
+ */
7442
+ export declare const HandlerErrorCode: {
7443
+ readonly AccessDenied: "AccessDenied";
7444
+ readonly AlreadyExists: "AlreadyExists";
7445
+ readonly GeneralServiceException: "GeneralServiceException";
7446
+ readonly HandlerInternalFailure: "HandlerInternalFailure";
7447
+ readonly InternalFailure: "InternalFailure";
7448
+ readonly InvalidCredentials: "InvalidCredentials";
7449
+ readonly InvalidRequest: "InvalidRequest";
7450
+ readonly InvalidTypeConfiguration: "InvalidTypeConfiguration";
7451
+ readonly NetworkFailure: "NetworkFailure";
7452
+ readonly NonCompliant: "NonCompliant";
7453
+ readonly NotFound: "NotFound";
7454
+ readonly NotUpdatable: "NotUpdatable";
7455
+ readonly ResourceConflict: "ResourceConflict";
7456
+ readonly ServiceInternalError: "ServiceInternalError";
7457
+ readonly ServiceLimitExceeded: "ServiceLimitExceeded";
7458
+ readonly ServiceTimeout: "NotStabilized";
7459
+ readonly Throttling: "Throttling";
7460
+ readonly Unknown: "Unknown";
7461
+ readonly UnsupportedTarget: "UnsupportedTarget";
7462
+ };
7463
+ /**
7464
+ * @public
7465
+ */
7466
+ export type HandlerErrorCode = (typeof HandlerErrorCode)[keyof typeof HandlerErrorCode];
7207
7467
  /**
7208
7468
  * @public
7209
7469
  */
@@ -7531,11 +7791,16 @@ export interface SetTypeDefaultVersionOutput {
7531
7791
  }
7532
7792
  /**
7533
7793
  * @public
7794
+ * @enum
7534
7795
  */
7535
- export declare enum ResourceSignalStatus {
7536
- FAILURE = "FAILURE",
7537
- SUCCESS = "SUCCESS"
7538
- }
7796
+ export declare const ResourceSignalStatus: {
7797
+ readonly FAILURE: "FAILURE";
7798
+ readonly SUCCESS: "SUCCESS";
7799
+ };
7800
+ /**
7801
+ * @public
7802
+ */
7803
+ export type ResourceSignalStatus = (typeof ResourceSignalStatus)[keyof typeof ResourceSignalStatus];
7539
7804
  /**
7540
7805
  * @public
7541
7806
  * <p>The input for the <a>SignalResource</a> action.</p>