@aws-sdk/client-cloudformation 3.535.0 → 3.537.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/README.md +8 -0
- package/dist-cjs/index.js +91 -2
- package/dist-es/CloudFormation.js +2 -0
- package/dist-es/commands/ListStackSetAutoDeploymentTargetsCommand.js +24 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +0 -4
- package/dist-es/models/models_1.js +4 -0
- package/dist-es/protocols/Aws_query.js +73 -0
- package/dist-types/CloudFormation.d.ts +7 -0
- package/dist-types/CloudFormationClient.d.ts +3 -2
- package/dist-types/commands/ActivateTypeCommand.d.ts +3 -3
- package/dist-types/commands/CreateStackInstancesCommand.d.ts +2 -2
- package/dist-types/commands/DeregisterTypeCommand.d.ts +1 -3
- package/dist-types/commands/DescribePublisherCommand.d.ts +1 -3
- package/dist-types/commands/DescribeStackInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DetectStackSetDriftCommand.d.ts +2 -2
- package/dist-types/commands/ListStackSetAutoDeploymentTargetsCommand.d.ts +73 -0
- package/dist-types/commands/PublishTypeCommand.d.ts +1 -3
- package/dist-types/commands/RegisterTypeCommand.d.ts +3 -7
- package/dist-types/commands/SetTypeConfigurationCommand.d.ts +2 -4
- package/dist-types/commands/SetTypeDefaultVersionCommand.d.ts +2 -1
- package/dist-types/commands/SignalResourceCommand.d.ts +1 -1
- package/dist-types/commands/TestTypeCommand.d.ts +2 -6
- package/dist-types/commands/UpdateStackInstancesCommand.d.ts +3 -9
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +257 -347
- package/dist-types/models/models_1.d.ts +99 -89
- package/dist-types/protocols/Aws_query.d.ts +9 -0
- package/dist-types/ts3.4/CloudFormation.d.ts +23 -0
- package/dist-types/ts3.4/CloudFormationClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListStackSetAutoDeploymentTargetsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/SetTypeDefaultVersionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/SignalResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +14 -13
- package/dist-types/ts3.4/models/models_1.d.ts +13 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +12 -0
- package/package.json +1 -1
|
@@ -28,10 +28,8 @@ declare const SetTypeConfigurationCommand_base: {
|
|
|
28
28
|
/**
|
|
29
29
|
* <p>Specifies the configuration data for a registered CloudFormation extension, in the given account and Region.</p>
|
|
30
30
|
* <p>To view the current configuration data for an extension, refer to the <code>ConfigurationSchema</code> element
|
|
31
|
-
* of <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeType.html">
|
|
32
|
-
*
|
|
33
|
-
* </a>. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-register.html#registry-set-configuration">Configuring extensions at
|
|
34
|
-
* the account level</a> in the <i>CloudFormation User Guide</i>.</p>
|
|
31
|
+
* of <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeType.html">DescribeType</a>. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-register.html#registry-set-configuration">Configuring extensions at
|
|
32
|
+
* the account level</a> in the <i>CloudFormation User Guide</i>.</p>
|
|
35
33
|
* <important>
|
|
36
34
|
* <p>It's strongly recommended that you use dynamic references to restrict sensitive configuration definitions, such
|
|
37
35
|
* as third-party credentials. For more details on dynamic references, see <a href="https://docs.aws.amazon.com/">Using
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient";
|
|
4
|
-
import { SetTypeDefaultVersionInput
|
|
4
|
+
import { SetTypeDefaultVersionInput } from "../models/models_0";
|
|
5
|
+
import { SetTypeDefaultVersionOutput } from "../models/models_1";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient";
|
|
4
|
-
import { SignalResourceInput } from "../models/
|
|
4
|
+
import { SignalResourceInput } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -40,13 +40,9 @@ declare const TestTypeCommand_base: {
|
|
|
40
40
|
* <p>If you don't specify a version, CloudFormation uses the default version of the extension in your account and Region
|
|
41
41
|
* for testing.</p>
|
|
42
42
|
* <p>To perform testing, CloudFormation assumes the execution role specified when the type was registered. For more
|
|
43
|
-
* information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">
|
|
44
|
-
* <code>RegisterType</code>
|
|
45
|
-
* </a>.</p>
|
|
43
|
+
* information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">RegisterType</a>.</p>
|
|
46
44
|
* <p>Once you've initiated testing on an extension using <code>TestType</code>, you can pass the returned
|
|
47
|
-
*
|
|
48
|
-
* <code>DescribeType</code>
|
|
49
|
-
* </a> to monitor the current test
|
|
45
|
+
* <code>TypeVersionArn</code> into <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeType.html">DescribeType</a> to monitor the current test
|
|
50
46
|
* status and test status description for the extension.</p>
|
|
51
47
|
* <p>An extension must have a test status of <code>PASSED</code> before it can be published. For more information,
|
|
52
48
|
* see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-publish.html">Publishing
|
|
@@ -28,19 +28,13 @@ declare const UpdateStackInstancesCommand_base: {
|
|
|
28
28
|
/**
|
|
29
29
|
* <p>Updates the parameter values for stack instances for the specified accounts, within the specified Amazon Web Services Regions. A stack instance refers to a stack in a specific account and Region.</p>
|
|
30
30
|
* <p>You can only update stack instances in Amazon Web Services Regions and accounts where they already exist; to
|
|
31
|
-
* create additional stack instances, use <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateStackInstances.html">
|
|
32
|
-
* <code>CreateStackInstances</code>
|
|
33
|
-
* </a>.</p>
|
|
31
|
+
* create additional stack instances, use <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateStackInstances.html">CreateStackInstances</a>.</p>
|
|
34
32
|
* <p>During stack set updates, any parameters overridden for a stack instance aren't updated, but retain their
|
|
35
33
|
* overridden value.</p>
|
|
36
34
|
* <p>You can only update the parameter <i>values</i> that are specified in the stack set; to add or
|
|
37
|
-
* delete a parameter itself, use <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_UpdateStackSet.html">
|
|
38
|
-
* <code>UpdateStackSet</code>
|
|
39
|
-
* </a> to update the stack set
|
|
35
|
+
* delete a parameter itself, use <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_UpdateStackSet.html">UpdateStackSet</a> to update the stack set
|
|
40
36
|
* template. If you add a parameter to a template, before you can override the parameter value specified in the stack
|
|
41
|
-
* set you must first use <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_UpdateStackSet.html">
|
|
42
|
-
* <code>UpdateStackSet</code>
|
|
43
|
-
* </a> to update all stack
|
|
37
|
+
* set you must first use <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_UpdateStackSet.html">UpdateStackSet</a> to update all stack
|
|
44
38
|
* instances with the updated template and parameter value specified in the stack set. Once a stack instance has been
|
|
45
39
|
* updated with the new parameter, you can then override the parameter value using
|
|
46
40
|
* <code>UpdateStackInstances</code>.</p>
|
|
@@ -54,6 +54,7 @@ export * from "./ListResourceScansCommand";
|
|
|
54
54
|
export * from "./ListStackInstanceResourceDriftsCommand";
|
|
55
55
|
export * from "./ListStackInstancesCommand";
|
|
56
56
|
export * from "./ListStackResourcesCommand";
|
|
57
|
+
export * from "./ListStackSetAutoDeploymentTargetsCommand";
|
|
57
58
|
export * from "./ListStackSetOperationResultsCommand";
|
|
58
59
|
export * from "./ListStackSetOperationsCommand";
|
|
59
60
|
export * from "./ListStackSetsCommand";
|