@cdk8s/awscdk-resolver 0.0.13 → 0.0.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. package/.jsii +5 -5
  2. package/lib/resolve.js +1 -1
  3. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/models_0.js +1 -0
  4. package/node_modules/@aws-sdk/client-cloudformation/dist-es/models/models_0.js +1 -0
  5. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeChangeSetCommand.d.ts +2 -2
  6. package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_0.d.ts +135 -134
  7. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_0.d.ts +135 -134
  8. package/node_modules/@aws-sdk/client-cloudformation/package.json +5 -5
  9. package/node_modules/@aws-sdk/client-sso/package.json +3 -3
  10. package/node_modules/@aws-sdk/client-sts/package.json +4 -4
  11. package/node_modules/@aws-sdk/credential-provider-ini/package.json +2 -2
  12. package/node_modules/@aws-sdk/credential-provider-node/package.json +3 -3
  13. package/node_modules/@aws-sdk/credential-provider-sso/package.json +3 -3
  14. package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +1 -1
  15. package/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +1 -1
  16. package/node_modules/@aws-sdk/middleware-host-header/package.json +1 -1
  17. package/node_modules/@aws-sdk/token-providers/package.json +3 -3
  18. package/node_modules/@smithy/config-resolver/package.json +2 -2
  19. package/node_modules/@smithy/credential-provider-imds/package.json +2 -2
  20. package/node_modules/@smithy/middleware-endpoint/package.json +3 -3
  21. package/node_modules/@smithy/middleware-retry/package.json +2 -2
  22. package/node_modules/@smithy/node-config-provider/package.json +2 -2
  23. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/parseIni.js +11 -8
  24. package/node_modules/@smithy/shared-ini-file-loader/dist-es/parseIni.js +11 -8
  25. package/node_modules/@smithy/shared-ini-file-loader/package.json +1 -1
  26. package/node_modules/@smithy/util-defaults-mode-node/package.json +4 -4
  27. package/package.json +7 -7
@@ -16,7 +16,7 @@ export declare const AccountGateStatus: {
16
16
  export type AccountGateStatus =
17
17
  (typeof AccountGateStatus)[keyof typeof AccountGateStatus];
18
18
  export interface AccountGateResult {
19
- Status?: AccountGateStatus | string;
19
+ Status?: AccountGateStatus;
20
20
  StatusReason?: string;
21
21
  }
22
22
  export interface AccountLimit {
@@ -58,7 +58,7 @@ export declare const VersionBump: {
58
58
  };
59
59
  export type VersionBump = (typeof VersionBump)[keyof typeof VersionBump];
60
60
  export interface ActivateTypeInput {
61
- Type?: ThirdPartyType | string;
61
+ Type?: ThirdPartyType;
62
62
  PublicTypeArn?: string;
63
63
  PublisherId?: string;
64
64
  TypeName?: string;
@@ -66,7 +66,7 @@ export interface ActivateTypeInput {
66
66
  AutoUpdate?: boolean;
67
67
  LoggingConfig?: LoggingConfig;
68
68
  ExecutionRoleArn?: string;
69
- VersionBump?: VersionBump | string;
69
+ VersionBump?: VersionBump;
70
70
  MajorVersion?: number;
71
71
  }
72
72
  export interface ActivateTypeOutput {
@@ -104,7 +104,7 @@ export interface TypeConfigurationIdentifier {
104
104
  TypeArn?: string;
105
105
  TypeConfigurationAlias?: string;
106
106
  TypeConfigurationArn?: string;
107
- Type?: ThirdPartyType | string;
107
+ Type?: ThirdPartyType;
108
108
  TypeName?: string;
109
109
  }
110
110
  export interface BatchDescribeTypeConfigurationsInput {
@@ -199,6 +199,7 @@ export declare const ResourceAttribute: {
199
199
  readonly Properties: "Properties";
200
200
  readonly Tags: "Tags";
201
201
  readonly UpdatePolicy: "UpdatePolicy";
202
+ readonly UpdateReplacePolicy: "UpdateReplacePolicy";
202
203
  };
203
204
  export type ResourceAttribute =
204
205
  (typeof ResourceAttribute)[keyof typeof ResourceAttribute];
@@ -210,14 +211,14 @@ export declare const RequiresRecreation: {
210
211
  export type RequiresRecreation =
211
212
  (typeof RequiresRecreation)[keyof typeof RequiresRecreation];
212
213
  export interface ResourceTargetDefinition {
213
- Attribute?: ResourceAttribute | string;
214
+ Attribute?: ResourceAttribute;
214
215
  Name?: string;
215
- RequiresRecreation?: RequiresRecreation | string;
216
+ RequiresRecreation?: RequiresRecreation;
216
217
  }
217
218
  export interface ResourceChangeDetail {
218
219
  Target?: ResourceTargetDefinition;
219
- Evaluation?: EvaluationType | string;
220
- ChangeSource?: ChangeSource | string;
220
+ Evaluation?: EvaluationType;
221
+ ChangeSource?: ChangeSource;
221
222
  CausingEntity?: string;
222
223
  }
223
224
  export interface ModuleInfo {
@@ -231,12 +232,12 @@ export declare const Replacement: {
231
232
  };
232
233
  export type Replacement = (typeof Replacement)[keyof typeof Replacement];
233
234
  export interface ResourceChange {
234
- Action?: ChangeAction | string;
235
+ Action?: ChangeAction;
235
236
  LogicalResourceId?: string;
236
237
  PhysicalResourceId?: string;
237
238
  ResourceType?: string;
238
- Replacement?: Replacement | string;
239
- Scope?: (ResourceAttribute | string)[];
239
+ Replacement?: Replacement;
240
+ Scope?: ResourceAttribute[];
240
241
  Details?: ResourceChangeDetail[];
241
242
  ChangeSetId?: string;
242
243
  ModuleInfo?: ModuleInfo;
@@ -246,7 +247,7 @@ export declare const ChangeType: {
246
247
  };
247
248
  export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
248
249
  export interface Change {
249
- Type?: ChangeType | string;
250
+ Type?: ChangeType;
250
251
  HookInvocationCount?: number;
251
252
  ResourceChange?: ResourceChange;
252
253
  }
@@ -264,7 +265,7 @@ export type HookInvocationPoint =
264
265
  export interface ChangeSetHookResourceTargetDetails {
265
266
  LogicalResourceId?: string;
266
267
  ResourceType?: string;
267
- ResourceAction?: ChangeAction | string;
268
+ ResourceAction?: ChangeAction;
268
269
  }
269
270
  export declare const HookTargetType: {
270
271
  readonly RESOURCE: "RESOURCE";
@@ -272,12 +273,12 @@ export declare const HookTargetType: {
272
273
  export type HookTargetType =
273
274
  (typeof HookTargetType)[keyof typeof HookTargetType];
274
275
  export interface ChangeSetHookTargetDetails {
275
- TargetType?: HookTargetType | string;
276
+ TargetType?: HookTargetType;
276
277
  ResourceTargetDetails?: ChangeSetHookResourceTargetDetails;
277
278
  }
278
279
  export interface ChangeSetHook {
279
- InvocationPoint?: HookInvocationPoint | string;
280
- FailureMode?: HookFailureMode | string;
280
+ InvocationPoint?: HookInvocationPoint;
281
+ FailureMode?: HookFailureMode;
281
282
  TypeName?: string;
282
283
  TypeVersionId?: string;
283
284
  TypeConfigurationVersionId?: string;
@@ -325,8 +326,8 @@ export interface ChangeSetSummary {
325
326
  StackName?: string;
326
327
  ChangeSetId?: string;
327
328
  ChangeSetName?: string;
328
- ExecutionStatus?: ExecutionStatus | string;
329
- Status?: ChangeSetStatus | string;
329
+ ExecutionStatus?: ExecutionStatus;
330
+ Status?: ChangeSetStatus;
330
331
  StatusReason?: string;
331
332
  CreationTime?: Date;
332
333
  Description?: string;
@@ -383,7 +384,7 @@ export interface CreateChangeSetInput {
383
384
  TemplateURL?: string;
384
385
  UsePreviousTemplate?: boolean;
385
386
  Parameters?: Parameter[];
386
- Capabilities?: (Capability | string)[];
387
+ Capabilities?: Capability[];
387
388
  ResourceTypes?: string[];
388
389
  RoleARN?: string;
389
390
  RollbackConfiguration?: RollbackConfiguration;
@@ -392,10 +393,10 @@ export interface CreateChangeSetInput {
392
393
  ChangeSetName: string | undefined;
393
394
  ClientToken?: string;
394
395
  Description?: string;
395
- ChangeSetType?: ChangeSetType | string;
396
+ ChangeSetType?: ChangeSetType;
396
397
  ResourcesToImport?: ResourceToImport[];
397
398
  IncludeNestedStacks?: boolean;
398
- OnStackFailure?: OnStackFailure | string;
399
+ OnStackFailure?: OnStackFailure;
399
400
  }
400
401
  export interface CreateChangeSetOutput {
401
402
  Id?: string;
@@ -435,10 +436,10 @@ export interface CreateStackInput {
435
436
  RollbackConfiguration?: RollbackConfiguration;
436
437
  TimeoutInMinutes?: number;
437
438
  NotificationARNs?: string[];
438
- Capabilities?: (Capability | string)[];
439
+ Capabilities?: Capability[];
439
440
  ResourceTypes?: string[];
440
441
  RoleARN?: string;
441
- OnFailure?: OnFailure | string;
442
+ OnFailure?: OnFailure;
442
443
  StackPolicyBody?: string;
443
444
  StackPolicyURL?: string;
444
445
  Tags?: Tag[];
@@ -453,7 +454,7 @@ export interface DeploymentTargets {
453
454
  Accounts?: string[];
454
455
  AccountsUrl?: string;
455
456
  OrganizationalUnitIds?: string[];
456
- AccountFilterType?: AccountFilterType | string;
457
+ AccountFilterType?: AccountFilterType;
457
458
  }
458
459
  export declare const RegionConcurrencyType: {
459
460
  readonly PARALLEL: "PARALLEL";
@@ -462,7 +463,7 @@ export declare const RegionConcurrencyType: {
462
463
  export type RegionConcurrencyType =
463
464
  (typeof RegionConcurrencyType)[keyof typeof RegionConcurrencyType];
464
465
  export interface StackSetOperationPreferences {
465
- RegionConcurrencyType?: RegionConcurrencyType | string;
466
+ RegionConcurrencyType?: RegionConcurrencyType;
466
467
  RegionOrder?: string[];
467
468
  FailureToleranceCount?: number;
468
469
  FailureTolerancePercentage?: number;
@@ -477,7 +478,7 @@ export interface CreateStackInstancesInput {
477
478
  ParameterOverrides?: Parameter[];
478
479
  OperationPreferences?: StackSetOperationPreferences;
479
480
  OperationId?: string;
480
- CallAs?: CallAs | string;
481
+ CallAs?: CallAs;
481
482
  }
482
483
  export interface CreateStackInstancesOutput {
483
484
  OperationId?: string;
@@ -541,13 +542,13 @@ export interface CreateStackSetInput {
541
542
  TemplateURL?: string;
542
543
  StackId?: string;
543
544
  Parameters?: Parameter[];
544
- Capabilities?: (Capability | string)[];
545
+ Capabilities?: Capability[];
545
546
  Tags?: Tag[];
546
547
  AdministrationRoleARN?: string;
547
548
  ExecutionRoleName?: string;
548
- PermissionModel?: PermissionModels | string;
549
+ PermissionModel?: PermissionModels;
549
550
  AutoDeployment?: AutoDeployment;
550
- CallAs?: CallAs | string;
551
+ CallAs?: CallAs;
551
552
  ClientRequestToken?: string;
552
553
  ManagedExecution?: ManagedExecution;
553
554
  }
@@ -566,7 +567,7 @@ export interface DeactivateOrganizationsAccessInput {}
566
567
  export interface DeactivateOrganizationsAccessOutput {}
567
568
  export interface DeactivateTypeInput {
568
569
  TypeName?: string;
569
- Type?: ThirdPartyType | string;
570
+ Type?: ThirdPartyType;
570
571
  Arn?: string;
571
572
  }
572
573
  export interface DeactivateTypeOutput {}
@@ -600,14 +601,14 @@ export interface DeleteStackInstancesInput {
600
601
  OperationPreferences?: StackSetOperationPreferences;
601
602
  RetainStacks: boolean | undefined;
602
603
  OperationId?: string;
603
- CallAs?: CallAs | string;
604
+ CallAs?: CallAs;
604
605
  }
605
606
  export interface DeleteStackInstancesOutput {
606
607
  OperationId?: string;
607
608
  }
608
609
  export interface DeleteStackSetInput {
609
610
  StackSetName: string | undefined;
610
- CallAs?: CallAs | string;
611
+ CallAs?: CallAs;
611
612
  }
612
613
  export interface DeleteStackSetOutput {}
613
614
  export declare class StackSetNotEmptyException extends __BaseException {
@@ -626,7 +627,7 @@ export declare const RegistryType: {
626
627
  export type RegistryType = (typeof RegistryType)[keyof typeof RegistryType];
627
628
  export interface DeregisterTypeInput {
628
629
  Arn?: string;
629
- Type?: RegistryType | string;
630
+ Type?: RegistryType;
630
631
  TypeName?: string;
631
632
  VersionId?: string;
632
633
  }
@@ -651,19 +652,19 @@ export interface DescribeChangeSetOutput {
651
652
  Description?: string;
652
653
  Parameters?: Parameter[];
653
654
  CreationTime?: Date;
654
- ExecutionStatus?: ExecutionStatus | string;
655
- Status?: ChangeSetStatus | string;
655
+ ExecutionStatus?: ExecutionStatus;
656
+ Status?: ChangeSetStatus;
656
657
  StatusReason?: string;
657
658
  NotificationARNs?: string[];
658
659
  RollbackConfiguration?: RollbackConfiguration;
659
- Capabilities?: (Capability | string)[];
660
+ Capabilities?: Capability[];
660
661
  Tags?: Tag[];
661
662
  Changes?: Change[];
662
663
  NextToken?: string;
663
664
  IncludeNestedStacks?: boolean;
664
665
  ParentChangeSetId?: string;
665
666
  RootChangeSetId?: string;
666
- OnStackFailure?: OnStackFailure | string;
667
+ OnStackFailure?: OnStackFailure;
667
668
  }
668
669
  export interface DescribeChangeSetHooksInput {
669
670
  ChangeSetName: string | undefined;
@@ -675,13 +676,13 @@ export interface DescribeChangeSetHooksOutput {
675
676
  ChangeSetId?: string;
676
677
  ChangeSetName?: string;
677
678
  Hooks?: ChangeSetHook[];
678
- Status?: ChangeSetHooksStatus | string;
679
+ Status?: ChangeSetHooksStatus;
679
680
  NextToken?: string;
680
681
  StackId?: string;
681
682
  StackName?: string;
682
683
  }
683
684
  export interface DescribeOrganizationsAccessInput {
684
- CallAs?: CallAs | string;
685
+ CallAs?: CallAs;
685
686
  }
686
687
  export declare const OrganizationStatus: {
687
688
  readonly DISABLED: "DISABLED";
@@ -691,7 +692,7 @@ export declare const OrganizationStatus: {
691
692
  export type OrganizationStatus =
692
693
  (typeof OrganizationStatus)[keyof typeof OrganizationStatus];
693
694
  export interface DescribeOrganizationsAccessOutput {
694
- Status?: OrganizationStatus | string;
695
+ Status?: OrganizationStatus;
695
696
  }
696
697
  export interface DescribePublisherInput {
697
698
  PublisherId?: string;
@@ -711,8 +712,8 @@ export type PublisherStatus =
711
712
  (typeof PublisherStatus)[keyof typeof PublisherStatus];
712
713
  export interface DescribePublisherOutput {
713
714
  PublisherId?: string;
714
- PublisherStatus?: PublisherStatus | string;
715
- IdentityProvider?: IdentityProvider | string;
715
+ PublisherStatus?: PublisherStatus;
716
+ IdentityProvider?: IdentityProvider;
716
717
  PublisherProfile?: string;
717
718
  }
718
719
  export interface DescribeStackDriftDetectionStatusInput {
@@ -736,8 +737,8 @@ export type StackDriftStatus =
736
737
  export interface DescribeStackDriftDetectionStatusOutput {
737
738
  StackId: string | undefined;
738
739
  StackDriftDetectionId: string | undefined;
739
- StackDriftStatus?: StackDriftStatus | string;
740
- DetectionStatus: StackDriftDetectionStatus | string | undefined;
740
+ StackDriftStatus?: StackDriftStatus;
741
+ DetectionStatus: StackDriftDetectionStatus | undefined;
741
742
  DetectionStatusReason?: string;
742
743
  DriftedStackResourceCount?: number;
743
744
  Timestamp: Date | undefined;
@@ -787,15 +788,15 @@ export interface StackEvent {
787
788
  PhysicalResourceId?: string;
788
789
  ResourceType?: string;
789
790
  Timestamp: Date | undefined;
790
- ResourceStatus?: ResourceStatus | string;
791
+ ResourceStatus?: ResourceStatus;
791
792
  ResourceStatusReason?: string;
792
793
  ResourceProperties?: string;
793
794
  ClientRequestToken?: string;
794
795
  HookType?: string;
795
- HookStatus?: HookStatus | string;
796
+ HookStatus?: HookStatus;
796
797
  HookStatusReason?: string;
797
- HookInvocationPoint?: HookInvocationPoint | string;
798
- HookFailureMode?: HookFailureMode | string;
798
+ HookInvocationPoint?: HookInvocationPoint;
799
+ HookFailureMode?: HookFailureMode;
799
800
  }
800
801
  export interface DescribeStackEventsOutput {
801
802
  StackEvents?: StackEvent[];
@@ -805,7 +806,7 @@ export interface DescribeStackInstanceInput {
805
806
  StackSetName: string | undefined;
806
807
  StackInstanceAccount: string | undefined;
807
808
  StackInstanceRegion: string | undefined;
808
- CallAs?: CallAs | string;
809
+ CallAs?: CallAs;
809
810
  }
810
811
  export declare const StackInstanceDetailedStatus: {
811
812
  readonly CANCELLED: "CANCELLED";
@@ -819,7 +820,7 @@ export declare const StackInstanceDetailedStatus: {
819
820
  export type StackInstanceDetailedStatus =
820
821
  (typeof StackInstanceDetailedStatus)[keyof typeof StackInstanceDetailedStatus];
821
822
  export interface StackInstanceComprehensiveStatus {
822
- DetailedStatus?: StackInstanceDetailedStatus | string;
823
+ DetailedStatus?: StackInstanceDetailedStatus;
823
824
  }
824
825
  export declare const StackInstanceStatus: {
825
826
  readonly CURRENT: "CURRENT";
@@ -834,11 +835,11 @@ export interface StackInstance {
834
835
  Account?: string;
835
836
  StackId?: string;
836
837
  ParameterOverrides?: Parameter[];
837
- Status?: StackInstanceStatus | string;
838
+ Status?: StackInstanceStatus;
838
839
  StackInstanceStatus?: StackInstanceComprehensiveStatus;
839
840
  StatusReason?: string;
840
841
  OrganizationalUnitId?: string;
841
- DriftStatus?: StackDriftStatus | string;
842
+ DriftStatus?: StackDriftStatus;
842
843
  LastDriftCheckTimestamp?: Date;
843
844
  LastOperationId?: string;
844
845
  }
@@ -866,7 +867,7 @@ export declare const StackResourceDriftStatus: {
866
867
  export type StackResourceDriftStatus =
867
868
  (typeof StackResourceDriftStatus)[keyof typeof StackResourceDriftStatus];
868
869
  export interface StackResourceDriftInformation {
869
- StackResourceDriftStatus: StackResourceDriftStatus | string | undefined;
870
+ StackResourceDriftStatus: StackResourceDriftStatus | undefined;
870
871
  LastCheckTimestamp?: Date;
871
872
  }
872
873
  export interface StackResourceDetail {
@@ -876,7 +877,7 @@ export interface StackResourceDetail {
876
877
  PhysicalResourceId?: string;
877
878
  ResourceType: string | undefined;
878
879
  LastUpdatedTimestamp: Date | undefined;
879
- ResourceStatus: ResourceStatus | string | undefined;
880
+ ResourceStatus: ResourceStatus | undefined;
880
881
  ResourceStatusReason?: string;
881
882
  Description?: string;
882
883
  Metadata?: string;
@@ -888,7 +889,7 @@ export interface DescribeStackResourceOutput {
888
889
  }
889
890
  export interface DescribeStackResourceDriftsInput {
890
891
  StackName: string | undefined;
891
- StackResourceDriftStatusFilters?: (StackResourceDriftStatus | string)[];
892
+ StackResourceDriftStatusFilters?: StackResourceDriftStatus[];
892
893
  NextToken?: string;
893
894
  MaxResults?: number;
894
895
  }
@@ -907,7 +908,7 @@ export interface PropertyDifference {
907
908
  PropertyPath: string | undefined;
908
909
  ExpectedValue: string | undefined;
909
910
  ActualValue: string | undefined;
910
- DifferenceType: DifferenceType | string | undefined;
911
+ DifferenceType: DifferenceType | undefined;
911
912
  }
912
913
  export interface StackResourceDrift {
913
914
  StackId: string | undefined;
@@ -918,7 +919,7 @@ export interface StackResourceDrift {
918
919
  ExpectedProperties?: string;
919
920
  ActualProperties?: string;
920
921
  PropertyDifferences?: PropertyDifference[];
921
- StackResourceDriftStatus: StackResourceDriftStatus | string | undefined;
922
+ StackResourceDriftStatus: StackResourceDriftStatus | undefined;
922
923
  Timestamp: Date | undefined;
923
924
  ModuleInfo?: ModuleInfo;
924
925
  }
@@ -938,7 +939,7 @@ export interface StackResource {
938
939
  PhysicalResourceId?: string;
939
940
  ResourceType: string | undefined;
940
941
  Timestamp: Date | undefined;
941
- ResourceStatus: ResourceStatus | string | undefined;
942
+ ResourceStatus: ResourceStatus | undefined;
942
943
  ResourceStatusReason?: string;
943
944
  Description?: string;
944
945
  DriftInformation?: StackResourceDriftInformation;
@@ -952,7 +953,7 @@ export interface DescribeStacksInput {
952
953
  NextToken?: string;
953
954
  }
954
955
  export interface StackDriftInformation {
955
- StackDriftStatus: StackDriftStatus | string | undefined;
956
+ StackDriftStatus: StackDriftStatus | undefined;
956
957
  LastCheckTimestamp?: Date;
957
958
  }
958
959
  export interface Output {
@@ -997,12 +998,12 @@ export interface Stack {
997
998
  DeletionTime?: Date;
998
999
  LastUpdatedTime?: Date;
999
1000
  RollbackConfiguration?: RollbackConfiguration;
1000
- StackStatus: StackStatus | string | undefined;
1001
+ StackStatus: StackStatus | undefined;
1001
1002
  StackStatusReason?: string;
1002
1003
  DisableRollback?: boolean;
1003
1004
  NotificationARNs?: string[];
1004
1005
  TimeoutInMinutes?: number;
1005
- Capabilities?: (Capability | string)[];
1006
+ Capabilities?: Capability[];
1006
1007
  Outputs?: Output[];
1007
1008
  RoleARN?: string;
1008
1009
  Tags?: Tag[];
@@ -1018,7 +1019,7 @@ export interface DescribeStacksOutput {
1018
1019
  }
1019
1020
  export interface DescribeStackSetInput {
1020
1021
  StackSetName: string | undefined;
1021
- CallAs?: CallAs | string;
1022
+ CallAs?: CallAs;
1022
1023
  }
1023
1024
  export declare const StackSetDriftDetectionStatus: {
1024
1025
  readonly COMPLETED: "COMPLETED";
@@ -1037,8 +1038,8 @@ export declare const StackSetDriftStatus: {
1037
1038
  export type StackSetDriftStatus =
1038
1039
  (typeof StackSetDriftStatus)[keyof typeof StackSetDriftStatus];
1039
1040
  export interface StackSetDriftDetectionDetails {
1040
- DriftStatus?: StackSetDriftStatus | string;
1041
- DriftDetectionStatus?: StackSetDriftDetectionStatus | string;
1041
+ DriftStatus?: StackSetDriftStatus;
1042
+ DriftDetectionStatus?: StackSetDriftDetectionStatus;
1042
1043
  LastDriftCheckTimestamp?: Date;
1043
1044
  TotalStackInstancesCount?: number;
1044
1045
  DriftedStackInstancesCount?: number;
@@ -1056,17 +1057,17 @@ export interface StackSet {
1056
1057
  StackSetName?: string;
1057
1058
  StackSetId?: string;
1058
1059
  Description?: string;
1059
- Status?: StackSetStatus | string;
1060
+ Status?: StackSetStatus;
1060
1061
  TemplateBody?: string;
1061
1062
  Parameters?: Parameter[];
1062
- Capabilities?: (Capability | string)[];
1063
+ Capabilities?: Capability[];
1063
1064
  Tags?: Tag[];
1064
1065
  StackSetARN?: string;
1065
1066
  AdministrationRoleARN?: string;
1066
1067
  ExecutionRoleName?: string;
1067
1068
  StackSetDriftDetectionDetails?: StackSetDriftDetectionDetails;
1068
1069
  AutoDeployment?: AutoDeployment;
1069
- PermissionModel?: PermissionModels | string;
1070
+ PermissionModel?: PermissionModels;
1070
1071
  OrganizationalUnitIds?: string[];
1071
1072
  ManagedExecution?: ManagedExecution;
1072
1073
  Regions?: string[];
@@ -1077,7 +1078,7 @@ export interface DescribeStackSetOutput {
1077
1078
  export interface DescribeStackSetOperationInput {
1078
1079
  StackSetName: string | undefined;
1079
1080
  OperationId: string | undefined;
1080
- CallAs?: CallAs | string;
1081
+ CallAs?: CallAs;
1081
1082
  }
1082
1083
  export declare const StackSetOperationAction: {
1083
1084
  readonly CREATE: "CREATE";
@@ -1103,8 +1104,8 @@ export interface StackSetOperationStatusDetails {
1103
1104
  export interface StackSetOperation {
1104
1105
  OperationId?: string;
1105
1106
  StackSetId?: string;
1106
- Action?: StackSetOperationAction | string;
1107
- Status?: StackSetOperationStatus | string;
1107
+ Action?: StackSetOperationAction;
1108
+ Status?: StackSetOperationStatus;
1108
1109
  OperationPreferences?: StackSetOperationPreferences;
1109
1110
  RetainStacks?: boolean;
1110
1111
  AdministrationRoleARN?: string;
@@ -1120,7 +1121,7 @@ export interface DescribeStackSetOperationOutput {
1120
1121
  StackSetOperation?: StackSetOperation;
1121
1122
  }
1122
1123
  export interface DescribeTypeInput {
1123
- Type?: RegistryType | string;
1124
+ Type?: RegistryType;
1124
1125
  TypeName?: string;
1125
1126
  Arn?: string;
1126
1127
  VersionId?: string;
@@ -1161,20 +1162,20 @@ export declare const Visibility: {
1161
1162
  export type Visibility = (typeof Visibility)[keyof typeof Visibility];
1162
1163
  export interface DescribeTypeOutput {
1163
1164
  Arn?: string;
1164
- Type?: RegistryType | string;
1165
+ Type?: RegistryType;
1165
1166
  TypeName?: string;
1166
1167
  DefaultVersionId?: string;
1167
1168
  IsDefaultVersion?: boolean;
1168
- TypeTestsStatus?: TypeTestsStatus | string;
1169
+ TypeTestsStatus?: TypeTestsStatus;
1169
1170
  TypeTestsStatusDescription?: string;
1170
1171
  Description?: string;
1171
1172
  Schema?: string;
1172
- ProvisioningType?: ProvisioningType | string;
1173
- DeprecatedStatus?: DeprecatedStatus | string;
1173
+ ProvisioningType?: ProvisioningType;
1174
+ DeprecatedStatus?: DeprecatedStatus;
1174
1175
  LoggingConfig?: LoggingConfig;
1175
1176
  RequiredActivatedTypes?: RequiredActivatedType[];
1176
1177
  ExecutionRoleArn?: string;
1177
- Visibility?: Visibility | string;
1178
+ Visibility?: Visibility;
1178
1179
  SourceUrl?: string;
1179
1180
  DocumentationUrl?: string;
1180
1181
  LastUpdated?: Date;
@@ -1199,7 +1200,7 @@ export declare const RegistrationStatus: {
1199
1200
  export type RegistrationStatus =
1200
1201
  (typeof RegistrationStatus)[keyof typeof RegistrationStatus];
1201
1202
  export interface DescribeTypeRegistrationOutput {
1202
- ProgressStatus?: RegistrationStatus | string;
1203
+ ProgressStatus?: RegistrationStatus;
1203
1204
  Description?: string;
1204
1205
  TypeArn?: string;
1205
1206
  TypeVersionArn?: string;
@@ -1222,7 +1223,7 @@ export interface DetectStackSetDriftInput {
1222
1223
  StackSetName: string | undefined;
1223
1224
  OperationPreferences?: StackSetOperationPreferences;
1224
1225
  OperationId?: string;
1225
- CallAs?: CallAs | string;
1226
+ CallAs?: CallAs;
1226
1227
  }
1227
1228
  export interface DetectStackSetDriftOutput {
1228
1229
  OperationId?: string;
@@ -1257,11 +1258,11 @@ export type TemplateStage = (typeof TemplateStage)[keyof typeof TemplateStage];
1257
1258
  export interface GetTemplateInput {
1258
1259
  StackName?: string;
1259
1260
  ChangeSetName?: string;
1260
- TemplateStage?: TemplateStage | string;
1261
+ TemplateStage?: TemplateStage;
1261
1262
  }
1262
1263
  export interface GetTemplateOutput {
1263
1264
  TemplateBody?: string;
1264
- StagesAvailable?: (TemplateStage | string)[];
1265
+ StagesAvailable?: TemplateStage[];
1265
1266
  }
1266
1267
  export interface TemplateSummaryConfig {
1267
1268
  TreatUnrecognizedResourceTypesAsWarnings?: boolean;
@@ -1271,7 +1272,7 @@ export interface GetTemplateSummaryInput {
1271
1272
  TemplateURL?: string;
1272
1273
  StackName?: string;
1273
1274
  StackSetName?: string;
1274
- CallAs?: CallAs | string;
1275
+ CallAs?: CallAs;
1275
1276
  TemplateSummaryConfig?: TemplateSummaryConfig;
1276
1277
  }
1277
1278
  export interface ParameterConstraints {
@@ -1296,7 +1297,7 @@ export interface Warnings {
1296
1297
  export interface GetTemplateSummaryOutput {
1297
1298
  Parameters?: ParameterDeclaration[];
1298
1299
  Description?: string;
1299
- Capabilities?: (Capability | string)[];
1300
+ Capabilities?: Capability[];
1300
1301
  CapabilitiesReason?: string;
1301
1302
  ResourceTypes?: string[];
1302
1303
  Version?: string;
@@ -1312,7 +1313,7 @@ export interface ImportStacksToStackSetInput {
1312
1313
  OrganizationalUnitIds?: string[];
1313
1314
  OperationPreferences?: StackSetOperationPreferences;
1314
1315
  OperationId?: string;
1315
- CallAs?: CallAs | string;
1316
+ CallAs?: CallAs;
1316
1317
  }
1317
1318
  export interface ImportStacksToStackSetOutput {
1318
1319
  OperationId?: string;
@@ -1357,11 +1358,11 @@ export interface ListStackInstanceResourceDriftsInput {
1357
1358
  StackSetName: string | undefined;
1358
1359
  NextToken?: string;
1359
1360
  MaxResults?: number;
1360
- StackInstanceResourceDriftStatuses?: (StackResourceDriftStatus | string)[];
1361
+ StackInstanceResourceDriftStatuses?: StackResourceDriftStatus[];
1361
1362
  StackInstanceAccount: string | undefined;
1362
1363
  StackInstanceRegion: string | undefined;
1363
1364
  OperationId: string | undefined;
1364
- CallAs?: CallAs | string;
1365
+ CallAs?: CallAs;
1365
1366
  }
1366
1367
  export interface StackInstanceResourceDriftsSummary {
1367
1368
  StackId: string | undefined;
@@ -1370,7 +1371,7 @@ export interface StackInstanceResourceDriftsSummary {
1370
1371
  PhysicalResourceIdContext?: PhysicalResourceIdContextKeyValuePair[];
1371
1372
  ResourceType: string | undefined;
1372
1373
  PropertyDifferences?: PropertyDifference[];
1373
- StackResourceDriftStatus: StackResourceDriftStatus | string | undefined;
1374
+ StackResourceDriftStatus: StackResourceDriftStatus | undefined;
1374
1375
  Timestamp: Date | undefined;
1375
1376
  }
1376
1377
  export interface ListStackInstanceResourceDriftsOutput {
@@ -1385,7 +1386,7 @@ export declare const StackInstanceFilterName: {
1385
1386
  export type StackInstanceFilterName =
1386
1387
  (typeof StackInstanceFilterName)[keyof typeof StackInstanceFilterName];
1387
1388
  export interface StackInstanceFilter {
1388
- Name?: StackInstanceFilterName | string;
1389
+ Name?: StackInstanceFilterName;
1389
1390
  Values?: string;
1390
1391
  }
1391
1392
  export interface ListStackInstancesInput {
@@ -1395,18 +1396,18 @@ export interface ListStackInstancesInput {
1395
1396
  Filters?: StackInstanceFilter[];
1396
1397
  StackInstanceAccount?: string;
1397
1398
  StackInstanceRegion?: string;
1398
- CallAs?: CallAs | string;
1399
+ CallAs?: CallAs;
1399
1400
  }
1400
1401
  export interface StackInstanceSummary {
1401
1402
  StackSetId?: string;
1402
1403
  Region?: string;
1403
1404
  Account?: string;
1404
1405
  StackId?: string;
1405
- Status?: StackInstanceStatus | string;
1406
+ Status?: StackInstanceStatus;
1406
1407
  StatusReason?: string;
1407
1408
  StackInstanceStatus?: StackInstanceComprehensiveStatus;
1408
1409
  OrganizationalUnitId?: string;
1409
- DriftStatus?: StackDriftStatus | string;
1410
+ DriftStatus?: StackDriftStatus;
1410
1411
  LastDriftCheckTimestamp?: Date;
1411
1412
  LastOperationId?: string;
1412
1413
  }
@@ -1419,7 +1420,7 @@ export interface ListStackResourcesInput {
1419
1420
  NextToken?: string;
1420
1421
  }
1421
1422
  export interface StackResourceDriftInformationSummary {
1422
- StackResourceDriftStatus: StackResourceDriftStatus | string | undefined;
1423
+ StackResourceDriftStatus: StackResourceDriftStatus | undefined;
1423
1424
  LastCheckTimestamp?: Date;
1424
1425
  }
1425
1426
  export interface StackResourceSummary {
@@ -1427,7 +1428,7 @@ export interface StackResourceSummary {
1427
1428
  PhysicalResourceId?: string;
1428
1429
  ResourceType: string | undefined;
1429
1430
  LastUpdatedTimestamp: Date | undefined;
1430
- ResourceStatus: ResourceStatus | string | undefined;
1431
+ ResourceStatus: ResourceStatus | undefined;
1431
1432
  ResourceStatusReason?: string;
1432
1433
  DriftInformation?: StackResourceDriftInformationSummary;
1433
1434
  ModuleInfo?: ModuleInfo;
@@ -1438,10 +1439,10 @@ export interface ListStackResourcesOutput {
1438
1439
  }
1439
1440
  export interface ListStacksInput {
1440
1441
  NextToken?: string;
1441
- StackStatusFilter?: (StackStatus | string)[];
1442
+ StackStatusFilter?: StackStatus[];
1442
1443
  }
1443
1444
  export interface StackDriftInformationSummary {
1444
- StackDriftStatus: StackDriftStatus | string | undefined;
1445
+ StackDriftStatus: StackDriftStatus | undefined;
1445
1446
  LastCheckTimestamp?: Date;
1446
1447
  }
1447
1448
  export interface StackSummary {
@@ -1451,7 +1452,7 @@ export interface StackSummary {
1451
1452
  CreationTime: Date | undefined;
1452
1453
  LastUpdatedTime?: Date;
1453
1454
  DeletionTime?: Date;
1454
- StackStatus: StackStatus | string | undefined;
1455
+ StackStatus: StackStatus | undefined;
1455
1456
  StackStatusReason?: string;
1456
1457
  ParentId?: string;
1457
1458
  RootId?: string;
@@ -1467,7 +1468,7 @@ export declare const OperationResultFilterName: {
1467
1468
  export type OperationResultFilterName =
1468
1469
  (typeof OperationResultFilterName)[keyof typeof OperationResultFilterName];
1469
1470
  export interface OperationResultFilter {
1470
- Name?: OperationResultFilterName | string;
1471
+ Name?: OperationResultFilterName;
1471
1472
  Values?: string;
1472
1473
  }
1473
1474
  export interface ListStackSetOperationResultsInput {
@@ -1475,7 +1476,7 @@ export interface ListStackSetOperationResultsInput {
1475
1476
  OperationId: string | undefined;
1476
1477
  NextToken?: string;
1477
1478
  MaxResults?: number;
1478
- CallAs?: CallAs | string;
1479
+ CallAs?: CallAs;
1479
1480
  Filters?: OperationResultFilter[];
1480
1481
  }
1481
1482
  export declare const StackSetOperationResultStatus: {
@@ -1490,7 +1491,7 @@ export type StackSetOperationResultStatus =
1490
1491
  export interface StackSetOperationResultSummary {
1491
1492
  Account?: string;
1492
1493
  Region?: string;
1493
- Status?: StackSetOperationResultStatus | string;
1494
+ Status?: StackSetOperationResultStatus;
1494
1495
  StatusReason?: string;
1495
1496
  AccountGateResult?: AccountGateResult;
1496
1497
  OrganizationalUnitId?: string;
@@ -1503,12 +1504,12 @@ export interface ListStackSetOperationsInput {
1503
1504
  StackSetName: string | undefined;
1504
1505
  NextToken?: string;
1505
1506
  MaxResults?: number;
1506
- CallAs?: CallAs | string;
1507
+ CallAs?: CallAs;
1507
1508
  }
1508
1509
  export interface StackSetOperationSummary {
1509
1510
  OperationId?: string;
1510
- Action?: StackSetOperationAction | string;
1511
- Status?: StackSetOperationStatus | string;
1511
+ Action?: StackSetOperationAction;
1512
+ Status?: StackSetOperationStatus;
1512
1513
  CreationTimestamp?: Date;
1513
1514
  EndTimestamp?: Date;
1514
1515
  StatusReason?: string;
@@ -1522,17 +1523,17 @@ export interface ListStackSetOperationsOutput {
1522
1523
  export interface ListStackSetsInput {
1523
1524
  NextToken?: string;
1524
1525
  MaxResults?: number;
1525
- Status?: StackSetStatus | string;
1526
- CallAs?: CallAs | string;
1526
+ Status?: StackSetStatus;
1527
+ CallAs?: CallAs;
1527
1528
  }
1528
1529
  export interface StackSetSummary {
1529
1530
  StackSetName?: string;
1530
1531
  StackSetId?: string;
1531
1532
  Description?: string;
1532
- Status?: StackSetStatus | string;
1533
+ Status?: StackSetStatus;
1533
1534
  AutoDeployment?: AutoDeployment;
1534
- PermissionModel?: PermissionModels | string;
1535
- DriftStatus?: StackDriftStatus | string;
1535
+ PermissionModel?: PermissionModels;
1536
+ DriftStatus?: StackDriftStatus;
1536
1537
  LastDriftCheckTimestamp?: Date;
1537
1538
  ManagedExecution?: ManagedExecution;
1538
1539
  }
@@ -1541,10 +1542,10 @@ export interface ListStackSetsOutput {
1541
1542
  NextToken?: string;
1542
1543
  }
1543
1544
  export interface ListTypeRegistrationsInput {
1544
- Type?: RegistryType | string;
1545
+ Type?: RegistryType;
1545
1546
  TypeName?: string;
1546
1547
  TypeArn?: string;
1547
- RegistrationStatusFilter?: RegistrationStatus | string;
1548
+ RegistrationStatusFilter?: RegistrationStatus;
1548
1549
  MaxResults?: number;
1549
1550
  NextToken?: string;
1550
1551
  }
@@ -1553,21 +1554,21 @@ export interface ListTypeRegistrationsOutput {
1553
1554
  NextToken?: string;
1554
1555
  }
1555
1556
  export interface TypeFilters {
1556
- Category?: Category | string;
1557
+ Category?: Category;
1557
1558
  PublisherId?: string;
1558
1559
  TypeNamePrefix?: string;
1559
1560
  }
1560
1561
  export interface ListTypesInput {
1561
- Visibility?: Visibility | string;
1562
- ProvisioningType?: ProvisioningType | string;
1563
- DeprecatedStatus?: DeprecatedStatus | string;
1564
- Type?: RegistryType | string;
1562
+ Visibility?: Visibility;
1563
+ ProvisioningType?: ProvisioningType;
1564
+ DeprecatedStatus?: DeprecatedStatus;
1565
+ Type?: RegistryType;
1565
1566
  Filters?: TypeFilters;
1566
1567
  MaxResults?: number;
1567
1568
  NextToken?: string;
1568
1569
  }
1569
1570
  export interface TypeSummary {
1570
- Type?: RegistryType | string;
1571
+ Type?: RegistryType;
1571
1572
  TypeName?: string;
1572
1573
  DefaultVersionId?: string;
1573
1574
  TypeArn?: string;
@@ -1577,7 +1578,7 @@ export interface TypeSummary {
1577
1578
  OriginalTypeName?: string;
1578
1579
  PublicVersionNumber?: string;
1579
1580
  LatestPublicVersion?: string;
1580
- PublisherIdentity?: IdentityProvider | string;
1581
+ PublisherIdentity?: IdentityProvider;
1581
1582
  PublisherName?: string;
1582
1583
  IsActivated?: boolean;
1583
1584
  }
@@ -1586,16 +1587,16 @@ export interface ListTypesOutput {
1586
1587
  NextToken?: string;
1587
1588
  }
1588
1589
  export interface ListTypeVersionsInput {
1589
- Type?: RegistryType | string;
1590
+ Type?: RegistryType;
1590
1591
  TypeName?: string;
1591
1592
  Arn?: string;
1592
1593
  MaxResults?: number;
1593
1594
  NextToken?: string;
1594
- DeprecatedStatus?: DeprecatedStatus | string;
1595
+ DeprecatedStatus?: DeprecatedStatus;
1595
1596
  PublisherId?: string;
1596
1597
  }
1597
1598
  export interface TypeVersionSummary {
1598
- Type?: RegistryType | string;
1599
+ Type?: RegistryType;
1599
1600
  TypeName?: string;
1600
1601
  VersionId?: string;
1601
1602
  IsDefaultVersion?: boolean;
@@ -1609,7 +1610,7 @@ export interface ListTypeVersionsOutput {
1609
1610
  NextToken?: string;
1610
1611
  }
1611
1612
  export interface PublishTypeInput {
1612
- Type?: ThirdPartyType | string;
1613
+ Type?: ThirdPartyType;
1613
1614
  Arn?: string;
1614
1615
  TypeName?: string;
1615
1616
  PublicVersionNumber?: string;
@@ -1672,10 +1673,10 @@ export type HandlerErrorCode =
1672
1673
  (typeof HandlerErrorCode)[keyof typeof HandlerErrorCode];
1673
1674
  export interface RecordHandlerProgressInput {
1674
1675
  BearerToken: string | undefined;
1675
- OperationStatus: OperationStatus | string | undefined;
1676
- CurrentOperationStatus?: OperationStatus | string;
1676
+ OperationStatus: OperationStatus | undefined;
1677
+ CurrentOperationStatus?: OperationStatus;
1677
1678
  StatusMessage?: string;
1678
- ErrorCode?: HandlerErrorCode | string;
1679
+ ErrorCode?: HandlerErrorCode;
1679
1680
  ResourceModel?: string;
1680
1681
  ClientRequestToken?: string;
1681
1682
  }
@@ -1688,7 +1689,7 @@ export interface RegisterPublisherOutput {
1688
1689
  PublisherId?: string;
1689
1690
  }
1690
1691
  export interface RegisterTypeInput {
1691
- Type?: RegistryType | string;
1692
+ Type?: RegistryType;
1692
1693
  TypeName: string | undefined;
1693
1694
  SchemaHandlerPackage: string | undefined;
1694
1695
  LoggingConfig?: LoggingConfig;
@@ -1717,14 +1718,14 @@ export interface SetTypeConfigurationInput {
1717
1718
  Configuration: string | undefined;
1718
1719
  ConfigurationAlias?: string;
1719
1720
  TypeName?: string;
1720
- Type?: ThirdPartyType | string;
1721
+ Type?: ThirdPartyType;
1721
1722
  }
1722
1723
  export interface SetTypeConfigurationOutput {
1723
1724
  ConfigurationArn?: string;
1724
1725
  }
1725
1726
  export interface SetTypeDefaultVersionInput {
1726
1727
  Arn?: string;
1727
- Type?: RegistryType | string;
1728
+ Type?: RegistryType;
1728
1729
  TypeName?: string;
1729
1730
  VersionId?: string;
1730
1731
  }
@@ -1739,17 +1740,17 @@ export interface SignalResourceInput {
1739
1740
  StackName: string | undefined;
1740
1741
  LogicalResourceId: string | undefined;
1741
1742
  UniqueId: string | undefined;
1742
- Status: ResourceSignalStatus | string | undefined;
1743
+ Status: ResourceSignalStatus | undefined;
1743
1744
  }
1744
1745
  export interface StopStackSetOperationInput {
1745
1746
  StackSetName: string | undefined;
1746
1747
  OperationId: string | undefined;
1747
- CallAs?: CallAs | string;
1748
+ CallAs?: CallAs;
1748
1749
  }
1749
1750
  export interface StopStackSetOperationOutput {}
1750
1751
  export interface TestTypeInput {
1751
1752
  Arn?: string;
1752
- Type?: ThirdPartyType | string;
1753
+ Type?: ThirdPartyType;
1753
1754
  TypeName?: string;
1754
1755
  VersionId?: string;
1755
1756
  LogDeliveryBucket?: string;
@@ -1765,7 +1766,7 @@ export interface UpdateStackInput {
1765
1766
  StackPolicyDuringUpdateBody?: string;
1766
1767
  StackPolicyDuringUpdateURL?: string;
1767
1768
  Parameters?: Parameter[];
1768
- Capabilities?: (Capability | string)[];
1769
+ Capabilities?: Capability[];
1769
1770
  ResourceTypes?: string[];
1770
1771
  RoleARN?: string;
1771
1772
  RollbackConfiguration?: RollbackConfiguration;
@@ -1788,7 +1789,7 @@ export interface UpdateStackInstancesInput {
1788
1789
  ParameterOverrides?: Parameter[];
1789
1790
  OperationPreferences?: StackSetOperationPreferences;
1790
1791
  OperationId?: string;
1791
- CallAs?: CallAs | string;
1792
+ CallAs?: CallAs;
1792
1793
  }
1793
1794
  export interface UpdateStackInstancesOutput {
1794
1795
  OperationId?: string;
@@ -1800,18 +1801,18 @@ export interface UpdateStackSetInput {
1800
1801
  TemplateURL?: string;
1801
1802
  UsePreviousTemplate?: boolean;
1802
1803
  Parameters?: Parameter[];
1803
- Capabilities?: (Capability | string)[];
1804
+ Capabilities?: Capability[];
1804
1805
  Tags?: Tag[];
1805
1806
  OperationPreferences?: StackSetOperationPreferences;
1806
1807
  AdministrationRoleARN?: string;
1807
1808
  ExecutionRoleName?: string;
1808
1809
  DeploymentTargets?: DeploymentTargets;
1809
- PermissionModel?: PermissionModels | string;
1810
+ PermissionModel?: PermissionModels;
1810
1811
  AutoDeployment?: AutoDeployment;
1811
1812
  OperationId?: string;
1812
1813
  Accounts?: string[];
1813
1814
  Regions?: string[];
1814
- CallAs?: CallAs | string;
1815
+ CallAs?: CallAs;
1815
1816
  ManagedExecution?: ManagedExecution;
1816
1817
  }
1817
1818
  export interface UpdateStackSetOutput {
@@ -1837,7 +1838,7 @@ export interface TemplateParameter {
1837
1838
  export interface ValidateTemplateOutput {
1838
1839
  Parameters?: TemplateParameter[];
1839
1840
  Description?: string;
1840
- Capabilities?: (Capability | string)[];
1841
+ Capabilities?: Capability[];
1841
1842
  CapabilitiesReason?: string;
1842
1843
  DeclaredTransforms?: string[];
1843
1844
  }