@aws-sdk/client-cloudformation 3.42.0 → 3.43.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.
Files changed (43) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/README.md +11 -11
  3. package/dist-cjs/models/models_0.js +10 -4
  4. package/dist-cjs/protocols/Aws_query.js +48 -0
  5. package/dist-es/models/models_0.js +4 -0
  6. package/dist-es/protocols/Aws_query.js +51 -0
  7. package/dist-types/CloudFormation.d.ts +114 -117
  8. package/dist-types/CloudFormationClient.d.ts +11 -11
  9. package/dist-types/commands/CancelUpdateStackCommand.d.ts +2 -2
  10. package/dist-types/commands/ContinueUpdateRollbackCommand.d.ts +5 -6
  11. package/dist-types/commands/CreateChangeSetCommand.d.ts +8 -7
  12. package/dist-types/commands/CreateStackCommand.d.ts +2 -2
  13. package/dist-types/commands/CreateStackInstancesCommand.d.ts +3 -1
  14. package/dist-types/commands/DeleteChangeSetCommand.d.ts +2 -2
  15. package/dist-types/commands/DeleteStackCommand.d.ts +3 -3
  16. package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +1 -2
  17. package/dist-types/commands/DescribeStackEventsCommand.d.ts +3 -2
  18. package/dist-types/commands/DescribeStackInstanceCommand.d.ts +1 -2
  19. package/dist-types/commands/DescribeStackResourceCommand.d.ts +2 -2
  20. package/dist-types/commands/DescribeStackResourceDriftsCommand.d.ts +3 -3
  21. package/dist-types/commands/DescribeStackResourcesCommand.d.ts +8 -9
  22. package/dist-types/commands/DescribeStacksCommand.d.ts +3 -4
  23. package/dist-types/commands/DetectStackDriftCommand.d.ts +6 -6
  24. package/dist-types/commands/DetectStackResourceDriftCommand.d.ts +2 -2
  25. package/dist-types/commands/EstimateTemplateCostCommand.d.ts +2 -3
  26. package/dist-types/commands/ExecuteChangeSetCommand.d.ts +2 -2
  27. package/dist-types/commands/GetStackPolicyCommand.d.ts +2 -2
  28. package/dist-types/commands/GetTemplateCommand.d.ts +4 -4
  29. package/dist-types/commands/GetTemplateSummaryCommand.d.ts +2 -2
  30. package/dist-types/commands/ImportStacksToStackSetCommand.d.ts +6 -8
  31. package/dist-types/commands/ListChangeSetsCommand.d.ts +1 -2
  32. package/dist-types/commands/ListStackInstancesCommand.d.ts +2 -3
  33. package/dist-types/commands/ListStackSetsCommand.d.ts +1 -2
  34. package/dist-types/commands/RollbackStackCommand.d.ts +8 -3
  35. package/dist-types/commands/SignalResourceCommand.d.ts +3 -4
  36. package/dist-types/commands/UpdateStackCommand.d.ts +4 -4
  37. package/dist-types/commands/UpdateStackInstancesCommand.d.ts +6 -6
  38. package/dist-types/commands/UpdateStackSetCommand.d.ts +2 -2
  39. package/dist-types/commands/UpdateTerminationProtectionCommand.d.ts +2 -2
  40. package/dist-types/commands/ValidateTemplateCommand.d.ts +2 -2
  41. package/dist-types/models/models_0.d.ts +657 -635
  42. package/dist-types/ts3.4/models/models_0.d.ts +22 -1
  43. package/package.json +2 -2
@@ -749,6 +749,15 @@ export declare namespace CreatedButModifiedException {
749
749
 
750
750
  const filterSensitiveLog: (obj: CreatedButModifiedException) => any;
751
751
  }
752
+
753
+ export interface ManagedExecution {
754
+
755
+ Active?: boolean;
756
+ }
757
+ export declare namespace ManagedExecution {
758
+
759
+ const filterSensitiveLog: (obj: ManagedExecution) => any;
760
+ }
752
761
  export declare type PermissionModels = "SELF_MANAGED" | "SERVICE_MANAGED";
753
762
  export interface CreateStackSetInput {
754
763
 
@@ -779,6 +788,8 @@ export interface CreateStackSetInput {
779
788
  CallAs?: CallAs | string;
780
789
 
781
790
  ClientRequestToken?: string;
791
+
792
+ ManagedExecution?: ManagedExecution;
782
793
  }
783
794
  export declare namespace CreateStackSetInput {
784
795
 
@@ -1640,6 +1651,8 @@ export interface StackSet {
1640
1651
  PermissionModel?: PermissionModels | string;
1641
1652
 
1642
1653
  OrganizationalUnitIds?: string[];
1654
+
1655
+ ManagedExecution?: ManagedExecution;
1643
1656
  }
1644
1657
  export declare namespace StackSet {
1645
1658
 
@@ -2076,7 +2089,11 @@ export interface ImportStacksToStackSetInput {
2076
2089
 
2077
2090
  StackSetName: string | undefined;
2078
2091
 
2079
- StackIds: string[] | undefined;
2092
+ StackIds?: string[];
2093
+
2094
+ StackIdsUrl?: string;
2095
+
2096
+ OrganizationalUnitIds?: string[];
2080
2097
 
2081
2098
  OperationPreferences?: StackSetOperationPreferences;
2082
2099
 
@@ -2485,6 +2502,8 @@ export interface StackSetSummary {
2485
2502
  DriftStatus?: StackDriftStatus | string;
2486
2503
 
2487
2504
  LastDriftCheckTimestamp?: Date;
2505
+
2506
+ ManagedExecution?: ManagedExecution;
2488
2507
  }
2489
2508
  export declare namespace StackSetSummary {
2490
2509
 
@@ -3047,6 +3066,8 @@ export interface UpdateStackSetInput {
3047
3066
  Regions?: string[];
3048
3067
 
3049
3068
  CallAs?: CallAs | string;
3069
+
3070
+ ManagedExecution?: ManagedExecution;
3050
3071
  }
3051
3072
  export declare namespace UpdateStackSetInput {
3052
3073
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudformation",
3
3
  "description": "AWS SDK for JavaScript Cloudformation Client for Node.js, Browser and React Native",
4
- "version": "3.42.0",
4
+ "version": "3.43.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
7
  "build:cjs": "tsc -p tsconfig.json",
@@ -21,7 +21,7 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "2.0.0",
23
23
  "@aws-crypto/sha256-js": "2.0.0",
24
- "@aws-sdk/client-sts": "3.42.0",
24
+ "@aws-sdk/client-sts": "3.43.0",
25
25
  "@aws-sdk/config-resolver": "3.40.0",
26
26
  "@aws-sdk/credential-provider-node": "3.41.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.40.0",