@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.
@@ -1,16 +1,20 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { CloudFormationServiceException as __BaseException } from "./CloudFormationServiceException";
3
- export declare enum AccountFilterType {
4
- DIFFERENCE = "DIFFERENCE",
5
- INTERSECTION = "INTERSECTION",
6
- NONE = "NONE",
7
- UNION = "UNION",
8
- }
9
- export declare enum AccountGateStatus {
10
- FAILED = "FAILED",
11
- SKIPPED = "SKIPPED",
12
- SUCCEEDED = "SUCCEEDED",
13
- }
3
+ export declare const AccountFilterType: {
4
+ readonly DIFFERENCE: "DIFFERENCE";
5
+ readonly INTERSECTION: "INTERSECTION";
6
+ readonly NONE: "NONE";
7
+ readonly UNION: "UNION";
8
+ };
9
+ export type AccountFilterType =
10
+ (typeof AccountFilterType)[keyof typeof AccountFilterType];
11
+ export declare const AccountGateStatus: {
12
+ readonly FAILED: "FAILED";
13
+ readonly SKIPPED: "SKIPPED";
14
+ readonly SUCCEEDED: "SUCCEEDED";
15
+ };
16
+ export type AccountGateStatus =
17
+ (typeof AccountGateStatus)[keyof typeof AccountGateStatus];
14
18
  export interface AccountGateResult {
15
19
  Status?: AccountGateStatus | string;
16
20
  StatusReason?: string;
@@ -23,15 +27,18 @@ export interface LoggingConfig {
23
27
  LogRoleArn: string | undefined;
24
28
  LogGroupName: string | undefined;
25
29
  }
26
- export declare enum ThirdPartyType {
27
- HOOK = "HOOK",
28
- MODULE = "MODULE",
29
- RESOURCE = "RESOURCE",
30
- }
31
- export declare enum VersionBump {
32
- MAJOR = "MAJOR",
33
- MINOR = "MINOR",
34
- }
30
+ export declare const ThirdPartyType: {
31
+ readonly HOOK: "HOOK";
32
+ readonly MODULE: "MODULE";
33
+ readonly RESOURCE: "RESOURCE";
34
+ };
35
+ export type ThirdPartyType =
36
+ (typeof ThirdPartyType)[keyof typeof ThirdPartyType];
37
+ export declare const VersionBump: {
38
+ readonly MAJOR: "MAJOR";
39
+ readonly MINOR: "MINOR";
40
+ };
41
+ export type VersionBump = (typeof VersionBump)[keyof typeof VersionBump];
35
42
  export interface ActivateTypeInput {
36
43
  Type?: ThirdPartyType | string;
37
44
  PublicTypeArn?: string;
@@ -115,10 +122,11 @@ export declare class TypeConfigurationNotFoundException extends __BaseException
115
122
  >
116
123
  );
117
124
  }
118
- export declare enum CallAs {
119
- DELEGATED_ADMIN = "DELEGATED_ADMIN",
120
- SELF = "SELF",
121
- }
125
+ export declare const CallAs: {
126
+ readonly DELEGATED_ADMIN: "DELEGATED_ADMIN";
127
+ readonly SELF: "SELF";
128
+ };
129
+ export type CallAs = (typeof CallAs)[keyof typeof CallAs];
122
130
  export interface CancelUpdateStackInput {
123
131
  StackName: string | undefined;
124
132
  ClientRequestToken?: string;
@@ -131,48 +139,58 @@ export declare class TokenAlreadyExistsException extends __BaseException {
131
139
  opts: __ExceptionOptionType<TokenAlreadyExistsException, __BaseException>
132
140
  );
133
141
  }
134
- export declare enum Capability {
135
- CAPABILITY_AUTO_EXPAND = "CAPABILITY_AUTO_EXPAND",
136
- CAPABILITY_IAM = "CAPABILITY_IAM",
137
- CAPABILITY_NAMED_IAM = "CAPABILITY_NAMED_IAM",
138
- }
139
- export declare enum Category {
140
- ACTIVATED = "ACTIVATED",
141
- AWS_TYPES = "AWS_TYPES",
142
- REGISTERED = "REGISTERED",
143
- THIRD_PARTY = "THIRD_PARTY",
144
- }
145
- export declare enum ChangeAction {
146
- Add = "Add",
147
- Dynamic = "Dynamic",
148
- Import = "Import",
149
- Modify = "Modify",
150
- Remove = "Remove",
151
- }
152
- export declare enum ChangeSource {
153
- Automatic = "Automatic",
154
- DirectModification = "DirectModification",
155
- ParameterReference = "ParameterReference",
156
- ResourceAttribute = "ResourceAttribute",
157
- ResourceReference = "ResourceReference",
158
- }
159
- export declare enum EvaluationType {
160
- Dynamic = "Dynamic",
161
- Static = "Static",
162
- }
163
- export declare enum ResourceAttribute {
164
- CreationPolicy = "CreationPolicy",
165
- DeletionPolicy = "DeletionPolicy",
166
- Metadata = "Metadata",
167
- Properties = "Properties",
168
- Tags = "Tags",
169
- UpdatePolicy = "UpdatePolicy",
170
- }
171
- export declare enum RequiresRecreation {
172
- Always = "Always",
173
- Conditionally = "Conditionally",
174
- Never = "Never",
175
- }
142
+ export declare const Capability: {
143
+ readonly CAPABILITY_AUTO_EXPAND: "CAPABILITY_AUTO_EXPAND";
144
+ readonly CAPABILITY_IAM: "CAPABILITY_IAM";
145
+ readonly CAPABILITY_NAMED_IAM: "CAPABILITY_NAMED_IAM";
146
+ };
147
+ export type Capability = (typeof Capability)[keyof typeof Capability];
148
+ export declare const Category: {
149
+ readonly ACTIVATED: "ACTIVATED";
150
+ readonly AWS_TYPES: "AWS_TYPES";
151
+ readonly REGISTERED: "REGISTERED";
152
+ readonly THIRD_PARTY: "THIRD_PARTY";
153
+ };
154
+ export type Category = (typeof Category)[keyof typeof Category];
155
+ export declare const ChangeAction: {
156
+ readonly Add: "Add";
157
+ readonly Dynamic: "Dynamic";
158
+ readonly Import: "Import";
159
+ readonly Modify: "Modify";
160
+ readonly Remove: "Remove";
161
+ };
162
+ export type ChangeAction = (typeof ChangeAction)[keyof typeof ChangeAction];
163
+ export declare const ChangeSource: {
164
+ readonly Automatic: "Automatic";
165
+ readonly DirectModification: "DirectModification";
166
+ readonly ParameterReference: "ParameterReference";
167
+ readonly ResourceAttribute: "ResourceAttribute";
168
+ readonly ResourceReference: "ResourceReference";
169
+ };
170
+ export type ChangeSource = (typeof ChangeSource)[keyof typeof ChangeSource];
171
+ export declare const EvaluationType: {
172
+ readonly Dynamic: "Dynamic";
173
+ readonly Static: "Static";
174
+ };
175
+ export type EvaluationType =
176
+ (typeof EvaluationType)[keyof typeof EvaluationType];
177
+ export declare const ResourceAttribute: {
178
+ readonly CreationPolicy: "CreationPolicy";
179
+ readonly DeletionPolicy: "DeletionPolicy";
180
+ readonly Metadata: "Metadata";
181
+ readonly Properties: "Properties";
182
+ readonly Tags: "Tags";
183
+ readonly UpdatePolicy: "UpdatePolicy";
184
+ };
185
+ export type ResourceAttribute =
186
+ (typeof ResourceAttribute)[keyof typeof ResourceAttribute];
187
+ export declare const RequiresRecreation: {
188
+ readonly Always: "Always";
189
+ readonly Conditionally: "Conditionally";
190
+ readonly Never: "Never";
191
+ };
192
+ export type RequiresRecreation =
193
+ (typeof RequiresRecreation)[keyof typeof RequiresRecreation];
176
194
  export interface ResourceTargetDefinition {
177
195
  Attribute?: ResourceAttribute | string;
178
196
  Name?: string;
@@ -188,11 +206,12 @@ export interface ModuleInfo {
188
206
  TypeHierarchy?: string;
189
207
  LogicalIdHierarchy?: string;
190
208
  }
191
- export declare enum Replacement {
192
- Conditional = "Conditional",
193
- False = "False",
194
- True = "True",
195
- }
209
+ export declare const Replacement: {
210
+ readonly Conditional: "Conditional";
211
+ readonly False: "False";
212
+ readonly True: "True";
213
+ };
214
+ export type Replacement = (typeof Replacement)[keyof typeof Replacement];
196
215
  export interface ResourceChange {
197
216
  Action?: ChangeAction | string;
198
217
  LogicalResourceId?: string;
@@ -204,29 +223,36 @@ export interface ResourceChange {
204
223
  ChangeSetId?: string;
205
224
  ModuleInfo?: ModuleInfo;
206
225
  }
207
- export declare enum ChangeType {
208
- Resource = "Resource",
209
- }
226
+ export declare const ChangeType: {
227
+ readonly Resource: "Resource";
228
+ };
229
+ export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
210
230
  export interface Change {
211
231
  Type?: ChangeType | string;
212
232
  HookInvocationCount?: number;
213
233
  ResourceChange?: ResourceChange;
214
234
  }
215
- export declare enum HookFailureMode {
216
- FAIL = "FAIL",
217
- WARN = "WARN",
218
- }
219
- export declare enum HookInvocationPoint {
220
- PRE_PROVISION = "PRE_PROVISION",
221
- }
235
+ export declare const HookFailureMode: {
236
+ readonly FAIL: "FAIL";
237
+ readonly WARN: "WARN";
238
+ };
239
+ export type HookFailureMode =
240
+ (typeof HookFailureMode)[keyof typeof HookFailureMode];
241
+ export declare const HookInvocationPoint: {
242
+ readonly PRE_PROVISION: "PRE_PROVISION";
243
+ };
244
+ export type HookInvocationPoint =
245
+ (typeof HookInvocationPoint)[keyof typeof HookInvocationPoint];
222
246
  export interface ChangeSetHookResourceTargetDetails {
223
247
  LogicalResourceId?: string;
224
248
  ResourceType?: string;
225
249
  ResourceAction?: ChangeAction | string;
226
250
  }
227
- export declare enum HookTargetType {
228
- RESOURCE = "RESOURCE",
229
- }
251
+ export declare const HookTargetType: {
252
+ readonly RESOURCE: "RESOURCE";
253
+ };
254
+ export type HookTargetType =
255
+ (typeof HookTargetType)[keyof typeof HookTargetType];
230
256
  export interface ChangeSetHookTargetDetails {
231
257
  TargetType?: HookTargetType | string;
232
258
  ResourceTargetDetails?: ChangeSetHookResourceTargetDetails;
@@ -239,11 +265,13 @@ export interface ChangeSetHook {
239
265
  TypeConfigurationVersionId?: string;
240
266
  TargetDetails?: ChangeSetHookTargetDetails;
241
267
  }
242
- export declare enum ChangeSetHooksStatus {
243
- PLANNED = "PLANNED",
244
- PLANNING = "PLANNING",
245
- UNAVAILABLE = "UNAVAILABLE",
246
- }
268
+ export declare const ChangeSetHooksStatus: {
269
+ readonly PLANNED: "PLANNED";
270
+ readonly PLANNING: "PLANNING";
271
+ readonly UNAVAILABLE: "UNAVAILABLE";
272
+ };
273
+ export type ChangeSetHooksStatus =
274
+ (typeof ChangeSetHooksStatus)[keyof typeof ChangeSetHooksStatus];
247
275
  export declare class ChangeSetNotFoundException extends __BaseException {
248
276
  readonly name: "ChangeSetNotFoundException";
249
277
  readonly $fault: "client";
@@ -252,24 +280,28 @@ export declare class ChangeSetNotFoundException extends __BaseException {
252
280
  opts: __ExceptionOptionType<ChangeSetNotFoundException, __BaseException>
253
281
  );
254
282
  }
255
- export declare enum ChangeSetStatus {
256
- CREATE_COMPLETE = "CREATE_COMPLETE",
257
- CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
258
- CREATE_PENDING = "CREATE_PENDING",
259
- DELETE_COMPLETE = "DELETE_COMPLETE",
260
- DELETE_FAILED = "DELETE_FAILED",
261
- DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
262
- DELETE_PENDING = "DELETE_PENDING",
263
- FAILED = "FAILED",
264
- }
265
- export declare enum ExecutionStatus {
266
- AVAILABLE = "AVAILABLE",
267
- EXECUTE_COMPLETE = "EXECUTE_COMPLETE",
268
- EXECUTE_FAILED = "EXECUTE_FAILED",
269
- EXECUTE_IN_PROGRESS = "EXECUTE_IN_PROGRESS",
270
- OBSOLETE = "OBSOLETE",
271
- UNAVAILABLE = "UNAVAILABLE",
272
- }
283
+ export declare const ChangeSetStatus: {
284
+ readonly CREATE_COMPLETE: "CREATE_COMPLETE";
285
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
286
+ readonly CREATE_PENDING: "CREATE_PENDING";
287
+ readonly DELETE_COMPLETE: "DELETE_COMPLETE";
288
+ readonly DELETE_FAILED: "DELETE_FAILED";
289
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
290
+ readonly DELETE_PENDING: "DELETE_PENDING";
291
+ readonly FAILED: "FAILED";
292
+ };
293
+ export type ChangeSetStatus =
294
+ (typeof ChangeSetStatus)[keyof typeof ChangeSetStatus];
295
+ export declare const ExecutionStatus: {
296
+ readonly AVAILABLE: "AVAILABLE";
297
+ readonly EXECUTE_COMPLETE: "EXECUTE_COMPLETE";
298
+ readonly EXECUTE_FAILED: "EXECUTE_FAILED";
299
+ readonly EXECUTE_IN_PROGRESS: "EXECUTE_IN_PROGRESS";
300
+ readonly OBSOLETE: "OBSOLETE";
301
+ readonly UNAVAILABLE: "UNAVAILABLE";
302
+ };
303
+ export type ExecutionStatus =
304
+ (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
273
305
  export interface ChangeSetSummary {
274
306
  StackId?: string;
275
307
  StackName?: string;
@@ -284,11 +316,12 @@ export interface ChangeSetSummary {
284
316
  ParentChangeSetId?: string;
285
317
  RootChangeSetId?: string;
286
318
  }
287
- export declare enum ChangeSetType {
288
- CREATE = "CREATE",
289
- IMPORT = "IMPORT",
290
- UPDATE = "UPDATE",
291
- }
319
+ export declare const ChangeSetType: {
320
+ readonly CREATE: "CREATE";
321
+ readonly IMPORT: "IMPORT";
322
+ readonly UPDATE: "UPDATE";
323
+ };
324
+ export type ChangeSetType = (typeof ChangeSetType)[keyof typeof ChangeSetType];
292
325
  export interface ContinueUpdateRollbackInput {
293
326
  StackName: string | undefined;
294
327
  RoleARN?: string;
@@ -361,11 +394,12 @@ export declare class LimitExceededException extends __BaseException {
361
394
  opts: __ExceptionOptionType<LimitExceededException, __BaseException>
362
395
  );
363
396
  }
364
- export declare enum OnFailure {
365
- DELETE = "DELETE",
366
- DO_NOTHING = "DO_NOTHING",
367
- ROLLBACK = "ROLLBACK",
368
- }
397
+ export declare const OnFailure: {
398
+ readonly DELETE: "DELETE";
399
+ readonly DO_NOTHING: "DO_NOTHING";
400
+ readonly ROLLBACK: "ROLLBACK";
401
+ };
402
+ export type OnFailure = (typeof OnFailure)[keyof typeof OnFailure];
369
403
  export interface CreateStackInput {
370
404
  StackName: string | undefined;
371
405
  TemplateBody?: string;
@@ -394,10 +428,12 @@ export interface DeploymentTargets {
394
428
  OrganizationalUnitIds?: string[];
395
429
  AccountFilterType?: AccountFilterType | string;
396
430
  }
397
- export declare enum RegionConcurrencyType {
398
- PARALLEL = "PARALLEL",
399
- SEQUENTIAL = "SEQUENTIAL",
400
- }
431
+ export declare const RegionConcurrencyType: {
432
+ readonly PARALLEL: "PARALLEL";
433
+ readonly SEQUENTIAL: "SEQUENTIAL";
434
+ };
435
+ export type RegionConcurrencyType =
436
+ (typeof RegionConcurrencyType)[keyof typeof RegionConcurrencyType];
401
437
  export interface StackSetOperationPreferences {
402
438
  RegionConcurrencyType?: RegionConcurrencyType | string;
403
439
  RegionOrder?: string[];
@@ -473,10 +509,12 @@ export declare class CreatedButModifiedException extends __BaseException {
473
509
  export interface ManagedExecution {
474
510
  Active?: boolean;
475
511
  }
476
- export declare enum PermissionModels {
477
- SELF_MANAGED = "SELF_MANAGED",
478
- SERVICE_MANAGED = "SERVICE_MANAGED",
479
- }
512
+ export declare const PermissionModels: {
513
+ readonly SELF_MANAGED: "SELF_MANAGED";
514
+ readonly SERVICE_MANAGED: "SERVICE_MANAGED";
515
+ };
516
+ export type PermissionModels =
517
+ (typeof PermissionModels)[keyof typeof PermissionModels];
480
518
  export interface CreateStackSetInput {
481
519
  StackSetName: string | undefined;
482
520
  Description?: string;
@@ -559,11 +597,12 @@ export declare class StackSetNotEmptyException extends __BaseException {
559
597
  opts: __ExceptionOptionType<StackSetNotEmptyException, __BaseException>
560
598
  );
561
599
  }
562
- export declare enum RegistryType {
563
- HOOK = "HOOK",
564
- MODULE = "MODULE",
565
- RESOURCE = "RESOURCE",
566
- }
600
+ export declare const RegistryType: {
601
+ readonly HOOK: "HOOK";
602
+ readonly MODULE: "MODULE";
603
+ readonly RESOURCE: "RESOURCE";
604
+ };
605
+ export type RegistryType = (typeof RegistryType)[keyof typeof RegistryType];
567
606
  export interface DeregisterTypeInput {
568
607
  Arn?: string;
569
608
  Type?: RegistryType | string;
@@ -622,15 +661,19 @@ export interface DescribeChangeSetHooksOutput {
622
661
  export interface DescribePublisherInput {
623
662
  PublisherId?: string;
624
663
  }
625
- export declare enum IdentityProvider {
626
- AWS_Marketplace = "AWS_Marketplace",
627
- Bitbucket = "Bitbucket",
628
- GitHub = "GitHub",
629
- }
630
- export declare enum PublisherStatus {
631
- UNVERIFIED = "UNVERIFIED",
632
- VERIFIED = "VERIFIED",
633
- }
664
+ export declare const IdentityProvider: {
665
+ readonly AWS_Marketplace: "AWS_Marketplace";
666
+ readonly Bitbucket: "Bitbucket";
667
+ readonly GitHub: "GitHub";
668
+ };
669
+ export type IdentityProvider =
670
+ (typeof IdentityProvider)[keyof typeof IdentityProvider];
671
+ export declare const PublisherStatus: {
672
+ readonly UNVERIFIED: "UNVERIFIED";
673
+ readonly VERIFIED: "VERIFIED";
674
+ };
675
+ export type PublisherStatus =
676
+ (typeof PublisherStatus)[keyof typeof PublisherStatus];
634
677
  export interface DescribePublisherOutput {
635
678
  PublisherId?: string;
636
679
  PublisherStatus?: PublisherStatus | string;
@@ -640,17 +683,21 @@ export interface DescribePublisherOutput {
640
683
  export interface DescribeStackDriftDetectionStatusInput {
641
684
  StackDriftDetectionId: string | undefined;
642
685
  }
643
- export declare enum StackDriftDetectionStatus {
644
- DETECTION_COMPLETE = "DETECTION_COMPLETE",
645
- DETECTION_FAILED = "DETECTION_FAILED",
646
- DETECTION_IN_PROGRESS = "DETECTION_IN_PROGRESS",
647
- }
648
- export declare enum StackDriftStatus {
649
- DRIFTED = "DRIFTED",
650
- IN_SYNC = "IN_SYNC",
651
- NOT_CHECKED = "NOT_CHECKED",
652
- UNKNOWN = "UNKNOWN",
653
- }
686
+ export declare const StackDriftDetectionStatus: {
687
+ readonly DETECTION_COMPLETE: "DETECTION_COMPLETE";
688
+ readonly DETECTION_FAILED: "DETECTION_FAILED";
689
+ readonly DETECTION_IN_PROGRESS: "DETECTION_IN_PROGRESS";
690
+ };
691
+ export type StackDriftDetectionStatus =
692
+ (typeof StackDriftDetectionStatus)[keyof typeof StackDriftDetectionStatus];
693
+ export declare const StackDriftStatus: {
694
+ readonly DRIFTED: "DRIFTED";
695
+ readonly IN_SYNC: "IN_SYNC";
696
+ readonly NOT_CHECKED: "NOT_CHECKED";
697
+ readonly UNKNOWN: "UNKNOWN";
698
+ };
699
+ export type StackDriftStatus =
700
+ (typeof StackDriftStatus)[keyof typeof StackDriftStatus];
654
701
  export interface DescribeStackDriftDetectionStatusOutput {
655
702
  StackId: string | undefined;
656
703
  StackDriftDetectionId: string | undefined;
@@ -664,36 +711,39 @@ export interface DescribeStackEventsInput {
664
711
  StackName?: string;
665
712
  NextToken?: string;
666
713
  }
667
- export declare enum HookStatus {
668
- HOOK_COMPLETE_FAILED = "HOOK_COMPLETE_FAILED",
669
- HOOK_COMPLETE_SUCCEEDED = "HOOK_COMPLETE_SUCCEEDED",
670
- HOOK_FAILED = "HOOK_FAILED",
671
- HOOK_IN_PROGRESS = "HOOK_IN_PROGRESS",
672
- }
673
- export declare enum ResourceStatus {
674
- CREATE_COMPLETE = "CREATE_COMPLETE",
675
- CREATE_FAILED = "CREATE_FAILED",
676
- CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
677
- DELETE_COMPLETE = "DELETE_COMPLETE",
678
- DELETE_FAILED = "DELETE_FAILED",
679
- DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
680
- DELETE_SKIPPED = "DELETE_SKIPPED",
681
- IMPORT_COMPLETE = "IMPORT_COMPLETE",
682
- IMPORT_FAILED = "IMPORT_FAILED",
683
- IMPORT_IN_PROGRESS = "IMPORT_IN_PROGRESS",
684
- IMPORT_ROLLBACK_COMPLETE = "IMPORT_ROLLBACK_COMPLETE",
685
- IMPORT_ROLLBACK_FAILED = "IMPORT_ROLLBACK_FAILED",
686
- IMPORT_ROLLBACK_IN_PROGRESS = "IMPORT_ROLLBACK_IN_PROGRESS",
687
- ROLLBACK_COMPLETE = "ROLLBACK_COMPLETE",
688
- ROLLBACK_FAILED = "ROLLBACK_FAILED",
689
- ROLLBACK_IN_PROGRESS = "ROLLBACK_IN_PROGRESS",
690
- UPDATE_COMPLETE = "UPDATE_COMPLETE",
691
- UPDATE_FAILED = "UPDATE_FAILED",
692
- UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS",
693
- UPDATE_ROLLBACK_COMPLETE = "UPDATE_ROLLBACK_COMPLETE",
694
- UPDATE_ROLLBACK_FAILED = "UPDATE_ROLLBACK_FAILED",
695
- UPDATE_ROLLBACK_IN_PROGRESS = "UPDATE_ROLLBACK_IN_PROGRESS",
696
- }
714
+ export declare const HookStatus: {
715
+ readonly HOOK_COMPLETE_FAILED: "HOOK_COMPLETE_FAILED";
716
+ readonly HOOK_COMPLETE_SUCCEEDED: "HOOK_COMPLETE_SUCCEEDED";
717
+ readonly HOOK_FAILED: "HOOK_FAILED";
718
+ readonly HOOK_IN_PROGRESS: "HOOK_IN_PROGRESS";
719
+ };
720
+ export type HookStatus = (typeof HookStatus)[keyof typeof HookStatus];
721
+ export declare const ResourceStatus: {
722
+ readonly CREATE_COMPLETE: "CREATE_COMPLETE";
723
+ readonly CREATE_FAILED: "CREATE_FAILED";
724
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
725
+ readonly DELETE_COMPLETE: "DELETE_COMPLETE";
726
+ readonly DELETE_FAILED: "DELETE_FAILED";
727
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
728
+ readonly DELETE_SKIPPED: "DELETE_SKIPPED";
729
+ readonly IMPORT_COMPLETE: "IMPORT_COMPLETE";
730
+ readonly IMPORT_FAILED: "IMPORT_FAILED";
731
+ readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
732
+ readonly IMPORT_ROLLBACK_COMPLETE: "IMPORT_ROLLBACK_COMPLETE";
733
+ readonly IMPORT_ROLLBACK_FAILED: "IMPORT_ROLLBACK_FAILED";
734
+ readonly IMPORT_ROLLBACK_IN_PROGRESS: "IMPORT_ROLLBACK_IN_PROGRESS";
735
+ readonly ROLLBACK_COMPLETE: "ROLLBACK_COMPLETE";
736
+ readonly ROLLBACK_FAILED: "ROLLBACK_FAILED";
737
+ readonly ROLLBACK_IN_PROGRESS: "ROLLBACK_IN_PROGRESS";
738
+ readonly UPDATE_COMPLETE: "UPDATE_COMPLETE";
739
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
740
+ readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
741
+ readonly UPDATE_ROLLBACK_COMPLETE: "UPDATE_ROLLBACK_COMPLETE";
742
+ readonly UPDATE_ROLLBACK_FAILED: "UPDATE_ROLLBACK_FAILED";
743
+ readonly UPDATE_ROLLBACK_IN_PROGRESS: "UPDATE_ROLLBACK_IN_PROGRESS";
744
+ };
745
+ export type ResourceStatus =
746
+ (typeof ResourceStatus)[keyof typeof ResourceStatus];
697
747
  export interface StackEvent {
698
748
  StackId: string | undefined;
699
749
  EventId: string | undefined;
@@ -722,22 +772,26 @@ export interface DescribeStackInstanceInput {
722
772
  StackInstanceRegion: string | undefined;
723
773
  CallAs?: CallAs | string;
724
774
  }
725
- export declare enum StackInstanceDetailedStatus {
726
- CANCELLED = "CANCELLED",
727
- FAILED = "FAILED",
728
- INOPERABLE = "INOPERABLE",
729
- PENDING = "PENDING",
730
- RUNNING = "RUNNING",
731
- SUCCEEDED = "SUCCEEDED",
732
- }
775
+ export declare const StackInstanceDetailedStatus: {
776
+ readonly CANCELLED: "CANCELLED";
777
+ readonly FAILED: "FAILED";
778
+ readonly INOPERABLE: "INOPERABLE";
779
+ readonly PENDING: "PENDING";
780
+ readonly RUNNING: "RUNNING";
781
+ readonly SUCCEEDED: "SUCCEEDED";
782
+ };
783
+ export type StackInstanceDetailedStatus =
784
+ (typeof StackInstanceDetailedStatus)[keyof typeof StackInstanceDetailedStatus];
733
785
  export interface StackInstanceComprehensiveStatus {
734
786
  DetailedStatus?: StackInstanceDetailedStatus | string;
735
787
  }
736
- export declare enum StackInstanceStatus {
737
- CURRENT = "CURRENT",
738
- INOPERABLE = "INOPERABLE",
739
- OUTDATED = "OUTDATED",
740
- }
788
+ export declare const StackInstanceStatus: {
789
+ readonly CURRENT: "CURRENT";
790
+ readonly INOPERABLE: "INOPERABLE";
791
+ readonly OUTDATED: "OUTDATED";
792
+ };
793
+ export type StackInstanceStatus =
794
+ (typeof StackInstanceStatus)[keyof typeof StackInstanceStatus];
741
795
  export interface StackInstance {
742
796
  StackSetId?: string;
743
797
  Region?: string;
@@ -767,12 +821,14 @@ export interface DescribeStackResourceInput {
767
821
  StackName: string | undefined;
768
822
  LogicalResourceId: string | undefined;
769
823
  }
770
- export declare enum StackResourceDriftStatus {
771
- DELETED = "DELETED",
772
- IN_SYNC = "IN_SYNC",
773
- MODIFIED = "MODIFIED",
774
- NOT_CHECKED = "NOT_CHECKED",
775
- }
824
+ export declare const StackResourceDriftStatus: {
825
+ readonly DELETED: "DELETED";
826
+ readonly IN_SYNC: "IN_SYNC";
827
+ readonly MODIFIED: "MODIFIED";
828
+ readonly NOT_CHECKED: "NOT_CHECKED";
829
+ };
830
+ export type StackResourceDriftStatus =
831
+ (typeof StackResourceDriftStatus)[keyof typeof StackResourceDriftStatus];
776
832
  export interface StackResourceDriftInformation {
777
833
  StackResourceDriftStatus: StackResourceDriftStatus | string | undefined;
778
834
  LastCheckTimestamp?: Date;
@@ -804,11 +860,13 @@ export interface PhysicalResourceIdContextKeyValuePair {
804
860
  Key: string | undefined;
805
861
  Value: string | undefined;
806
862
  }
807
- export declare enum DifferenceType {
808
- ADD = "ADD",
809
- NOT_EQUAL = "NOT_EQUAL",
810
- REMOVE = "REMOVE",
811
- }
863
+ export declare const DifferenceType: {
864
+ readonly ADD: "ADD";
865
+ readonly NOT_EQUAL: "NOT_EQUAL";
866
+ readonly REMOVE: "REMOVE";
867
+ };
868
+ export type DifferenceType =
869
+ (typeof DifferenceType)[keyof typeof DifferenceType];
812
870
  export interface PropertyDifference {
813
871
  PropertyPath: string | undefined;
814
872
  ExpectedValue: string | undefined;
@@ -867,31 +925,32 @@ export interface Output {
867
925
  Description?: string;
868
926
  ExportName?: string;
869
927
  }
870
- export declare enum StackStatus {
871
- CREATE_COMPLETE = "CREATE_COMPLETE",
872
- CREATE_FAILED = "CREATE_FAILED",
873
- CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
874
- DELETE_COMPLETE = "DELETE_COMPLETE",
875
- DELETE_FAILED = "DELETE_FAILED",
876
- DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
877
- IMPORT_COMPLETE = "IMPORT_COMPLETE",
878
- IMPORT_IN_PROGRESS = "IMPORT_IN_PROGRESS",
879
- IMPORT_ROLLBACK_COMPLETE = "IMPORT_ROLLBACK_COMPLETE",
880
- IMPORT_ROLLBACK_FAILED = "IMPORT_ROLLBACK_FAILED",
881
- IMPORT_ROLLBACK_IN_PROGRESS = "IMPORT_ROLLBACK_IN_PROGRESS",
882
- REVIEW_IN_PROGRESS = "REVIEW_IN_PROGRESS",
883
- ROLLBACK_COMPLETE = "ROLLBACK_COMPLETE",
884
- ROLLBACK_FAILED = "ROLLBACK_FAILED",
885
- ROLLBACK_IN_PROGRESS = "ROLLBACK_IN_PROGRESS",
886
- UPDATE_COMPLETE = "UPDATE_COMPLETE",
887
- UPDATE_COMPLETE_CLEANUP_IN_PROGRESS = "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS",
888
- UPDATE_FAILED = "UPDATE_FAILED",
889
- UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS",
890
- UPDATE_ROLLBACK_COMPLETE = "UPDATE_ROLLBACK_COMPLETE",
891
- UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS = "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS",
892
- UPDATE_ROLLBACK_FAILED = "UPDATE_ROLLBACK_FAILED",
893
- UPDATE_ROLLBACK_IN_PROGRESS = "UPDATE_ROLLBACK_IN_PROGRESS",
894
- }
928
+ export declare const StackStatus: {
929
+ readonly CREATE_COMPLETE: "CREATE_COMPLETE";
930
+ readonly CREATE_FAILED: "CREATE_FAILED";
931
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
932
+ readonly DELETE_COMPLETE: "DELETE_COMPLETE";
933
+ readonly DELETE_FAILED: "DELETE_FAILED";
934
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
935
+ readonly IMPORT_COMPLETE: "IMPORT_COMPLETE";
936
+ readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
937
+ readonly IMPORT_ROLLBACK_COMPLETE: "IMPORT_ROLLBACK_COMPLETE";
938
+ readonly IMPORT_ROLLBACK_FAILED: "IMPORT_ROLLBACK_FAILED";
939
+ readonly IMPORT_ROLLBACK_IN_PROGRESS: "IMPORT_ROLLBACK_IN_PROGRESS";
940
+ readonly REVIEW_IN_PROGRESS: "REVIEW_IN_PROGRESS";
941
+ readonly ROLLBACK_COMPLETE: "ROLLBACK_COMPLETE";
942
+ readonly ROLLBACK_FAILED: "ROLLBACK_FAILED";
943
+ readonly ROLLBACK_IN_PROGRESS: "ROLLBACK_IN_PROGRESS";
944
+ readonly UPDATE_COMPLETE: "UPDATE_COMPLETE";
945
+ readonly UPDATE_COMPLETE_CLEANUP_IN_PROGRESS: "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS";
946
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
947
+ readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
948
+ readonly UPDATE_ROLLBACK_COMPLETE: "UPDATE_ROLLBACK_COMPLETE";
949
+ readonly UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS: "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS";
950
+ readonly UPDATE_ROLLBACK_FAILED: "UPDATE_ROLLBACK_FAILED";
951
+ readonly UPDATE_ROLLBACK_IN_PROGRESS: "UPDATE_ROLLBACK_IN_PROGRESS";
952
+ };
953
+ export type StackStatus = (typeof StackStatus)[keyof typeof StackStatus];
895
954
  export interface Stack {
896
955
  StackId?: string;
897
956
  StackName: string | undefined;
@@ -924,18 +983,22 @@ export interface DescribeStackSetInput {
924
983
  StackSetName: string | undefined;
925
984
  CallAs?: CallAs | string;
926
985
  }
927
- export declare enum StackSetDriftDetectionStatus {
928
- COMPLETED = "COMPLETED",
929
- FAILED = "FAILED",
930
- IN_PROGRESS = "IN_PROGRESS",
931
- PARTIAL_SUCCESS = "PARTIAL_SUCCESS",
932
- STOPPED = "STOPPED",
933
- }
934
- export declare enum StackSetDriftStatus {
935
- DRIFTED = "DRIFTED",
936
- IN_SYNC = "IN_SYNC",
937
- NOT_CHECKED = "NOT_CHECKED",
938
- }
986
+ export declare const StackSetDriftDetectionStatus: {
987
+ readonly COMPLETED: "COMPLETED";
988
+ readonly FAILED: "FAILED";
989
+ readonly IN_PROGRESS: "IN_PROGRESS";
990
+ readonly PARTIAL_SUCCESS: "PARTIAL_SUCCESS";
991
+ readonly STOPPED: "STOPPED";
992
+ };
993
+ export type StackSetDriftDetectionStatus =
994
+ (typeof StackSetDriftDetectionStatus)[keyof typeof StackSetDriftDetectionStatus];
995
+ export declare const StackSetDriftStatus: {
996
+ readonly DRIFTED: "DRIFTED";
997
+ readonly IN_SYNC: "IN_SYNC";
998
+ readonly NOT_CHECKED: "NOT_CHECKED";
999
+ };
1000
+ export type StackSetDriftStatus =
1001
+ (typeof StackSetDriftStatus)[keyof typeof StackSetDriftStatus];
939
1002
  export interface StackSetDriftDetectionDetails {
940
1003
  DriftStatus?: StackSetDriftStatus | string;
941
1004
  DriftDetectionStatus?: StackSetDriftDetectionStatus | string;
@@ -946,10 +1009,12 @@ export interface StackSetDriftDetectionDetails {
946
1009
  InProgressStackInstancesCount?: number;
947
1010
  FailedStackInstancesCount?: number;
948
1011
  }
949
- export declare enum StackSetStatus {
950
- ACTIVE = "ACTIVE",
951
- DELETED = "DELETED",
952
- }
1012
+ export declare const StackSetStatus: {
1013
+ readonly ACTIVE: "ACTIVE";
1014
+ readonly DELETED: "DELETED";
1015
+ };
1016
+ export type StackSetStatus =
1017
+ (typeof StackSetStatus)[keyof typeof StackSetStatus];
953
1018
  export interface StackSet {
954
1019
  StackSetName?: string;
955
1020
  StackSetId?: string;
@@ -977,20 +1042,24 @@ export interface DescribeStackSetOperationInput {
977
1042
  OperationId: string | undefined;
978
1043
  CallAs?: CallAs | string;
979
1044
  }
980
- export declare enum StackSetOperationAction {
981
- CREATE = "CREATE",
982
- DELETE = "DELETE",
983
- DETECT_DRIFT = "DETECT_DRIFT",
984
- UPDATE = "UPDATE",
985
- }
986
- export declare enum StackSetOperationStatus {
987
- FAILED = "FAILED",
988
- QUEUED = "QUEUED",
989
- RUNNING = "RUNNING",
990
- STOPPED = "STOPPED",
991
- STOPPING = "STOPPING",
992
- SUCCEEDED = "SUCCEEDED",
993
- }
1045
+ export declare const StackSetOperationAction: {
1046
+ readonly CREATE: "CREATE";
1047
+ readonly DELETE: "DELETE";
1048
+ readonly DETECT_DRIFT: "DETECT_DRIFT";
1049
+ readonly UPDATE: "UPDATE";
1050
+ };
1051
+ export type StackSetOperationAction =
1052
+ (typeof StackSetOperationAction)[keyof typeof StackSetOperationAction];
1053
+ export declare const StackSetOperationStatus: {
1054
+ readonly FAILED: "FAILED";
1055
+ readonly QUEUED: "QUEUED";
1056
+ readonly RUNNING: "RUNNING";
1057
+ readonly STOPPED: "STOPPED";
1058
+ readonly STOPPING: "STOPPING";
1059
+ readonly SUCCEEDED: "SUCCEEDED";
1060
+ };
1061
+ export type StackSetOperationStatus =
1062
+ (typeof StackSetOperationStatus)[keyof typeof StackSetOperationStatus];
994
1063
  export interface StackSetOperationStatusDetails {
995
1064
  FailedStackInstancesCount?: number;
996
1065
  }
@@ -1029,31 +1098,38 @@ export interface DescribeTypeInput {
1029
1098
  PublisherId?: string;
1030
1099
  PublicVersionNumber?: string;
1031
1100
  }
1032
- export declare enum DeprecatedStatus {
1033
- DEPRECATED = "DEPRECATED",
1034
- LIVE = "LIVE",
1035
- }
1036
- export declare enum ProvisioningType {
1037
- FULLY_MUTABLE = "FULLY_MUTABLE",
1038
- IMMUTABLE = "IMMUTABLE",
1039
- NON_PROVISIONABLE = "NON_PROVISIONABLE",
1040
- }
1101
+ export declare const DeprecatedStatus: {
1102
+ readonly DEPRECATED: "DEPRECATED";
1103
+ readonly LIVE: "LIVE";
1104
+ };
1105
+ export type DeprecatedStatus =
1106
+ (typeof DeprecatedStatus)[keyof typeof DeprecatedStatus];
1107
+ export declare const ProvisioningType: {
1108
+ readonly FULLY_MUTABLE: "FULLY_MUTABLE";
1109
+ readonly IMMUTABLE: "IMMUTABLE";
1110
+ readonly NON_PROVISIONABLE: "NON_PROVISIONABLE";
1111
+ };
1112
+ export type ProvisioningType =
1113
+ (typeof ProvisioningType)[keyof typeof ProvisioningType];
1041
1114
  export interface RequiredActivatedType {
1042
1115
  TypeNameAlias?: string;
1043
1116
  OriginalTypeName?: string;
1044
1117
  PublisherId?: string;
1045
1118
  SupportedMajorVersions?: number[];
1046
1119
  }
1047
- export declare enum TypeTestsStatus {
1048
- FAILED = "FAILED",
1049
- IN_PROGRESS = "IN_PROGRESS",
1050
- NOT_TESTED = "NOT_TESTED",
1051
- PASSED = "PASSED",
1052
- }
1053
- export declare enum Visibility {
1054
- PRIVATE = "PRIVATE",
1055
- PUBLIC = "PUBLIC",
1056
- }
1120
+ export declare const TypeTestsStatus: {
1121
+ readonly FAILED: "FAILED";
1122
+ readonly IN_PROGRESS: "IN_PROGRESS";
1123
+ readonly NOT_TESTED: "NOT_TESTED";
1124
+ readonly PASSED: "PASSED";
1125
+ };
1126
+ export type TypeTestsStatus =
1127
+ (typeof TypeTestsStatus)[keyof typeof TypeTestsStatus];
1128
+ export declare const Visibility: {
1129
+ readonly PRIVATE: "PRIVATE";
1130
+ readonly PUBLIC: "PUBLIC";
1131
+ };
1132
+ export type Visibility = (typeof Visibility)[keyof typeof Visibility];
1057
1133
  export interface DescribeTypeOutput {
1058
1134
  Arn?: string;
1059
1135
  Type?: RegistryType | string;
@@ -1086,11 +1162,13 @@ export interface DescribeTypeOutput {
1086
1162
  export interface DescribeTypeRegistrationInput {
1087
1163
  RegistrationToken: string | undefined;
1088
1164
  }
1089
- export declare enum RegistrationStatus {
1090
- COMPLETE = "COMPLETE",
1091
- FAILED = "FAILED",
1092
- IN_PROGRESS = "IN_PROGRESS",
1093
- }
1165
+ export declare const RegistrationStatus: {
1166
+ readonly COMPLETE: "COMPLETE";
1167
+ readonly FAILED: "FAILED";
1168
+ readonly IN_PROGRESS: "IN_PROGRESS";
1169
+ };
1170
+ export type RegistrationStatus =
1171
+ (typeof RegistrationStatus)[keyof typeof RegistrationStatus];
1094
1172
  export interface DescribeTypeRegistrationOutput {
1095
1173
  ProgressStatus?: RegistrationStatus | string;
1096
1174
  Description?: string;
@@ -1141,10 +1219,11 @@ export interface GetStackPolicyInput {
1141
1219
  export interface GetStackPolicyOutput {
1142
1220
  StackPolicyBody?: string;
1143
1221
  }
1144
- export declare enum TemplateStage {
1145
- Original = "Original",
1146
- Processed = "Processed",
1147
- }
1222
+ export declare const TemplateStage: {
1223
+ readonly Original: "Original";
1224
+ readonly Processed: "Processed";
1225
+ };
1226
+ export type TemplateStage = (typeof TemplateStage)[keyof typeof TemplateStage];
1148
1227
  export interface GetTemplateInput {
1149
1228
  StackName?: string;
1150
1229
  ChangeSetName?: string;
@@ -1236,10 +1315,12 @@ export interface ListImportsOutput {
1236
1315
  Imports?: string[];
1237
1316
  NextToken?: string;
1238
1317
  }
1239
- export declare enum StackInstanceFilterName {
1240
- DETAILED_STATUS = "DETAILED_STATUS",
1241
- LAST_OPERATION_ID = "LAST_OPERATION_ID",
1242
- }
1318
+ export declare const StackInstanceFilterName: {
1319
+ readonly DETAILED_STATUS: "DETAILED_STATUS";
1320
+ readonly LAST_OPERATION_ID: "LAST_OPERATION_ID";
1321
+ };
1322
+ export type StackInstanceFilterName =
1323
+ (typeof StackInstanceFilterName)[keyof typeof StackInstanceFilterName];
1243
1324
  export interface StackInstanceFilter {
1244
1325
  Name?: StackInstanceFilterName | string;
1245
1326
  Values?: string;
@@ -1317,9 +1398,11 @@ export interface ListStacksOutput {
1317
1398
  StackSummaries?: StackSummary[];
1318
1399
  NextToken?: string;
1319
1400
  }
1320
- export declare enum OperationResultFilterName {
1321
- OPERATION_RESULT_STATUS = "OPERATION_RESULT_STATUS",
1322
- }
1401
+ export declare const OperationResultFilterName: {
1402
+ readonly OPERATION_RESULT_STATUS: "OPERATION_RESULT_STATUS";
1403
+ };
1404
+ export type OperationResultFilterName =
1405
+ (typeof OperationResultFilterName)[keyof typeof OperationResultFilterName];
1323
1406
  export interface OperationResultFilter {
1324
1407
  Name?: OperationResultFilterName | string;
1325
1408
  Values?: string;
@@ -1332,13 +1415,15 @@ export interface ListStackSetOperationResultsInput {
1332
1415
  CallAs?: CallAs | string;
1333
1416
  Filters?: OperationResultFilter[];
1334
1417
  }
1335
- export declare enum StackSetOperationResultStatus {
1336
- CANCELLED = "CANCELLED",
1337
- FAILED = "FAILED",
1338
- PENDING = "PENDING",
1339
- RUNNING = "RUNNING",
1340
- SUCCEEDED = "SUCCEEDED",
1341
- }
1418
+ export declare const StackSetOperationResultStatus: {
1419
+ readonly CANCELLED: "CANCELLED";
1420
+ readonly FAILED: "FAILED";
1421
+ readonly PENDING: "PENDING";
1422
+ readonly RUNNING: "RUNNING";
1423
+ readonly SUCCEEDED: "SUCCEEDED";
1424
+ };
1425
+ export type StackSetOperationResultStatus =
1426
+ (typeof StackSetOperationResultStatus)[keyof typeof StackSetOperationResultStatus];
1342
1427
  export interface StackSetOperationResultSummary {
1343
1428
  Account?: string;
1344
1429
  Region?: string;
@@ -1491,33 +1576,37 @@ export declare class OperationStatusCheckFailedException extends __BaseException
1491
1576
  >
1492
1577
  );
1493
1578
  }
1494
- export declare enum OperationStatus {
1495
- FAILED = "FAILED",
1496
- IN_PROGRESS = "IN_PROGRESS",
1497
- PENDING = "PENDING",
1498
- SUCCESS = "SUCCESS",
1499
- }
1500
- export declare enum HandlerErrorCode {
1501
- AccessDenied = "AccessDenied",
1502
- AlreadyExists = "AlreadyExists",
1503
- GeneralServiceException = "GeneralServiceException",
1504
- HandlerInternalFailure = "HandlerInternalFailure",
1505
- InternalFailure = "InternalFailure",
1506
- InvalidCredentials = "InvalidCredentials",
1507
- InvalidRequest = "InvalidRequest",
1508
- InvalidTypeConfiguration = "InvalidTypeConfiguration",
1509
- NetworkFailure = "NetworkFailure",
1510
- NonCompliant = "NonCompliant",
1511
- NotFound = "NotFound",
1512
- NotUpdatable = "NotUpdatable",
1513
- ResourceConflict = "ResourceConflict",
1514
- ServiceInternalError = "ServiceInternalError",
1515
- ServiceLimitExceeded = "ServiceLimitExceeded",
1516
- ServiceTimeout = "NotStabilized",
1517
- Throttling = "Throttling",
1518
- Unknown = "Unknown",
1519
- UnsupportedTarget = "UnsupportedTarget",
1520
- }
1579
+ export declare const OperationStatus: {
1580
+ readonly FAILED: "FAILED";
1581
+ readonly IN_PROGRESS: "IN_PROGRESS";
1582
+ readonly PENDING: "PENDING";
1583
+ readonly SUCCESS: "SUCCESS";
1584
+ };
1585
+ export type OperationStatus =
1586
+ (typeof OperationStatus)[keyof typeof OperationStatus];
1587
+ export declare const HandlerErrorCode: {
1588
+ readonly AccessDenied: "AccessDenied";
1589
+ readonly AlreadyExists: "AlreadyExists";
1590
+ readonly GeneralServiceException: "GeneralServiceException";
1591
+ readonly HandlerInternalFailure: "HandlerInternalFailure";
1592
+ readonly InternalFailure: "InternalFailure";
1593
+ readonly InvalidCredentials: "InvalidCredentials";
1594
+ readonly InvalidRequest: "InvalidRequest";
1595
+ readonly InvalidTypeConfiguration: "InvalidTypeConfiguration";
1596
+ readonly NetworkFailure: "NetworkFailure";
1597
+ readonly NonCompliant: "NonCompliant";
1598
+ readonly NotFound: "NotFound";
1599
+ readonly NotUpdatable: "NotUpdatable";
1600
+ readonly ResourceConflict: "ResourceConflict";
1601
+ readonly ServiceInternalError: "ServiceInternalError";
1602
+ readonly ServiceLimitExceeded: "ServiceLimitExceeded";
1603
+ readonly ServiceTimeout: "NotStabilized";
1604
+ readonly Throttling: "Throttling";
1605
+ readonly Unknown: "Unknown";
1606
+ readonly UnsupportedTarget: "UnsupportedTarget";
1607
+ };
1608
+ export type HandlerErrorCode =
1609
+ (typeof HandlerErrorCode)[keyof typeof HandlerErrorCode];
1521
1610
  export interface RecordHandlerProgressInput {
1522
1611
  BearerToken: string | undefined;
1523
1612
  OperationStatus: OperationStatus | string | undefined;
@@ -1576,10 +1665,12 @@ export interface SetTypeDefaultVersionInput {
1576
1665
  VersionId?: string;
1577
1666
  }
1578
1667
  export interface SetTypeDefaultVersionOutput {}
1579
- export declare enum ResourceSignalStatus {
1580
- FAILURE = "FAILURE",
1581
- SUCCESS = "SUCCESS",
1582
- }
1668
+ export declare const ResourceSignalStatus: {
1669
+ readonly FAILURE: "FAILURE";
1670
+ readonly SUCCESS: "SUCCESS";
1671
+ };
1672
+ export type ResourceSignalStatus =
1673
+ (typeof ResourceSignalStatus)[keyof typeof ResourceSignalStatus];
1583
1674
  export interface SignalResourceInput {
1584
1675
  StackName: string | undefined;
1585
1676
  LogicalResourceId: string | undefined;