@aws-sdk/client-cloudformation 3.321.1 → 3.326.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/commands/ActivateTypeCommand.d.ts +6 -0
- package/dist-types/commands/BatchDescribeTypeConfigurationsCommand.d.ts +38 -0
- package/dist-types/commands/CancelUpdateStackCommand.d.ts +4 -0
- package/dist-types/commands/ContinueUpdateRollbackCommand.d.ts +4 -0
- package/dist-types/commands/CreateChangeSetCommand.d.ts +7 -0
- package/dist-types/commands/CreateStackCommand.d.ts +6 -0
- package/dist-types/commands/CreateStackInstancesCommand.d.ts +6 -0
- package/dist-types/commands/CreateStackSetCommand.d.ts +6 -0
- package/dist-types/commands/DeactivateTypeCommand.d.ts +4 -0
- package/dist-types/commands/DeleteChangeSetCommand.d.ts +4 -0
- package/dist-types/commands/DeleteStackCommand.d.ts +4 -0
- package/dist-types/commands/DeleteStackInstancesCommand.d.ts +6 -0
- package/dist-types/commands/DeleteStackSetCommand.d.ts +4 -0
- package/dist-types/commands/DeregisterTypeCommand.d.ts +4 -0
- package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +12 -0
- package/dist-types/commands/DescribeChangeSetCommand.d.ts +80 -0
- package/dist-types/commands/DescribeChangeSetHooksCommand.d.ts +28 -0
- package/dist-types/commands/DescribePublisherCommand.d.ts +9 -0
- package/dist-types/commands/DescribeStackDriftDetectionStatusCommand.d.ts +12 -0
- package/dist-types/commands/DescribeStackEventsCommand.d.ts +26 -0
- package/dist-types/commands/DescribeStackInstanceCommand.d.ts +28 -0
- package/dist-types/commands/DescribeStackResourceCommand.d.ts +25 -0
- package/dist-types/commands/DescribeStackResourceDriftsCommand.d.ts +36 -0
- package/dist-types/commands/DescribeStackResourcesCommand.d.ts +26 -0
- package/dist-types/commands/DescribeStackSetCommand.d.ts +56 -0
- package/dist-types/commands/DescribeStackSetOperationCommand.d.ts +50 -0
- package/dist-types/commands/DescribeStacksCommand.d.ts +66 -0
- package/dist-types/commands/DescribeTypeCommand.d.ts +44 -0
- package/dist-types/commands/DescribeTypeRegistrationCommand.d.ts +9 -0
- package/dist-types/commands/DetectStackDriftCommand.d.ts +6 -0
- package/dist-types/commands/DetectStackResourceDriftCommand.d.ts +33 -0
- package/dist-types/commands/DetectStackSetDriftCommand.d.ts +6 -0
- package/dist-types/commands/EstimateTemplateCostCommand.d.ts +6 -0
- package/dist-types/commands/ExecuteChangeSetCommand.d.ts +4 -0
- package/dist-types/commands/GetStackPolicyCommand.d.ts +6 -0
- package/dist-types/commands/GetTemplateCommand.d.ts +9 -0
- package/dist-types/commands/GetTemplateSummaryCommand.d.ts +43 -0
- package/dist-types/commands/ImportStacksToStackSetCommand.d.ts +6 -0
- package/dist-types/commands/ListChangeSetsCommand.d.ts +22 -0
- package/dist-types/commands/ListExportsCommand.d.ts +13 -0
- package/dist-types/commands/ListImportsCommand.d.ts +9 -0
- package/dist-types/commands/ListStackInstancesCommand.d.ts +23 -0
- package/dist-types/commands/ListStackResourcesCommand.d.ts +24 -0
- package/dist-types/commands/ListStackSetOperationResultsCommand.d.ts +19 -0
- package/dist-types/commands/ListStackSetOperationsCommand.d.ts +29 -0
- package/dist-types/commands/ListStackSetsCommand.d.ts +24 -0
- package/dist-types/commands/ListStacksCommand.d.ts +24 -0
- package/dist-types/commands/ListTypeRegistrationsCommand.d.ts +9 -0
- package/dist-types/commands/ListTypeVersionsCommand.d.ts +18 -0
- package/dist-types/commands/ListTypesCommand.d.ts +23 -0
- package/dist-types/commands/PublishTypeCommand.d.ts +6 -0
- package/dist-types/commands/RecordHandlerProgressCommand.d.ts +4 -0
- package/dist-types/commands/RegisterPublisherCommand.d.ts +6 -0
- package/dist-types/commands/RegisterTypeCommand.d.ts +6 -0
- package/dist-types/commands/RollbackStackCommand.d.ts +6 -0
- package/dist-types/commands/SetStackPolicyCommand.d.ts +4 -0
- package/dist-types/commands/SetTypeConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/SetTypeDefaultVersionCommand.d.ts +4 -0
- package/dist-types/commands/SignalResourceCommand.d.ts +4 -0
- package/dist-types/commands/StopStackSetOperationCommand.d.ts +4 -0
- package/dist-types/commands/TestTypeCommand.d.ts +6 -0
- package/dist-types/commands/UpdateStackCommand.d.ts +6 -0
- package/dist-types/commands/UpdateStackInstancesCommand.d.ts +6 -0
- package/dist-types/commands/UpdateStackSetCommand.d.ts +6 -0
- package/dist-types/commands/UpdateTerminationProtectionCommand.d.ts +6 -0
- package/dist-types/commands/ValidateTemplateCommand.d.ts +21 -0
- package/package.json +16 -16
|
@@ -80,6 +80,10 @@ export interface UpdateStackInstancesCommandOutput extends UpdateStackInstancesO
|
|
|
80
80
|
* };
|
|
81
81
|
* const command = new UpdateStackInstancesCommand(input);
|
|
82
82
|
* const response = await client.send(command);
|
|
83
|
+
* // { // UpdateStackInstancesOutput
|
|
84
|
+
* // OperationId: "STRING_VALUE",
|
|
85
|
+
* // };
|
|
86
|
+
*
|
|
83
87
|
* ```
|
|
84
88
|
*
|
|
85
89
|
* @param UpdateStackInstancesCommandInput - {@link UpdateStackInstancesCommandInput}
|
|
@@ -108,6 +112,8 @@ export interface UpdateStackInstancesCommandOutput extends UpdateStackInstancesO
|
|
|
108
112
|
* <p>Another operation has been performed on this stack set since the specified operation was
|
|
109
113
|
* performed.</p>
|
|
110
114
|
*
|
|
115
|
+
* @throws {@link CloudFormationServiceException}
|
|
116
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
111
117
|
*
|
|
112
118
|
*/
|
|
113
119
|
export declare class UpdateStackInstancesCommand extends $Command<UpdateStackInstancesCommandInput, UpdateStackInstancesCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -95,6 +95,10 @@ export interface UpdateStackSetCommandOutput extends UpdateStackSetOutput, __Met
|
|
|
95
95
|
* };
|
|
96
96
|
* const command = new UpdateStackSetCommand(input);
|
|
97
97
|
* const response = await client.send(command);
|
|
98
|
+
* // { // UpdateStackSetOutput
|
|
99
|
+
* // OperationId: "STRING_VALUE",
|
|
100
|
+
* // };
|
|
101
|
+
*
|
|
98
102
|
* ```
|
|
99
103
|
*
|
|
100
104
|
* @param UpdateStackSetCommandInput - {@link UpdateStackSetCommandInput}
|
|
@@ -123,6 +127,8 @@ export interface UpdateStackSetCommandOutput extends UpdateStackSetOutput, __Met
|
|
|
123
127
|
* <p>Another operation has been performed on this stack set since the specified operation was
|
|
124
128
|
* performed.</p>
|
|
125
129
|
*
|
|
130
|
+
* @throws {@link CloudFormationServiceException}
|
|
131
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
126
132
|
*
|
|
127
133
|
*/
|
|
128
134
|
export declare class UpdateStackSetCommand extends $Command<UpdateStackSetCommandInput, UpdateStackSetCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -38,6 +38,10 @@ export interface UpdateTerminationProtectionCommandOutput extends UpdateTerminat
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new UpdateTerminationProtectionCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // UpdateTerminationProtectionOutput
|
|
42
|
+
* // StackId: "STRING_VALUE",
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
41
45
|
* ```
|
|
42
46
|
*
|
|
43
47
|
* @param UpdateTerminationProtectionCommandInput - {@link UpdateTerminationProtectionCommandInput}
|
|
@@ -46,6 +50,8 @@ export interface UpdateTerminationProtectionCommandOutput extends UpdateTerminat
|
|
|
46
50
|
* @see {@link UpdateTerminationProtectionCommandOutput} for command's `response` shape.
|
|
47
51
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
48
52
|
*
|
|
53
|
+
* @throws {@link CloudFormationServiceException}
|
|
54
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
49
55
|
*
|
|
50
56
|
*/
|
|
51
57
|
export declare class UpdateTerminationProtectionCommand extends $Command<UpdateTerminationProtectionCommandInput, UpdateTerminationProtectionCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -34,6 +34,25 @@ export interface ValidateTemplateCommandOutput extends ValidateTemplateOutput, _
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ValidateTemplateCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ValidateTemplateOutput
|
|
38
|
+
* // Parameters: [ // TemplateParameters
|
|
39
|
+
* // { // TemplateParameter
|
|
40
|
+
* // ParameterKey: "STRING_VALUE",
|
|
41
|
+
* // DefaultValue: "STRING_VALUE",
|
|
42
|
+
* // NoEcho: true || false,
|
|
43
|
+
* // Description: "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // Description: "STRING_VALUE",
|
|
47
|
+
* // Capabilities: [ // Capabilities
|
|
48
|
+
* // "CAPABILITY_IAM" || "CAPABILITY_NAMED_IAM" || "CAPABILITY_AUTO_EXPAND",
|
|
49
|
+
* // ],
|
|
50
|
+
* // CapabilitiesReason: "STRING_VALUE",
|
|
51
|
+
* // DeclaredTransforms: [ // TransformsList
|
|
52
|
+
* // "STRING_VALUE",
|
|
53
|
+
* // ],
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
37
56
|
* ```
|
|
38
57
|
*
|
|
39
58
|
* @param ValidateTemplateCommandInput - {@link ValidateTemplateCommandInput}
|
|
@@ -42,6 +61,8 @@ export interface ValidateTemplateCommandOutput extends ValidateTemplateOutput, _
|
|
|
42
61
|
* @see {@link ValidateTemplateCommandOutput} for command's `response` shape.
|
|
43
62
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
44
63
|
*
|
|
64
|
+
* @throws {@link CloudFormationServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
45
66
|
*
|
|
46
67
|
*/
|
|
47
68
|
export declare class ValidateTemplateCommand extends $Command<ValidateTemplateCommandInput, ValidateTemplateCommandOutput, CloudFormationClientResolvedConfig> {
|
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.326.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,33 +21,33 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|