@aws-sdk/client-cloudformation 3.379.1 → 3.382.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.
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/protocols/Aws_query.js +15 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/protocols/Aws_query.js +15 -0
- package/dist-types/commands/CreateStackCommand.d.ts +1 -0
- package/dist-types/commands/DescribeStacksCommand.d.ts +1 -0
- package/dist-types/commands/ExecuteChangeSetCommand.d.ts +1 -0
- package/dist-types/commands/RollbackStackCommand.d.ts +1 -0
- package/dist-types/commands/UpdateStackCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +877 -0
- package/dist-types/ts3.4/models/models_0.d.ts +5 -0
- package/package.json +5 -5
|
@@ -444,6 +444,7 @@ export interface CreateStackInput {
|
|
|
444
444
|
Tags?: Tag[];
|
|
445
445
|
ClientRequestToken?: string;
|
|
446
446
|
EnableTerminationProtection?: boolean;
|
|
447
|
+
RetainExceptOnCreate?: boolean;
|
|
447
448
|
}
|
|
448
449
|
export interface CreateStackOutput {
|
|
449
450
|
StackId?: string;
|
|
@@ -1009,6 +1010,7 @@ export interface Stack {
|
|
|
1009
1010
|
ParentId?: string;
|
|
1010
1011
|
RootId?: string;
|
|
1011
1012
|
DriftInformation?: StackDriftInformation;
|
|
1013
|
+
RetainExceptOnCreate?: boolean;
|
|
1012
1014
|
}
|
|
1013
1015
|
export interface DescribeStacksOutput {
|
|
1014
1016
|
Stacks?: Stack[];
|
|
@@ -1238,6 +1240,7 @@ export interface ExecuteChangeSetInput {
|
|
|
1238
1240
|
StackName?: string;
|
|
1239
1241
|
ClientRequestToken?: string;
|
|
1240
1242
|
DisableRollback?: boolean;
|
|
1243
|
+
RetainExceptOnCreate?: boolean;
|
|
1241
1244
|
}
|
|
1242
1245
|
export interface ExecuteChangeSetOutput {}
|
|
1243
1246
|
export interface GetStackPolicyInput {
|
|
@@ -1699,6 +1702,7 @@ export interface RollbackStackInput {
|
|
|
1699
1702
|
StackName: string | undefined;
|
|
1700
1703
|
RoleARN?: string;
|
|
1701
1704
|
ClientRequestToken?: string;
|
|
1705
|
+
RetainExceptOnCreate?: boolean;
|
|
1702
1706
|
}
|
|
1703
1707
|
export interface RollbackStackOutput {
|
|
1704
1708
|
StackId?: string;
|
|
@@ -1771,6 +1775,7 @@ export interface UpdateStackInput {
|
|
|
1771
1775
|
Tags?: Tag[];
|
|
1772
1776
|
DisableRollback?: boolean;
|
|
1773
1777
|
ClientRequestToken?: string;
|
|
1778
|
+
RetainExceptOnCreate?: boolean;
|
|
1774
1779
|
}
|
|
1775
1780
|
export interface UpdateStackOutput {
|
|
1776
1781
|
StackId?: string;
|
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.
|
|
4
|
+
"version": "3.382.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,15 +21,15 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.382.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.382.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.379.1",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.379.1",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.382.0",
|
|
31
31
|
"@aws-sdk/types": "3.378.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.382.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.378.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.378.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.1",
|