@aws-sdk/client-cloudformation 3.289.0 → 3.290.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 +7 -0
- package/dist-types/commands/BatchDescribeTypeConfigurationsCommand.d.ts +7 -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 +13 -0
- package/dist-types/commands/CreateStackCommand.d.ts +16 -0
- package/dist-types/commands/CreateStackInstancesCommand.d.ts +23 -0
- package/dist-types/commands/CreateStackSetCommand.d.ts +12 -0
- package/dist-types/commands/DeactivateTypeCommand.d.ts +7 -0
- package/dist-types/commands/DeleteChangeSetCommand.d.ts +6 -0
- package/dist-types/commands/DeleteStackCommand.d.ts +4 -0
- package/dist-types/commands/DeleteStackInstancesCommand.d.ts +18 -0
- package/dist-types/commands/DeleteStackSetCommand.d.ts +10 -0
- package/dist-types/commands/DeregisterTypeCommand.d.ts +7 -0
- package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeChangeSetCommand.d.ts +5 -0
- package/dist-types/commands/DescribeChangeSetHooksCommand.d.ts +5 -0
- package/dist-types/commands/DescribePublisherCommand.d.ts +4 -0
- package/dist-types/commands/DescribeStackDriftDetectionStatusCommand.d.ts +1 -0
- package/dist-types/commands/DescribeStackEventsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeStackInstanceCommand.d.ts +7 -0
- package/dist-types/commands/DescribeStackResourceCommand.d.ts +1 -0
- package/dist-types/commands/DescribeStackResourceDriftsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeStackResourcesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeStackSetCommand.d.ts +4 -0
- package/dist-types/commands/DescribeStackSetOperationCommand.d.ts +7 -0
- package/dist-types/commands/DescribeStacksCommand.d.ts +1 -0
- package/dist-types/commands/DescribeTypeCommand.d.ts +7 -0
- package/dist-types/commands/DescribeTypeRegistrationCommand.d.ts +4 -0
- package/dist-types/commands/DetectStackDriftCommand.d.ts +1 -0
- package/dist-types/commands/DetectStackResourceDriftCommand.d.ts +1 -0
- package/dist-types/commands/DetectStackSetDriftCommand.d.ts +11 -0
- package/dist-types/commands/EstimateTemplateCostCommand.d.ts +1 -0
- package/dist-types/commands/ExecuteChangeSetCommand.d.ts +17 -0
- package/dist-types/commands/GetStackPolicyCommand.d.ts +1 -0
- package/dist-types/commands/GetTemplateCommand.d.ts +5 -0
- package/dist-types/commands/GetTemplateSummaryCommand.d.ts +4 -0
- package/dist-types/commands/ImportStacksToStackSetCommand.d.ts +27 -0
- package/dist-types/commands/ListChangeSetsCommand.d.ts +1 -0
- package/dist-types/commands/ListExportsCommand.d.ts +1 -0
- package/dist-types/commands/ListImportsCommand.d.ts +1 -0
- package/dist-types/commands/ListStackInstancesCommand.d.ts +4 -0
- package/dist-types/commands/ListStackResourcesCommand.d.ts +1 -0
- package/dist-types/commands/ListStackSetOperationResultsCommand.d.ts +7 -0
- package/dist-types/commands/ListStackSetOperationsCommand.d.ts +4 -0
- package/dist-types/commands/ListStackSetsCommand.d.ts +1 -0
- package/dist-types/commands/ListStacksCommand.d.ts +1 -0
- package/dist-types/commands/ListTypeRegistrationsCommand.d.ts +4 -0
- package/dist-types/commands/ListTypeVersionsCommand.d.ts +4 -0
- package/dist-types/commands/ListTypesCommand.d.ts +4 -0
- package/dist-types/commands/PublishTypeCommand.d.ts +7 -0
- package/dist-types/commands/RecordHandlerProgressCommand.d.ts +9 -0
- package/dist-types/commands/RegisterPublisherCommand.d.ts +4 -0
- package/dist-types/commands/RegisterTypeCommand.d.ts +4 -0
- package/dist-types/commands/RollbackStackCommand.d.ts +4 -0
- package/dist-types/commands/SetStackPolicyCommand.d.ts +1 -0
- package/dist-types/commands/SetTypeConfigurationCommand.d.ts +7 -0
- package/dist-types/commands/SetTypeDefaultVersionCommand.d.ts +7 -0
- package/dist-types/commands/SignalResourceCommand.d.ts +1 -0
- package/dist-types/commands/StopStackSetOperationCommand.d.ts +10 -0
- package/dist-types/commands/TestTypeCommand.d.ts +7 -0
- package/dist-types/commands/UpdateStackCommand.d.ts +8 -0
- package/dist-types/commands/UpdateStackInstancesCommand.d.ts +21 -0
- package/dist-types/commands/UpdateStackSetCommand.d.ts +21 -0
- package/dist-types/commands/UpdateTerminationProtectionCommand.d.ts +1 -0
- package/dist-types/commands/ValidateTemplateCommand.d.ts +1 -0
- package/package.json +30 -30
|
@@ -34,6 +34,13 @@ export interface ActivateTypeCommandOutput extends ActivateTypeOutput, __Metadat
|
|
|
34
34
|
* @see {@link ActivateTypeCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link CFNRegistryException} (client fault)
|
|
38
|
+
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link TypeNotFoundException} (client fault)
|
|
41
|
+
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
37
44
|
*/
|
|
38
45
|
export declare class ActivateTypeCommand extends $Command<ActivateTypeCommandInput, ActivateTypeCommandOutput, CloudFormationClientResolvedConfig> {
|
|
39
46
|
readonly input: ActivateTypeCommandInput;
|
|
@@ -32,6 +32,13 @@ export interface BatchDescribeTypeConfigurationsCommandOutput extends BatchDescr
|
|
|
32
32
|
* @see {@link BatchDescribeTypeConfigurationsCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link CFNRegistryException} (client fault)
|
|
36
|
+
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link TypeConfigurationNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified extension configuration can't be found.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
35
42
|
*/
|
|
36
43
|
export declare class BatchDescribeTypeConfigurationsCommand extends $Command<BatchDescribeTypeConfigurationsCommandInput, BatchDescribeTypeConfigurationsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
37
44
|
readonly input: BatchDescribeTypeConfigurationsCommandInput;
|
|
@@ -34,6 +34,10 @@ export interface CancelUpdateStackCommandOutput extends __MetadataBearer {
|
|
|
34
34
|
* @see {@link CancelUpdateStackCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link TokenAlreadyExistsException} (client fault)
|
|
38
|
+
* <p>A client request token already exists.</p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
37
41
|
*/
|
|
38
42
|
export declare class CancelUpdateStackCommand extends $Command<CancelUpdateStackCommandInput, CancelUpdateStackCommandOutput, CloudFormationClientResolvedConfig> {
|
|
39
43
|
readonly input: CancelUpdateStackCommandInput;
|
|
@@ -38,6 +38,10 @@ export interface ContinueUpdateRollbackCommandOutput extends ContinueUpdateRollb
|
|
|
38
38
|
* @see {@link ContinueUpdateRollbackCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link TokenAlreadyExistsException} (client fault)
|
|
42
|
+
* <p>A client request token already exists.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
41
45
|
*/
|
|
42
46
|
export declare class ContinueUpdateRollbackCommand extends $Command<ContinueUpdateRollbackCommandInput, ContinueUpdateRollbackCommandOutput, CloudFormationClientResolvedConfig> {
|
|
43
47
|
readonly input: ContinueUpdateRollbackCommandInput;
|
|
@@ -49,6 +49,19 @@ export interface CreateChangeSetCommandOutput extends CreateChangeSetOutput, __M
|
|
|
49
49
|
* @see {@link CreateChangeSetCommandOutput} for command's `response` shape.
|
|
50
50
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
51
51
|
*
|
|
52
|
+
* @throws {@link AlreadyExistsException} (client fault)
|
|
53
|
+
* <p>The resource with the name requested already exists.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link InsufficientCapabilitiesException} (client fault)
|
|
56
|
+
* <p>The template contains resources with capabilities that weren't specified in the
|
|
57
|
+
* Capabilities parameter.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
60
|
+
* <p>The quota for the resource has already been reached.</p>
|
|
61
|
+
* <p>For information about resource and stack limitations, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html">CloudFormation
|
|
62
|
+
* quotas</a> in the <i>CloudFormation User Guide</i>.</p>
|
|
63
|
+
*
|
|
64
|
+
*
|
|
52
65
|
*/
|
|
53
66
|
export declare class CreateChangeSetCommand extends $Command<CreateChangeSetCommandInput, CreateChangeSetCommandOutput, CloudFormationClientResolvedConfig> {
|
|
54
67
|
readonly input: CreateChangeSetCommandInput;
|
|
@@ -30,6 +30,22 @@ export interface CreateStackCommandOutput extends CreateStackOutput, __MetadataB
|
|
|
30
30
|
* @see {@link CreateStackCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AlreadyExistsException} (client fault)
|
|
34
|
+
* <p>The resource with the name requested already exists.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InsufficientCapabilitiesException} (client fault)
|
|
37
|
+
* <p>The template contains resources with capabilities that weren't specified in the
|
|
38
|
+
* Capabilities parameter.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
41
|
+
* <p>The quota for the resource has already been reached.</p>
|
|
42
|
+
* <p>For information about resource and stack limitations, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html">CloudFormation
|
|
43
|
+
* quotas</a> in the <i>CloudFormation User Guide</i>.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link TokenAlreadyExistsException} (client fault)
|
|
46
|
+
* <p>A client request token already exists.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
33
49
|
*/
|
|
34
50
|
export declare class CreateStackCommand extends $Command<CreateStackCommandInput, CreateStackCommandOutput, CloudFormationClientResolvedConfig> {
|
|
35
51
|
readonly input: CreateStackCommandInput;
|
|
@@ -32,6 +32,29 @@ export interface CreateStackInstancesCommandOutput extends CreateStackInstancesO
|
|
|
32
32
|
* @see {@link CreateStackInstancesCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InvalidOperationException} (client fault)
|
|
36
|
+
* <p>The specified operation isn't valid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
39
|
+
* <p>The quota for the resource has already been reached.</p>
|
|
40
|
+
* <p>For information about resource and stack limitations, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html">CloudFormation
|
|
41
|
+
* quotas</a> in the <i>CloudFormation User Guide</i>.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link OperationIdAlreadyExistsException} (client fault)
|
|
44
|
+
* <p>The specified operation ID already exists.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link OperationInProgressException} (client fault)
|
|
47
|
+
* <p>Another operation is currently in progress for this stack set. Only one operation can be
|
|
48
|
+
* performed for a stack set at a given time.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link StackSetNotFoundException} (client fault)
|
|
51
|
+
* <p>The specified stack set doesn't exist.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link StaleRequestException} (client fault)
|
|
54
|
+
* <p>Another operation has been performed on this stack set since the specified operation was
|
|
55
|
+
* performed.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
35
58
|
*/
|
|
36
59
|
export declare class CreateStackInstancesCommand extends $Command<CreateStackInstancesCommandInput, CreateStackInstancesCommandOutput, CloudFormationClientResolvedConfig> {
|
|
37
60
|
readonly input: CreateStackInstancesCommandInput;
|
|
@@ -29,6 +29,18 @@ export interface CreateStackSetCommandOutput extends CreateStackSetOutput, __Met
|
|
|
29
29
|
* @see {@link CreateStackSetCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link CreatedButModifiedException} (client fault)
|
|
33
|
+
* <p>The specified resource exists, but has been changed.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
36
|
+
* <p>The quota for the resource has already been reached.</p>
|
|
37
|
+
* <p>For information about resource and stack limitations, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html">CloudFormation
|
|
38
|
+
* quotas</a> in the <i>CloudFormation User Guide</i>.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link NameAlreadyExistsException} (client fault)
|
|
41
|
+
* <p>The specified name is already in use.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
32
44
|
*/
|
|
33
45
|
export declare class CreateStackSetCommand extends $Command<CreateStackSetCommandInput, CreateStackSetCommandOutput, CloudFormationClientResolvedConfig> {
|
|
34
46
|
readonly input: CreateStackSetCommandInput;
|
|
@@ -34,6 +34,13 @@ export interface DeactivateTypeCommandOutput extends DeactivateTypeOutput, __Met
|
|
|
34
34
|
* @see {@link DeactivateTypeCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link CFNRegistryException} (client fault)
|
|
38
|
+
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link TypeNotFoundException} (client fault)
|
|
41
|
+
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
37
44
|
*/
|
|
38
45
|
export declare class DeactivateTypeCommand extends $Command<DeactivateTypeCommandInput, DeactivateTypeCommandOutput, CloudFormationClientResolvedConfig> {
|
|
39
46
|
readonly input: DeactivateTypeCommandInput;
|
|
@@ -36,6 +36,12 @@ export interface DeleteChangeSetCommandOutput extends DeleteChangeSetOutput, __M
|
|
|
36
36
|
* @see {@link DeleteChangeSetCommandOutput} for command's `response` shape.
|
|
37
37
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
38
38
|
*
|
|
39
|
+
* @throws {@link InvalidChangeSetStatusException} (client fault)
|
|
40
|
+
* <p>The specified change set can't be used to update the stack. For example, the change set
|
|
41
|
+
* status might be <code>CREATE_IN_PROGRESS</code>, or the stack status might be
|
|
42
|
+
* <code>UPDATE_IN_PROGRESS</code>.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
39
45
|
*/
|
|
40
46
|
export declare class DeleteChangeSetCommand extends $Command<DeleteChangeSetCommandInput, DeleteChangeSetCommandOutput, CloudFormationClientResolvedConfig> {
|
|
41
47
|
readonly input: DeleteChangeSetCommandInput;
|
|
@@ -31,6 +31,10 @@ export interface DeleteStackCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* @see {@link DeleteStackCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link TokenAlreadyExistsException} (client fault)
|
|
35
|
+
* <p>A client request token already exists.</p>
|
|
36
|
+
*
|
|
37
|
+
*
|
|
34
38
|
*/
|
|
35
39
|
export declare class DeleteStackCommand extends $Command<DeleteStackCommandInput, DeleteStackCommandOutput, CloudFormationClientResolvedConfig> {
|
|
36
40
|
readonly input: DeleteStackCommandInput;
|
|
@@ -29,6 +29,24 @@ export interface DeleteStackInstancesCommandOutput extends DeleteStackInstancesO
|
|
|
29
29
|
* @see {@link DeleteStackInstancesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidOperationException} (client fault)
|
|
33
|
+
* <p>The specified operation isn't valid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link OperationIdAlreadyExistsException} (client fault)
|
|
36
|
+
* <p>The specified operation ID already exists.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link OperationInProgressException} (client fault)
|
|
39
|
+
* <p>Another operation is currently in progress for this stack set. Only one operation can be
|
|
40
|
+
* performed for a stack set at a given time.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link StackSetNotFoundException} (client fault)
|
|
43
|
+
* <p>The specified stack set doesn't exist.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link StaleRequestException} (client fault)
|
|
46
|
+
* <p>Another operation has been performed on this stack set since the specified operation was
|
|
47
|
+
* performed.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
32
50
|
*/
|
|
33
51
|
export declare class DeleteStackInstancesCommand extends $Command<DeleteStackInstancesCommandInput, DeleteStackInstancesCommandOutput, CloudFormationClientResolvedConfig> {
|
|
34
52
|
readonly input: DeleteStackInstancesCommandInput;
|
|
@@ -30,6 +30,16 @@ export interface DeleteStackSetCommandOutput extends DeleteStackSetOutput, __Met
|
|
|
30
30
|
* @see {@link DeleteStackSetCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link OperationInProgressException} (client fault)
|
|
34
|
+
* <p>Another operation is currently in progress for this stack set. Only one operation can be
|
|
35
|
+
* performed for a stack set at a given time.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link StackSetNotEmptyException} (client fault)
|
|
38
|
+
* <p>You can't yet delete this stack set, because it still contains one or more stack
|
|
39
|
+
* instances. Delete all stack instances from the stack set before deleting the stack
|
|
40
|
+
* set.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
*/
|
|
34
44
|
export declare class DeleteStackSetCommand extends $Command<DeleteStackSetCommandInput, DeleteStackSetCommandOutput, CloudFormationClientResolvedConfig> {
|
|
35
45
|
readonly input: DeleteStackSetCommandInput;
|
|
@@ -38,6 +38,13 @@ export interface DeregisterTypeCommandOutput extends DeregisterTypeOutput, __Met
|
|
|
38
38
|
* @see {@link DeregisterTypeCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link CFNRegistryException} (client fault)
|
|
42
|
+
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link TypeNotFoundException} (client fault)
|
|
45
|
+
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
41
48
|
*/
|
|
42
49
|
export declare class DeregisterTypeCommand extends $Command<DeregisterTypeCommandInput, DeregisterTypeCommandOutput, CloudFormationClientResolvedConfig> {
|
|
43
50
|
readonly input: DeregisterTypeCommandInput;
|
|
@@ -31,6 +31,7 @@ export interface DescribeAccountLimitsCommandOutput extends DescribeAccountLimit
|
|
|
31
31
|
* @see {@link DescribeAccountLimitsCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
*
|
|
34
35
|
*/
|
|
35
36
|
export declare class DescribeAccountLimitsCommand extends $Command<DescribeAccountLimitsCommandInput, DescribeAccountLimitsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
36
37
|
readonly input: DescribeAccountLimitsCommandInput;
|
|
@@ -30,6 +30,11 @@ export interface DescribeChangeSetCommandOutput extends DescribeChangeSetOutput,
|
|
|
30
30
|
* @see {@link DescribeChangeSetCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ChangeSetNotFoundException} (client fault)
|
|
34
|
+
* <p>The specified change set name or ID doesn't exit. To view valid change sets for a stack,
|
|
35
|
+
* use the <code>ListChangeSets</code> operation.</p>
|
|
36
|
+
*
|
|
37
|
+
*
|
|
33
38
|
*/
|
|
34
39
|
export declare class DescribeChangeSetCommand extends $Command<DescribeChangeSetCommandInput, DescribeChangeSetCommandOutput, CloudFormationClientResolvedConfig> {
|
|
35
40
|
readonly input: DescribeChangeSetCommandInput;
|
|
@@ -29,6 +29,11 @@ export interface DescribeChangeSetHooksCommandOutput extends DescribeChangeSetHo
|
|
|
29
29
|
* @see {@link DescribeChangeSetHooksCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ChangeSetNotFoundException} (client fault)
|
|
33
|
+
* <p>The specified change set name or ID doesn't exit. To view valid change sets for a stack,
|
|
34
|
+
* use the <code>ListChangeSets</code> operation.</p>
|
|
35
|
+
*
|
|
36
|
+
*
|
|
32
37
|
*/
|
|
33
38
|
export declare class DescribeChangeSetHooksCommand extends $Command<DescribeChangeSetHooksCommandInput, DescribeChangeSetHooksCommandOutput, CloudFormationClientResolvedConfig> {
|
|
34
39
|
readonly input: DescribeChangeSetHooksCommandInput;
|
|
@@ -46,6 +46,10 @@ export interface DescribePublisherCommandOutput extends DescribePublisherOutput,
|
|
|
46
46
|
* @see {@link DescribePublisherCommandOutput} for command's `response` shape.
|
|
47
47
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
48
48
|
*
|
|
49
|
+
* @throws {@link CFNRegistryException} (client fault)
|
|
50
|
+
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
49
53
|
*/
|
|
50
54
|
export declare class DescribePublisherCommand extends $Command<DescribePublisherCommandInput, DescribePublisherCommandOutput, CloudFormationClientResolvedConfig> {
|
|
51
55
|
readonly input: DescribePublisherCommandInput;
|
|
@@ -41,6 +41,7 @@ export interface DescribeStackDriftDetectionStatusCommandOutput extends Describe
|
|
|
41
41
|
* @see {@link DescribeStackDriftDetectionStatusCommandOutput} for command's `response` shape.
|
|
42
42
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
43
43
|
*
|
|
44
|
+
*
|
|
44
45
|
*/
|
|
45
46
|
export declare class DescribeStackDriftDetectionStatusCommand extends $Command<DescribeStackDriftDetectionStatusCommandInput, DescribeStackDriftDetectionStatusCommandOutput, CloudFormationClientResolvedConfig> {
|
|
46
47
|
readonly input: DescribeStackDriftDetectionStatusCommandInput;
|
|
@@ -35,6 +35,7 @@ export interface DescribeStackEventsCommandOutput extends DescribeStackEventsOut
|
|
|
35
35
|
* @see {@link DescribeStackEventsCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
*
|
|
38
39
|
*/
|
|
39
40
|
export declare class DescribeStackEventsCommand extends $Command<DescribeStackEventsCommandInput, DescribeStackEventsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
40
41
|
readonly input: DescribeStackEventsCommandInput;
|
|
@@ -30,6 +30,13 @@ export interface DescribeStackInstanceCommandOutput extends DescribeStackInstanc
|
|
|
30
30
|
* @see {@link DescribeStackInstanceCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link StackInstanceNotFoundException} (client fault)
|
|
34
|
+
* <p>The specified stack instance doesn't exist.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link StackSetNotFoundException} (client fault)
|
|
37
|
+
* <p>The specified stack set doesn't exist.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
33
40
|
*/
|
|
34
41
|
export declare class DescribeStackInstanceCommand extends $Command<DescribeStackInstanceCommandInput, DescribeStackInstanceCommandOutput, CloudFormationClientResolvedConfig> {
|
|
35
42
|
readonly input: DescribeStackInstanceCommandInput;
|
|
@@ -31,6 +31,7 @@ export interface DescribeStackResourceCommandOutput extends DescribeStackResourc
|
|
|
31
31
|
* @see {@link DescribeStackResourceCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
*
|
|
34
35
|
*/
|
|
35
36
|
export declare class DescribeStackResourceCommand extends $Command<DescribeStackResourceCommandInput, DescribeStackResourceCommandOutput, CloudFormationClientResolvedConfig> {
|
|
36
37
|
readonly input: DescribeStackResourceCommandInput;
|
|
@@ -38,6 +38,7 @@ export interface DescribeStackResourceDriftsCommandOutput extends DescribeStackR
|
|
|
38
38
|
* @see {@link DescribeStackResourceDriftsCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
*
|
|
41
42
|
*/
|
|
42
43
|
export declare class DescribeStackResourceDriftsCommand extends $Command<DescribeStackResourceDriftsCommandInput, DescribeStackResourceDriftsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
43
44
|
readonly input: DescribeStackResourceDriftsCommandInput;
|
|
@@ -47,6 +47,7 @@ export interface DescribeStackResourcesCommandOutput extends DescribeStackResour
|
|
|
47
47
|
* @see {@link DescribeStackResourcesCommandOutput} for command's `response` shape.
|
|
48
48
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
49
49
|
*
|
|
50
|
+
*
|
|
50
51
|
*/
|
|
51
52
|
export declare class DescribeStackResourcesCommand extends $Command<DescribeStackResourcesCommandInput, DescribeStackResourcesCommandOutput, CloudFormationClientResolvedConfig> {
|
|
52
53
|
readonly input: DescribeStackResourcesCommandInput;
|
|
@@ -29,6 +29,10 @@ export interface DescribeStackSetCommandOutput extends DescribeStackSetOutput, _
|
|
|
29
29
|
* @see {@link DescribeStackSetCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link StackSetNotFoundException} (client fault)
|
|
33
|
+
* <p>The specified stack set doesn't exist.</p>
|
|
34
|
+
*
|
|
35
|
+
*
|
|
32
36
|
*/
|
|
33
37
|
export declare class DescribeStackSetCommand extends $Command<DescribeStackSetCommandInput, DescribeStackSetCommandOutput, CloudFormationClientResolvedConfig> {
|
|
34
38
|
readonly input: DescribeStackSetCommandInput;
|
|
@@ -29,6 +29,13 @@ export interface DescribeStackSetOperationCommandOutput extends DescribeStackSet
|
|
|
29
29
|
* @see {@link DescribeStackSetOperationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link OperationNotFoundException} (client fault)
|
|
33
|
+
* <p>The specified ID refers to an operation that doesn't exist.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link StackSetNotFoundException} (client fault)
|
|
36
|
+
* <p>The specified stack set doesn't exist.</p>
|
|
37
|
+
*
|
|
38
|
+
*
|
|
32
39
|
*/
|
|
33
40
|
export declare class DescribeStackSetOperationCommand extends $Command<DescribeStackSetOperationCommandInput, DescribeStackSetOperationCommandOutput, CloudFormationClientResolvedConfig> {
|
|
34
41
|
readonly input: DescribeStackSetOperationCommandInput;
|
|
@@ -33,6 +33,7 @@ export interface DescribeStacksCommandOutput extends DescribeStacksOutput, __Met
|
|
|
33
33
|
* @see {@link DescribeStacksCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
*
|
|
36
37
|
*/
|
|
37
38
|
export declare class DescribeStacksCommand extends $Command<DescribeStacksCommandInput, DescribeStacksCommandOutput, CloudFormationClientResolvedConfig> {
|
|
38
39
|
readonly input: DescribeStacksCommandInput;
|
|
@@ -32,6 +32,13 @@ export interface DescribeTypeCommandOutput extends DescribeTypeOutput, __Metadat
|
|
|
32
32
|
* @see {@link DescribeTypeCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link CFNRegistryException} (client fault)
|
|
36
|
+
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link TypeNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
35
42
|
*/
|
|
36
43
|
export declare class DescribeTypeCommand extends $Command<DescribeTypeCommandInput, DescribeTypeCommandOutput, CloudFormationClientResolvedConfig> {
|
|
37
44
|
readonly input: DescribeTypeCommandInput;
|
|
@@ -39,6 +39,10 @@ export interface DescribeTypeRegistrationCommandOutput extends DescribeTypeRegis
|
|
|
39
39
|
* @see {@link DescribeTypeRegistrationCommandOutput} for command's `response` shape.
|
|
40
40
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
41
41
|
*
|
|
42
|
+
* @throws {@link CFNRegistryException} (client fault)
|
|
43
|
+
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
42
46
|
*/
|
|
43
47
|
export declare class DescribeTypeRegistrationCommand extends $Command<DescribeTypeRegistrationCommandInput, DescribeTypeRegistrationCommandOutput, CloudFormationClientResolvedConfig> {
|
|
44
48
|
readonly input: DescribeTypeRegistrationCommandInput;
|
|
@@ -49,6 +49,7 @@ export interface DetectStackDriftCommandOutput extends DetectStackDriftOutput, _
|
|
|
49
49
|
* @see {@link DetectStackDriftCommandOutput} for command's `response` shape.
|
|
50
50
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
51
51
|
*
|
|
52
|
+
*
|
|
52
53
|
*/
|
|
53
54
|
export declare class DetectStackDriftCommand extends $Command<DetectStackDriftCommandInput, DetectStackDriftCommandOutput, CloudFormationClientResolvedConfig> {
|
|
54
55
|
readonly input: DetectStackDriftCommandInput;
|
|
@@ -40,6 +40,7 @@ export interface DetectStackResourceDriftCommandOutput extends DetectStackResour
|
|
|
40
40
|
* @see {@link DetectStackResourceDriftCommandOutput} for command's `response` shape.
|
|
41
41
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
42
42
|
*
|
|
43
|
+
*
|
|
43
44
|
*/
|
|
44
45
|
export declare class DetectStackResourceDriftCommand extends $Command<DetectStackResourceDriftCommandInput, DetectStackResourceDriftCommandOutput, CloudFormationClientResolvedConfig> {
|
|
45
46
|
readonly input: DetectStackResourceDriftCommandInput;
|
|
@@ -73,6 +73,17 @@ export interface DetectStackSetDriftCommandOutput extends DetectStackSetDriftOut
|
|
|
73
73
|
* @see {@link DetectStackSetDriftCommandOutput} for command's `response` shape.
|
|
74
74
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
75
75
|
*
|
|
76
|
+
* @throws {@link InvalidOperationException} (client fault)
|
|
77
|
+
* <p>The specified operation isn't valid.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link OperationInProgressException} (client fault)
|
|
80
|
+
* <p>Another operation is currently in progress for this stack set. Only one operation can be
|
|
81
|
+
* performed for a stack set at a given time.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link StackSetNotFoundException} (client fault)
|
|
84
|
+
* <p>The specified stack set doesn't exist.</p>
|
|
85
|
+
*
|
|
86
|
+
*
|
|
76
87
|
*/
|
|
77
88
|
export declare class DetectStackSetDriftCommand extends $Command<DetectStackSetDriftCommandInput, DetectStackSetDriftCommandOutput, CloudFormationClientResolvedConfig> {
|
|
78
89
|
readonly input: DetectStackSetDriftCommandInput;
|
|
@@ -30,6 +30,7 @@ export interface EstimateTemplateCostCommandOutput extends EstimateTemplateCostO
|
|
|
30
30
|
* @see {@link EstimateTemplateCostCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
*
|
|
33
34
|
*/
|
|
34
35
|
export declare class EstimateTemplateCostCommand extends $Command<EstimateTemplateCostCommandInput, EstimateTemplateCostCommandOutput, CloudFormationClientResolvedConfig> {
|
|
35
36
|
readonly input: EstimateTemplateCostCommandInput;
|
|
@@ -39,6 +39,23 @@ export interface ExecuteChangeSetCommandOutput extends ExecuteChangeSetOutput, _
|
|
|
39
39
|
* @see {@link ExecuteChangeSetCommandOutput} for command's `response` shape.
|
|
40
40
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
41
41
|
*
|
|
42
|
+
* @throws {@link ChangeSetNotFoundException} (client fault)
|
|
43
|
+
* <p>The specified change set name or ID doesn't exit. To view valid change sets for a stack,
|
|
44
|
+
* use the <code>ListChangeSets</code> operation.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InsufficientCapabilitiesException} (client fault)
|
|
47
|
+
* <p>The template contains resources with capabilities that weren't specified in the
|
|
48
|
+
* Capabilities parameter.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link InvalidChangeSetStatusException} (client fault)
|
|
51
|
+
* <p>The specified change set can't be used to update the stack. For example, the change set
|
|
52
|
+
* status might be <code>CREATE_IN_PROGRESS</code>, or the stack status might be
|
|
53
|
+
* <code>UPDATE_IN_PROGRESS</code>.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link TokenAlreadyExistsException} (client fault)
|
|
56
|
+
* <p>A client request token already exists.</p>
|
|
57
|
+
*
|
|
58
|
+
*
|
|
42
59
|
*/
|
|
43
60
|
export declare class ExecuteChangeSetCommand extends $Command<ExecuteChangeSetCommandInput, ExecuteChangeSetCommandOutput, CloudFormationClientResolvedConfig> {
|
|
44
61
|
readonly input: ExecuteChangeSetCommandInput;
|
|
@@ -30,6 +30,7 @@ export interface GetStackPolicyCommandOutput extends GetStackPolicyOutput, __Met
|
|
|
30
30
|
* @see {@link GetStackPolicyCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
*
|
|
33
34
|
*/
|
|
34
35
|
export declare class GetStackPolicyCommand extends $Command<GetStackPolicyCommandInput, GetStackPolicyCommandOutput, CloudFormationClientResolvedConfig> {
|
|
35
36
|
readonly input: GetStackPolicyCommandInput;
|
|
@@ -35,6 +35,11 @@ export interface GetTemplateCommandOutput extends GetTemplateOutput, __MetadataB
|
|
|
35
35
|
* @see {@link GetTemplateCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link ChangeSetNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified change set name or ID doesn't exit. To view valid change sets for a stack,
|
|
40
|
+
* use the <code>ListChangeSets</code> operation.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
38
43
|
*/
|
|
39
44
|
export declare class GetTemplateCommand extends $Command<GetTemplateCommandInput, GetTemplateCommandOutput, CloudFormationClientResolvedConfig> {
|
|
40
45
|
readonly input: GetTemplateCommandInput;
|
|
@@ -37,6 +37,10 @@ export interface GetTemplateSummaryCommandOutput extends GetTemplateSummaryOutpu
|
|
|
37
37
|
* @see {@link GetTemplateSummaryCommandOutput} for command's `response` shape.
|
|
38
38
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
39
39
|
*
|
|
40
|
+
* @throws {@link StackSetNotFoundException} (client fault)
|
|
41
|
+
* <p>The specified stack set doesn't exist.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
40
44
|
*/
|
|
41
45
|
export declare class GetTemplateSummaryCommand extends $Command<GetTemplateSummaryCommandInput, GetTemplateSummaryCommandOutput, CloudFormationClientResolvedConfig> {
|
|
42
46
|
readonly input: GetTemplateSummaryCommandInput;
|
|
@@ -37,6 +37,33 @@ export interface ImportStacksToStackSetCommandOutput extends ImportStacksToStack
|
|
|
37
37
|
* @see {@link ImportStacksToStackSetCommandOutput} for command's `response` shape.
|
|
38
38
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
39
39
|
*
|
|
40
|
+
* @throws {@link InvalidOperationException} (client fault)
|
|
41
|
+
* <p>The specified operation isn't valid.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
44
|
+
* <p>The quota for the resource has already been reached.</p>
|
|
45
|
+
* <p>For information about resource and stack limitations, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html">CloudFormation
|
|
46
|
+
* quotas</a> in the <i>CloudFormation User Guide</i>.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link OperationIdAlreadyExistsException} (client fault)
|
|
49
|
+
* <p>The specified operation ID already exists.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link OperationInProgressException} (client fault)
|
|
52
|
+
* <p>Another operation is currently in progress for this stack set. Only one operation can be
|
|
53
|
+
* performed for a stack set at a given time.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link StackNotFoundException} (client fault)
|
|
56
|
+
* <p>The specified stack ARN doesn't exist or stack doesn't exist corresponding to the ARN in
|
|
57
|
+
* input.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link StackSetNotFoundException} (client fault)
|
|
60
|
+
* <p>The specified stack set doesn't exist.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link StaleRequestException} (client fault)
|
|
63
|
+
* <p>Another operation has been performed on this stack set since the specified operation was
|
|
64
|
+
* performed.</p>
|
|
65
|
+
*
|
|
66
|
+
*
|
|
40
67
|
*/
|
|
41
68
|
export declare class ImportStacksToStackSetCommand extends $Command<ImportStacksToStackSetCommandInput, ImportStacksToStackSetCommandOutput, CloudFormationClientResolvedConfig> {
|
|
42
69
|
readonly input: ImportStacksToStackSetCommandInput;
|
|
@@ -30,6 +30,7 @@ export interface ListChangeSetsCommandOutput extends ListChangeSetsOutput, __Met
|
|
|
30
30
|
* @see {@link ListChangeSetsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
*
|
|
33
34
|
*/
|
|
34
35
|
export declare class ListChangeSetsCommand extends $Command<ListChangeSetsCommandInput, ListChangeSetsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
35
36
|
readonly input: ListChangeSetsCommandInput;
|
|
@@ -35,6 +35,7 @@ export interface ListExportsCommandOutput extends ListExportsOutput, __MetadataB
|
|
|
35
35
|
* @see {@link ListExportsCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
*
|
|
38
39
|
*/
|
|
39
40
|
export declare class ListExportsCommand extends $Command<ListExportsCommandInput, ListExportsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
40
41
|
readonly input: ListExportsCommandInput;
|
|
@@ -34,6 +34,7 @@ export interface ListImportsCommandOutput extends ListImportsOutput, __MetadataB
|
|
|
34
34
|
* @see {@link ListImportsCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
*
|
|
37
38
|
*/
|
|
38
39
|
export declare class ListImportsCommand extends $Command<ListImportsCommandInput, ListImportsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
39
40
|
readonly input: ListImportsCommandInput;
|
|
@@ -30,6 +30,10 @@ export interface ListStackInstancesCommandOutput extends ListStackInstancesOutpu
|
|
|
30
30
|
* @see {@link ListStackInstancesCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link StackSetNotFoundException} (client fault)
|
|
34
|
+
* <p>The specified stack set doesn't exist.</p>
|
|
35
|
+
*
|
|
36
|
+
*
|
|
33
37
|
*/
|
|
34
38
|
export declare class ListStackInstancesCommand extends $Command<ListStackInstancesCommandInput, ListStackInstancesCommandOutput, CloudFormationClientResolvedConfig> {
|
|
35
39
|
readonly input: ListStackInstancesCommandInput;
|
|
@@ -31,6 +31,7 @@ export interface ListStackResourcesCommandOutput extends ListStackResourcesOutpu
|
|
|
31
31
|
* @see {@link ListStackResourcesCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
*
|
|
34
35
|
*/
|
|
35
36
|
export declare class ListStackResourcesCommand extends $Command<ListStackResourcesCommandInput, ListStackResourcesCommandOutput, CloudFormationClientResolvedConfig> {
|
|
36
37
|
readonly input: ListStackResourcesCommandInput;
|
|
@@ -29,6 +29,13 @@ export interface ListStackSetOperationResultsCommandOutput extends ListStackSetO
|
|
|
29
29
|
* @see {@link ListStackSetOperationResultsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link OperationNotFoundException} (client fault)
|
|
33
|
+
* <p>The specified ID refers to an operation that doesn't exist.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link StackSetNotFoundException} (client fault)
|
|
36
|
+
* <p>The specified stack set doesn't exist.</p>
|
|
37
|
+
*
|
|
38
|
+
*
|
|
32
39
|
*/
|
|
33
40
|
export declare class ListStackSetOperationResultsCommand extends $Command<ListStackSetOperationResultsCommandInput, ListStackSetOperationResultsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
34
41
|
readonly input: ListStackSetOperationResultsCommandInput;
|
|
@@ -29,6 +29,10 @@ export interface ListStackSetOperationsCommandOutput extends ListStackSetOperati
|
|
|
29
29
|
* @see {@link ListStackSetOperationsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link StackSetNotFoundException} (client fault)
|
|
33
|
+
* <p>The specified stack set doesn't exist.</p>
|
|
34
|
+
*
|
|
35
|
+
*
|
|
32
36
|
*/
|
|
33
37
|
export declare class ListStackSetOperationsCommand extends $Command<ListStackSetOperationsCommandInput, ListStackSetOperationsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
34
38
|
readonly input: ListStackSetOperationsCommandInput;
|
|
@@ -47,6 +47,7 @@ export interface ListStackSetsCommandOutput extends ListStackSetsOutput, __Metad
|
|
|
47
47
|
* @see {@link ListStackSetsCommandOutput} for command's `response` shape.
|
|
48
48
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
49
49
|
*
|
|
50
|
+
*
|
|
50
51
|
*/
|
|
51
52
|
export declare class ListStackSetsCommand extends $Command<ListStackSetsCommandInput, ListStackSetsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
52
53
|
readonly input: ListStackSetsCommandInput;
|
|
@@ -33,6 +33,7 @@ export interface ListStacksCommandOutput extends ListStacksOutput, __MetadataBea
|
|
|
33
33
|
* @see {@link ListStacksCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
*
|
|
36
37
|
*/
|
|
37
38
|
export declare class ListStacksCommand extends $Command<ListStacksCommandInput, ListStacksCommandOutput, CloudFormationClientResolvedConfig> {
|
|
38
39
|
readonly input: ListStacksCommandInput;
|
|
@@ -29,6 +29,10 @@ export interface ListTypeRegistrationsCommandOutput extends ListTypeRegistration
|
|
|
29
29
|
* @see {@link ListTypeRegistrationsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link CFNRegistryException} (client fault)
|
|
33
|
+
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
34
|
+
*
|
|
35
|
+
*
|
|
32
36
|
*/
|
|
33
37
|
export declare class ListTypeRegistrationsCommand extends $Command<ListTypeRegistrationsCommandInput, ListTypeRegistrationsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
34
38
|
readonly input: ListTypeRegistrationsCommandInput;
|
|
@@ -29,6 +29,10 @@ export interface ListTypeVersionsCommandOutput extends ListTypeVersionsOutput, _
|
|
|
29
29
|
* @see {@link ListTypeVersionsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link CFNRegistryException} (client fault)
|
|
33
|
+
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
34
|
+
*
|
|
35
|
+
*
|
|
32
36
|
*/
|
|
33
37
|
export declare class ListTypeVersionsCommand extends $Command<ListTypeVersionsCommandInput, ListTypeVersionsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
34
38
|
readonly input: ListTypeVersionsCommandInput;
|
|
@@ -29,6 +29,10 @@ export interface ListTypesCommandOutput extends ListTypesOutput, __MetadataBeare
|
|
|
29
29
|
* @see {@link ListTypesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link CFNRegistryException} (client fault)
|
|
33
|
+
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
34
|
+
*
|
|
35
|
+
*
|
|
32
36
|
*/
|
|
33
37
|
export declare class ListTypesCommand extends $Command<ListTypesCommandInput, ListTypesCommandOutput, CloudFormationClientResolvedConfig> {
|
|
34
38
|
readonly input: ListTypesCommandInput;
|
|
@@ -32,6 +32,13 @@ export interface PublishTypeCommandOutput extends PublishTypeOutput, __MetadataB
|
|
|
32
32
|
* @see {@link PublishTypeCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link CFNRegistryException} (client fault)
|
|
36
|
+
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link TypeNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
35
42
|
*/
|
|
36
43
|
export declare class PublishTypeCommand extends $Command<PublishTypeCommandInput, PublishTypeCommandOutput, CloudFormationClientResolvedConfig> {
|
|
37
44
|
readonly input: PublishTypeCommandInput;
|
|
@@ -30,6 +30,15 @@ export interface RecordHandlerProgressCommandOutput extends RecordHandlerProgres
|
|
|
30
30
|
* @see {@link RecordHandlerProgressCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InvalidStateTransitionException} (client fault)
|
|
34
|
+
* <p>Error reserved for use by the <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/what-is-cloudformation-cli.html">CloudFormation CLI</a>. CloudFormation doesn't return this error to
|
|
35
|
+
* users.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link OperationStatusCheckFailedException} (client fault)
|
|
38
|
+
* <p>Error reserved for use by the <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/what-is-cloudformation-cli.html">CloudFormation CLI</a>. CloudFormation doesn't return this error to
|
|
39
|
+
* users.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
33
42
|
*/
|
|
34
43
|
export declare class RecordHandlerProgressCommand extends $Command<RecordHandlerProgressCommandInput, RecordHandlerProgressCommandOutput, CloudFormationClientResolvedConfig> {
|
|
35
44
|
readonly input: RecordHandlerProgressCommandInput;
|
|
@@ -35,6 +35,10 @@ export interface RegisterPublisherCommandOutput extends RegisterPublisherOutput,
|
|
|
35
35
|
* @see {@link RegisterPublisherCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link CFNRegistryException} (client fault)
|
|
39
|
+
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
38
42
|
*/
|
|
39
43
|
export declare class RegisterPublisherCommand extends $Command<RegisterPublisherCommandInput, RegisterPublisherCommandOutput, CloudFormationClientResolvedConfig> {
|
|
40
44
|
readonly input: RegisterPublisherCommandInput;
|
|
@@ -55,6 +55,10 @@ export interface RegisterTypeCommandOutput extends RegisterTypeOutput, __Metadat
|
|
|
55
55
|
* @see {@link RegisterTypeCommandOutput} for command's `response` shape.
|
|
56
56
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
57
57
|
*
|
|
58
|
+
* @throws {@link CFNRegistryException} (client fault)
|
|
59
|
+
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
60
|
+
*
|
|
61
|
+
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class RegisterTypeCommand extends $Command<RegisterTypeCommandInput, RegisterTypeCommandOutput, CloudFormationClientResolvedConfig> {
|
|
60
64
|
readonly input: RegisterTypeCommandInput;
|
|
@@ -63,6 +63,10 @@ export interface RollbackStackCommandOutput extends RollbackStackOutput, __Metad
|
|
|
63
63
|
* @see {@link RollbackStackCommandOutput} for command's `response` shape.
|
|
64
64
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
65
65
|
*
|
|
66
|
+
* @throws {@link TokenAlreadyExistsException} (client fault)
|
|
67
|
+
* <p>A client request token already exists.</p>
|
|
68
|
+
*
|
|
69
|
+
*
|
|
66
70
|
*/
|
|
67
71
|
export declare class RollbackStackCommand extends $Command<RollbackStackCommandInput, RollbackStackCommandOutput, CloudFormationClientResolvedConfig> {
|
|
68
72
|
readonly input: RollbackStackCommandInput;
|
|
@@ -29,6 +29,7 @@ export interface SetStackPolicyCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link SetStackPolicyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
*
|
|
32
33
|
*/
|
|
33
34
|
export declare class SetStackPolicyCommand extends $Command<SetStackPolicyCommandInput, SetStackPolicyCommandOutput, CloudFormationClientResolvedConfig> {
|
|
34
35
|
readonly input: SetStackPolicyCommandInput;
|
|
@@ -41,6 +41,13 @@ export interface SetTypeConfigurationCommandOutput extends SetTypeConfigurationO
|
|
|
41
41
|
* @see {@link SetTypeConfigurationCommandOutput} for command's `response` shape.
|
|
42
42
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
43
43
|
*
|
|
44
|
+
* @throws {@link CFNRegistryException} (client fault)
|
|
45
|
+
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link TypeNotFoundException} (client fault)
|
|
48
|
+
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
44
51
|
*/
|
|
45
52
|
export declare class SetTypeConfigurationCommand extends $Command<SetTypeConfigurationCommandInput, SetTypeConfigurationCommandOutput, CloudFormationClientResolvedConfig> {
|
|
46
53
|
readonly input: SetTypeConfigurationCommandInput;
|
|
@@ -30,6 +30,13 @@ export interface SetTypeDefaultVersionCommandOutput extends SetTypeDefaultVersio
|
|
|
30
30
|
* @see {@link SetTypeDefaultVersionCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link CFNRegistryException} (client fault)
|
|
34
|
+
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link TypeNotFoundException} (client fault)
|
|
37
|
+
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
33
40
|
*/
|
|
34
41
|
export declare class SetTypeDefaultVersionCommand extends $Command<SetTypeDefaultVersionCommandInput, SetTypeDefaultVersionCommandOutput, CloudFormationClientResolvedConfig> {
|
|
35
42
|
readonly input: SetTypeDefaultVersionCommandInput;
|
|
@@ -34,6 +34,7 @@ export interface SignalResourceCommandOutput extends __MetadataBearer {
|
|
|
34
34
|
* @see {@link SignalResourceCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
*
|
|
37
38
|
*/
|
|
38
39
|
export declare class SignalResourceCommand extends $Command<SignalResourceCommandInput, SignalResourceCommandOutput, CloudFormationClientResolvedConfig> {
|
|
39
40
|
readonly input: SignalResourceCommandInput;
|
|
@@ -31,6 +31,16 @@ export interface StopStackSetOperationCommandOutput extends StopStackSetOperatio
|
|
|
31
31
|
* @see {@link StopStackSetOperationCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InvalidOperationException} (client fault)
|
|
35
|
+
* <p>The specified operation isn't valid.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link OperationNotFoundException} (client fault)
|
|
38
|
+
* <p>The specified ID refers to an operation that doesn't exist.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link StackSetNotFoundException} (client fault)
|
|
41
|
+
* <p>The specified stack set doesn't exist.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
34
44
|
*/
|
|
35
45
|
export declare class StopStackSetOperationCommand extends $Command<StopStackSetOperationCommandInput, StopStackSetOperationCommandOutput, CloudFormationClientResolvedConfig> {
|
|
36
46
|
readonly input: StopStackSetOperationCommandInput;
|
|
@@ -51,6 +51,13 @@ export interface TestTypeCommandOutput extends TestTypeOutput, __MetadataBearer
|
|
|
51
51
|
* @see {@link TestTypeCommandOutput} for command's `response` shape.
|
|
52
52
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
53
53
|
*
|
|
54
|
+
* @throws {@link CFNRegistryException} (client fault)
|
|
55
|
+
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link TypeNotFoundException} (client fault)
|
|
58
|
+
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
59
|
+
*
|
|
60
|
+
*
|
|
54
61
|
*/
|
|
55
62
|
export declare class TestTypeCommand extends $Command<TestTypeCommandInput, TestTypeCommandOutput, CloudFormationClientResolvedConfig> {
|
|
56
63
|
readonly input: TestTypeCommandInput;
|
|
@@ -34,6 +34,14 @@ export interface UpdateStackCommandOutput extends UpdateStackOutput, __MetadataB
|
|
|
34
34
|
* @see {@link UpdateStackCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link InsufficientCapabilitiesException} (client fault)
|
|
38
|
+
* <p>The template contains resources with capabilities that weren't specified in the
|
|
39
|
+
* Capabilities parameter.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TokenAlreadyExistsException} (client fault)
|
|
42
|
+
* <p>A client request token already exists.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
37
45
|
*/
|
|
38
46
|
export declare class UpdateStackCommand extends $Command<UpdateStackCommandInput, UpdateStackCommandOutput, CloudFormationClientResolvedConfig> {
|
|
39
47
|
readonly input: UpdateStackCommandInput;
|
|
@@ -42,6 +42,27 @@ export interface UpdateStackInstancesCommandOutput extends UpdateStackInstancesO
|
|
|
42
42
|
* @see {@link UpdateStackInstancesCommandOutput} for command's `response` shape.
|
|
43
43
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
44
44
|
*
|
|
45
|
+
* @throws {@link InvalidOperationException} (client fault)
|
|
46
|
+
* <p>The specified operation isn't valid.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link OperationIdAlreadyExistsException} (client fault)
|
|
49
|
+
* <p>The specified operation ID already exists.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link OperationInProgressException} (client fault)
|
|
52
|
+
* <p>Another operation is currently in progress for this stack set. Only one operation can be
|
|
53
|
+
* performed for a stack set at a given time.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link StackInstanceNotFoundException} (client fault)
|
|
56
|
+
* <p>The specified stack instance doesn't exist.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link StackSetNotFoundException} (client fault)
|
|
59
|
+
* <p>The specified stack set doesn't exist.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link StaleRequestException} (client fault)
|
|
62
|
+
* <p>Another operation has been performed on this stack set since the specified operation was
|
|
63
|
+
* performed.</p>
|
|
64
|
+
*
|
|
65
|
+
*
|
|
45
66
|
*/
|
|
46
67
|
export declare class UpdateStackInstancesCommand extends $Command<UpdateStackInstancesCommandInput, UpdateStackInstancesCommandOutput, CloudFormationClientResolvedConfig> {
|
|
47
68
|
readonly input: UpdateStackInstancesCommandInput;
|
|
@@ -34,6 +34,27 @@ export interface UpdateStackSetCommandOutput extends UpdateStackSetOutput, __Met
|
|
|
34
34
|
* @see {@link UpdateStackSetCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link InvalidOperationException} (client fault)
|
|
38
|
+
* <p>The specified operation isn't valid.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link OperationIdAlreadyExistsException} (client fault)
|
|
41
|
+
* <p>The specified operation ID already exists.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link OperationInProgressException} (client fault)
|
|
44
|
+
* <p>Another operation is currently in progress for this stack set. Only one operation can be
|
|
45
|
+
* performed for a stack set at a given time.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link StackInstanceNotFoundException} (client fault)
|
|
48
|
+
* <p>The specified stack instance doesn't exist.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link StackSetNotFoundException} (client fault)
|
|
51
|
+
* <p>The specified stack set doesn't exist.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link StaleRequestException} (client fault)
|
|
54
|
+
* <p>Another operation has been performed on this stack set since the specified operation was
|
|
55
|
+
* performed.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
37
58
|
*/
|
|
38
59
|
export declare class UpdateStackSetCommand extends $Command<UpdateStackSetCommandInput, UpdateStackSetCommandOutput, CloudFormationClientResolvedConfig> {
|
|
39
60
|
readonly input: UpdateStackSetCommandInput;
|
|
@@ -35,6 +35,7 @@ export interface UpdateTerminationProtectionCommandOutput extends UpdateTerminat
|
|
|
35
35
|
* @see {@link UpdateTerminationProtectionCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
*
|
|
38
39
|
*/
|
|
39
40
|
export declare class UpdateTerminationProtectionCommand extends $Command<UpdateTerminationProtectionCommandInput, UpdateTerminationProtectionCommandOutput, CloudFormationClientResolvedConfig> {
|
|
40
41
|
readonly input: UpdateTerminationProtectionCommandInput;
|
|
@@ -31,6 +31,7 @@ export interface ValidateTemplateCommandOutput extends ValidateTemplateOutput, _
|
|
|
31
31
|
* @see {@link ValidateTemplateCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
*
|
|
34
35
|
*/
|
|
35
36
|
export declare class ValidateTemplateCommand extends $Command<ValidateTemplateCommandInput, ValidateTemplateCommandOutput, CloudFormationClientResolvedConfig> {
|
|
36
37
|
readonly input: ValidateTemplateCommandInput;
|
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.290.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",
|
|
@@ -20,39 +20,39 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
|
-
"@aws-sdk/util-waiter": "3.
|
|
55
|
+
"@aws-sdk/util-waiter": "3.290.0",
|
|
56
56
|
"fast-xml-parser": "4.1.2",
|
|
57
57
|
"tslib": "^2.3.1",
|
|
58
58
|
"uuid": "^8.3.2"
|