@aws-sdk/client-cloudformation 3.410.0 → 3.413.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-types/models/models_0.d.ts +32 -36
- package/package.json +29 -29
|
@@ -2010,11 +2010,10 @@ export interface CreateStackInput {
|
|
|
2010
2010
|
EnableTerminationProtection?: boolean;
|
|
2011
2011
|
/**
|
|
2012
2012
|
* @public
|
|
2013
|
-
* <p>
|
|
2014
|
-
*
|
|
2015
|
-
*
|
|
2016
|
-
*
|
|
2017
|
-
* DeletionPolicy</a> attribute.</p>
|
|
2013
|
+
* <p>When set to <code>true</code>, newly created resources are deleted when the operation rolls back. This includes newly
|
|
2014
|
+
* created resources marked with a deletion policy of <code>Retain</code>.</p>
|
|
2015
|
+
* <p>Default: <code>false</code>
|
|
2016
|
+
* </p>
|
|
2018
2017
|
*/
|
|
2019
2018
|
RetainExceptOnCreate?: boolean;
|
|
2020
2019
|
}
|
|
@@ -2480,7 +2479,7 @@ export interface CreateStackSetInput {
|
|
|
2480
2479
|
* </p>
|
|
2481
2480
|
* </li>
|
|
2482
2481
|
* </ul>
|
|
2483
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/using-iam-template.html#capabilities">Acknowledging IAM Resources in CloudFormation Templates</a>.</p>
|
|
2482
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities">Acknowledging IAM Resources in CloudFormation Templates</a>.</p>
|
|
2484
2483
|
* </li>
|
|
2485
2484
|
* <li>
|
|
2486
2485
|
* <p>
|
|
@@ -2488,11 +2487,11 @@ export interface CreateStackSetInput {
|
|
|
2488
2487
|
* </p>
|
|
2489
2488
|
* <p>Some templates reference macros. If your stack set template references one or more macros, you must create the
|
|
2490
2489
|
* stack set directly from the processed template, without first reviewing the resulting changes in a change set. To
|
|
2491
|
-
* create the stack set directly, you must acknowledge this capability. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/template-macros.html">Using CloudFormation Macros to Perform
|
|
2490
|
+
* create the stack set directly, you must acknowledge this capability. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html">Using CloudFormation Macros to Perform
|
|
2492
2491
|
* Custom Processing on Templates</a>.</p>
|
|
2493
2492
|
* <important>
|
|
2494
2493
|
* <p>Stack sets with service-managed permissions don't currently support the use of macros in templates. (This
|
|
2495
|
-
* includes the <a href="https://docs.aws.amazon.com/AWSCloudFormation/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html">AWS::Include</a> and <a href="https://docs.aws.amazon.com/AWSCloudFormation/transform-aws-serverless.html">AWS::Serverless</a> transforms, which are macros hosted by CloudFormation.) Even if you specify this capability for a
|
|
2494
|
+
* includes the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html">AWS::Include</a> and <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html">AWS::Serverless</a> transforms, which are macros hosted by CloudFormation.) Even if you specify this capability for a
|
|
2496
2495
|
* stack set with service-managed permissions, if you reference a macro in your template the stack set operation will
|
|
2497
2496
|
* fail.</p>
|
|
2498
2497
|
* </important>
|
|
@@ -2515,7 +2514,7 @@ export interface CreateStackSetInput {
|
|
|
2515
2514
|
* @public
|
|
2516
2515
|
* <p>The Amazon Resource Name (ARN) of the IAM role to use to create this stack set.</p>
|
|
2517
2516
|
* <p>Specify an IAM role only if you are using customized administrator roles to control which users
|
|
2518
|
-
* or groups can manage specific stack sets within the same administrator account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/stacksets-prereqs.html">Prerequisites: Granting Permissions for Stack Set
|
|
2517
|
+
* or groups can manage specific stack sets within the same administrator account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html">Prerequisites: Granting Permissions for Stack Set
|
|
2519
2518
|
* Operations</a> in the <i>CloudFormation User Guide</i>.</p>
|
|
2520
2519
|
*/
|
|
2521
2520
|
AdministrationRoleARN?: string;
|
|
@@ -4387,7 +4386,8 @@ export interface DescribeStacksInput {
|
|
|
4387
4386
|
* @public
|
|
4388
4387
|
* <note>
|
|
4389
4388
|
* <p>If you don't pass a parameter to <code>StackName</code>, the API returns a response that describes all
|
|
4390
|
-
* resources in the account. This requires <code>ListStacks</code> and <code>DescribeStacks</code> permissions.</p>
|
|
4389
|
+
* resources in the account, which can impact performance. This requires <code>ListStacks</code> and <code>DescribeStacks</code> permissions.</p>
|
|
4390
|
+
* <p>Consider using the <a>ListStacks</a> API if you're not passing a parameter to <code>StackName</code>.</p>
|
|
4391
4391
|
* <p>The IAM policy below can be added to IAM policies when you want to limit
|
|
4392
4392
|
* resource-level permissions and avoid returning a response when no parameter is sent in the request:</p>
|
|
4393
4393
|
* <p>\{ "Version": "2012-10-17", "Statement": [\{ "Effect": "Deny", "Action": "cloudformation:DescribeStacks",
|
|
@@ -4652,11 +4652,10 @@ export interface Stack {
|
|
|
4652
4652
|
DriftInformation?: StackDriftInformation;
|
|
4653
4653
|
/**
|
|
4654
4654
|
* @public
|
|
4655
|
-
* <p>
|
|
4656
|
-
*
|
|
4657
|
-
*
|
|
4658
|
-
*
|
|
4659
|
-
* DeletionPolicy</a> attribute.</p>
|
|
4655
|
+
* <p>When set to <code>true</code>, newly created resources are deleted when the operation rolls back. This includes newly
|
|
4656
|
+
* created resources marked with a deletion policy of <code>Retain</code>.</p>
|
|
4657
|
+
* <p>Default: <code>false</code>
|
|
4658
|
+
* </p>
|
|
4660
4659
|
*/
|
|
4661
4660
|
RetainExceptOnCreate?: boolean;
|
|
4662
4661
|
}
|
|
@@ -4918,7 +4917,7 @@ export interface StackSet {
|
|
|
4918
4917
|
* @public
|
|
4919
4918
|
* <p>The Amazon Resource Name (ARN) of the IAM role used to create or update the stack set.</p>
|
|
4920
4919
|
* <p>Use customized administrator roles to control which users or groups can manage specific stack sets within the
|
|
4921
|
-
* same administrator account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/stacksets-prereqs.html">Prerequisites: Granting Permissions for Stack Set Operations</a>
|
|
4920
|
+
* same administrator account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html">Prerequisites: Granting Permissions for Stack Set Operations</a>
|
|
4922
4921
|
* in the <i>CloudFormation User Guide</i>.</p>
|
|
4923
4922
|
*/
|
|
4924
4923
|
AdministrationRoleARN?: string;
|
|
@@ -5137,7 +5136,7 @@ export interface StackSetOperation {
|
|
|
5137
5136
|
* @public
|
|
5138
5137
|
* <p>The Amazon Resource Name (ARN) of the IAM role used to perform this stack set operation.</p>
|
|
5139
5138
|
* <p>Use customized administrator roles to control which users or groups can manage specific stack sets within the
|
|
5140
|
-
* same administrator account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/stacksets-prereqs.html">Define Permissions for Multiple Administrators</a> in the
|
|
5139
|
+
* same administrator account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html">Define Permissions for Multiple Administrators</a> in the
|
|
5141
5140
|
* <i>CloudFormation User Guide</i>.</p>
|
|
5142
5141
|
*/
|
|
5143
5142
|
AdministrationRoleARN?: string;
|
|
@@ -5851,11 +5850,10 @@ export interface ExecuteChangeSetInput {
|
|
|
5851
5850
|
DisableRollback?: boolean;
|
|
5852
5851
|
/**
|
|
5853
5852
|
* @public
|
|
5854
|
-
* <p>
|
|
5855
|
-
*
|
|
5856
|
-
*
|
|
5857
|
-
*
|
|
5858
|
-
* DeletionPolicy</a> attribute.</p>
|
|
5853
|
+
* <p>When set to <code>true</code>, newly created resources are deleted when the operation rolls back. This includes newly
|
|
5854
|
+
* created resources marked with a deletion policy of <code>Retain</code>.</p>
|
|
5855
|
+
* <p>Default: <code>false</code>
|
|
5856
|
+
* </p>
|
|
5859
5857
|
*/
|
|
5860
5858
|
RetainExceptOnCreate?: boolean;
|
|
5861
5859
|
}
|
|
@@ -8361,11 +8359,10 @@ export interface RollbackStackInput {
|
|
|
8361
8359
|
ClientRequestToken?: string;
|
|
8362
8360
|
/**
|
|
8363
8361
|
* @public
|
|
8364
|
-
* <p>
|
|
8365
|
-
*
|
|
8366
|
-
*
|
|
8367
|
-
*
|
|
8368
|
-
* DeletionPolicy</a> attribute.</p>
|
|
8362
|
+
* <p>When set to <code>true</code>, newly created resources are deleted when the operation rolls back. This includes newly
|
|
8363
|
+
* created resources marked with a deletion policy of <code>Retain</code>.</p>
|
|
8364
|
+
* <p>Default: <code>false</code>
|
|
8365
|
+
* </p>
|
|
8369
8366
|
*/
|
|
8370
8367
|
RetainExceptOnCreate?: boolean;
|
|
8371
8368
|
}
|
|
@@ -8885,11 +8882,10 @@ export interface UpdateStackInput {
|
|
|
8885
8882
|
ClientRequestToken?: string;
|
|
8886
8883
|
/**
|
|
8887
8884
|
* @public
|
|
8888
|
-
* <p>
|
|
8889
|
-
*
|
|
8890
|
-
*
|
|
8891
|
-
*
|
|
8892
|
-
* DeletionPolicy</a> attribute.</p>
|
|
8885
|
+
* <p>When set to <code>true</code>, newly created resources are deleted when the operation rolls back. This includes newly
|
|
8886
|
+
* created resources marked with a deletion policy of <code>Retain</code>.</p>
|
|
8887
|
+
* <p>Default: <code>false</code>
|
|
8888
|
+
* </p>
|
|
8893
8889
|
*/
|
|
8894
8890
|
RetainExceptOnCreate?: boolean;
|
|
8895
8891
|
}
|
|
@@ -9130,7 +9126,7 @@ export interface UpdateStackSetInput {
|
|
|
9130
9126
|
* </p>
|
|
9131
9127
|
* </li>
|
|
9132
9128
|
* </ul>
|
|
9133
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/using-iam-template.html#capabilities">Acknowledging IAM Resources in CloudFormation Templates</a>.</p>
|
|
9129
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities">Acknowledging IAM Resources in CloudFormation Templates</a>.</p>
|
|
9134
9130
|
* </li>
|
|
9135
9131
|
* <li>
|
|
9136
9132
|
* <p>
|
|
@@ -9138,11 +9134,11 @@ export interface UpdateStackSetInput {
|
|
|
9138
9134
|
* </p>
|
|
9139
9135
|
* <p>Some templates reference macros. If your stack set template references one or more macros, you must update the
|
|
9140
9136
|
* stack set directly from the processed template, without first reviewing the resulting changes in a change set. To
|
|
9141
|
-
* update the stack set directly, you must acknowledge this capability. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/template-macros.html">Using CloudFormation Macros to Perform
|
|
9137
|
+
* update the stack set directly, you must acknowledge this capability. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html">Using CloudFormation Macros to Perform
|
|
9142
9138
|
* Custom Processing on Templates</a>.</p>
|
|
9143
9139
|
* <important>
|
|
9144
9140
|
* <p>Stack sets with service-managed permissions do not currently support the use of macros in templates. (This
|
|
9145
|
-
* includes the <a href="https://docs.aws.amazon.com/AWSCloudFormation/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html">AWS::Include</a> and <a href="https://docs.aws.amazon.com/AWSCloudFormation/transform-aws-serverless.html">AWS::Serverless</a> transforms, which are macros hosted by CloudFormation.) Even if you specify this capability for a
|
|
9141
|
+
* includes the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html">AWS::Include</a> and <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html">AWS::Serverless</a> transforms, which are macros hosted by CloudFormation.) Even if you specify this capability for a
|
|
9146
9142
|
* stack set with service-managed permissions, if you reference a macro in your template the stack set operation will
|
|
9147
9143
|
* fail.</p>
|
|
9148
9144
|
* </important>
|
|
@@ -9188,7 +9184,7 @@ export interface UpdateStackSetInput {
|
|
|
9188
9184
|
* @public
|
|
9189
9185
|
* <p>The Amazon Resource Name (ARN) of the IAM role to use to update this stack set.</p>
|
|
9190
9186
|
* <p>Specify an IAM role only if you are using customized administrator roles to control which users
|
|
9191
|
-
* or groups can manage specific stack sets within the same administrator account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/stacksets-prereqs.html">Granting Permissions for Stack Set
|
|
9187
|
+
* or groups can manage specific stack sets within the same administrator account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html">Granting Permissions for Stack Set
|
|
9192
9188
|
* Operations</a> in the <i>CloudFormation User Guide</i>.</p>
|
|
9193
9189
|
* <p>If you specified a customized administrator role when you created the stack set, you must specify a customized
|
|
9194
9190
|
* administrator role, even if it is the same customized administrator role used with this stack set previously.</p>
|
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.413.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,40 +21,40 @@
|
|
|
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.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^2.0.
|
|
36
|
-
"@smithy/fetch-http-handler": "^2.1.
|
|
37
|
-
"@smithy/hash-node": "^2.0.
|
|
38
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
39
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
40
|
-
"@smithy/middleware-endpoint": "^2.0.
|
|
41
|
-
"@smithy/middleware-retry": "^2.0.
|
|
42
|
-
"@smithy/middleware-serde": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.413.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.413.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.413.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.413.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.413.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.413.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.413.0",
|
|
31
|
+
"@aws-sdk/types": "3.413.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.413.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.413.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.413.0",
|
|
35
|
+
"@smithy/config-resolver": "^2.0.8",
|
|
36
|
+
"@smithy/fetch-http-handler": "^2.1.3",
|
|
37
|
+
"@smithy/hash-node": "^2.0.7",
|
|
38
|
+
"@smithy/invalid-dependency": "^2.0.7",
|
|
39
|
+
"@smithy/middleware-content-length": "^2.0.9",
|
|
40
|
+
"@smithy/middleware-endpoint": "^2.0.7",
|
|
41
|
+
"@smithy/middleware-retry": "^2.0.10",
|
|
42
|
+
"@smithy/middleware-serde": "^2.0.7",
|
|
43
43
|
"@smithy/middleware-stack": "^2.0.0",
|
|
44
|
-
"@smithy/node-config-provider": "^2.0.
|
|
45
|
-
"@smithy/node-http-handler": "^2.1.
|
|
46
|
-
"@smithy/protocol-http": "^3.0.
|
|
47
|
-
"@smithy/smithy-client": "^2.1.
|
|
48
|
-
"@smithy/types": "^2.3.
|
|
49
|
-
"@smithy/url-parser": "^2.0.
|
|
44
|
+
"@smithy/node-config-provider": "^2.0.10",
|
|
45
|
+
"@smithy/node-http-handler": "^2.1.3",
|
|
46
|
+
"@smithy/protocol-http": "^3.0.3",
|
|
47
|
+
"@smithy/smithy-client": "^2.1.4",
|
|
48
|
+
"@smithy/types": "^2.3.1",
|
|
49
|
+
"@smithy/url-parser": "^2.0.7",
|
|
50
50
|
"@smithy/util-base64": "^2.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^2.0.8",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^2.0.10",
|
|
55
55
|
"@smithy/util-retry": "^2.0.0",
|
|
56
56
|
"@smithy/util-utf8": "^2.0.0",
|
|
57
|
-
"@smithy/util-waiter": "^2.0.
|
|
57
|
+
"@smithy/util-waiter": "^2.0.7",
|
|
58
58
|
"fast-xml-parser": "4.2.5",
|
|
59
59
|
"tslib": "^2.5.0",
|
|
60
60
|
"uuid": "^8.3.2"
|