@aws-sdk/client-cloudformation 3.325.0 → 3.327.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 +7 -7
|
@@ -48,6 +48,10 @@ export interface ActivateTypeCommandOutput extends ActivateTypeOutput, __Metadat
|
|
|
48
48
|
* };
|
|
49
49
|
* const command = new ActivateTypeCommand(input);
|
|
50
50
|
* const response = await client.send(command);
|
|
51
|
+
* // { // ActivateTypeOutput
|
|
52
|
+
* // Arn: "STRING_VALUE",
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
51
55
|
* ```
|
|
52
56
|
*
|
|
53
57
|
* @param ActivateTypeCommandInput - {@link ActivateTypeCommandInput}
|
|
@@ -62,6 +66,8 @@ export interface ActivateTypeCommandOutput extends ActivateTypeOutput, __Metadat
|
|
|
62
66
|
* @throws {@link TypeNotFoundException} (client fault)
|
|
63
67
|
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
64
68
|
*
|
|
69
|
+
* @throws {@link CloudFormationServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
65
71
|
*
|
|
66
72
|
*/
|
|
67
73
|
export declare class ActivateTypeCommand extends $Command<ActivateTypeCommandInput, ActivateTypeCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -42,6 +42,42 @@ export interface BatchDescribeTypeConfigurationsCommandOutput extends BatchDescr
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new BatchDescribeTypeConfigurationsCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // BatchDescribeTypeConfigurationsOutput
|
|
46
|
+
* // Errors: [ // BatchDescribeTypeConfigurationsErrors
|
|
47
|
+
* // { // BatchDescribeTypeConfigurationsError
|
|
48
|
+
* // ErrorCode: "STRING_VALUE",
|
|
49
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
50
|
+
* // TypeConfigurationIdentifier: { // TypeConfigurationIdentifier
|
|
51
|
+
* // TypeArn: "STRING_VALUE",
|
|
52
|
+
* // TypeConfigurationAlias: "STRING_VALUE",
|
|
53
|
+
* // TypeConfigurationArn: "STRING_VALUE",
|
|
54
|
+
* // Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
55
|
+
* // TypeName: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // UnprocessedTypeConfigurations: [ // UnprocessedTypeConfigurations
|
|
60
|
+
* // {
|
|
61
|
+
* // TypeArn: "STRING_VALUE",
|
|
62
|
+
* // TypeConfigurationAlias: "STRING_VALUE",
|
|
63
|
+
* // TypeConfigurationArn: "STRING_VALUE",
|
|
64
|
+
* // Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
65
|
+
* // TypeName: "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // ],
|
|
68
|
+
* // TypeConfigurations: [ // TypeConfigurationDetailsList
|
|
69
|
+
* // { // TypeConfigurationDetails
|
|
70
|
+
* // Arn: "STRING_VALUE",
|
|
71
|
+
* // Alias: "STRING_VALUE",
|
|
72
|
+
* // Configuration: "STRING_VALUE",
|
|
73
|
+
* // LastUpdated: new Date("TIMESTAMP"),
|
|
74
|
+
* // TypeArn: "STRING_VALUE",
|
|
75
|
+
* // TypeName: "STRING_VALUE",
|
|
76
|
+
* // IsDefaultConfiguration: true || false,
|
|
77
|
+
* // },
|
|
78
|
+
* // ],
|
|
79
|
+
* // };
|
|
80
|
+
*
|
|
45
81
|
* ```
|
|
46
82
|
*
|
|
47
83
|
* @param BatchDescribeTypeConfigurationsCommandInput - {@link BatchDescribeTypeConfigurationsCommandInput}
|
|
@@ -56,6 +92,8 @@ export interface BatchDescribeTypeConfigurationsCommandOutput extends BatchDescr
|
|
|
56
92
|
* @throws {@link TypeConfigurationNotFoundException} (client fault)
|
|
57
93
|
* <p>The specified extension configuration can't be found.</p>
|
|
58
94
|
*
|
|
95
|
+
* @throws {@link CloudFormationServiceException}
|
|
96
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
59
97
|
*
|
|
60
98
|
*/
|
|
61
99
|
export declare class BatchDescribeTypeConfigurationsCommand extends $Command<BatchDescribeTypeConfigurationsCommandInput, BatchDescribeTypeConfigurationsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -37,6 +37,8 @@ export interface CancelUpdateStackCommandOutput extends __MetadataBearer {
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new CancelUpdateStackCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // {};
|
|
41
|
+
*
|
|
40
42
|
* ```
|
|
41
43
|
*
|
|
42
44
|
* @param CancelUpdateStackCommandInput - {@link CancelUpdateStackCommandInput}
|
|
@@ -48,6 +50,8 @@ export interface CancelUpdateStackCommandOutput extends __MetadataBearer {
|
|
|
48
50
|
* @throws {@link TokenAlreadyExistsException} (client fault)
|
|
49
51
|
* <p>A client request token already exists.</p>
|
|
50
52
|
*
|
|
53
|
+
* @throws {@link CloudFormationServiceException}
|
|
54
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
51
55
|
*
|
|
52
56
|
*/
|
|
53
57
|
export declare class CancelUpdateStackCommand extends $Command<CancelUpdateStackCommandInput, CancelUpdateStackCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -45,6 +45,8 @@ export interface ContinueUpdateRollbackCommandOutput extends ContinueUpdateRollb
|
|
|
45
45
|
* };
|
|
46
46
|
* const command = new ContinueUpdateRollbackCommand(input);
|
|
47
47
|
* const response = await client.send(command);
|
|
48
|
+
* // {};
|
|
49
|
+
*
|
|
48
50
|
* ```
|
|
49
51
|
*
|
|
50
52
|
* @param ContinueUpdateRollbackCommandInput - {@link ContinueUpdateRollbackCommandInput}
|
|
@@ -56,6 +58,8 @@ export interface ContinueUpdateRollbackCommandOutput extends ContinueUpdateRollb
|
|
|
56
58
|
* @throws {@link TokenAlreadyExistsException} (client fault)
|
|
57
59
|
* <p>A client request token already exists.</p>
|
|
58
60
|
*
|
|
61
|
+
* @throws {@link CloudFormationServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
59
63
|
*
|
|
60
64
|
*/
|
|
61
65
|
export declare class ContinueUpdateRollbackCommand extends $Command<ContinueUpdateRollbackCommandInput, ContinueUpdateRollbackCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -101,6 +101,11 @@ export interface CreateChangeSetCommandOutput extends CreateChangeSetOutput, __M
|
|
|
101
101
|
* };
|
|
102
102
|
* const command = new CreateChangeSetCommand(input);
|
|
103
103
|
* const response = await client.send(command);
|
|
104
|
+
* // { // CreateChangeSetOutput
|
|
105
|
+
* // Id: "STRING_VALUE",
|
|
106
|
+
* // StackId: "STRING_VALUE",
|
|
107
|
+
* // };
|
|
108
|
+
*
|
|
104
109
|
* ```
|
|
105
110
|
*
|
|
106
111
|
* @param CreateChangeSetCommandInput - {@link CreateChangeSetCommandInput}
|
|
@@ -121,6 +126,8 @@ export interface CreateChangeSetCommandOutput extends CreateChangeSetOutput, __M
|
|
|
121
126
|
* <p>For information about resource and stack limitations, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html">CloudFormation
|
|
122
127
|
* quotas</a> in the <i>CloudFormation User Guide</i>.</p>
|
|
123
128
|
*
|
|
129
|
+
* @throws {@link CloudFormationServiceException}
|
|
130
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
124
131
|
*
|
|
125
132
|
*/
|
|
126
133
|
export declare class CreateChangeSetCommand extends $Command<CreateChangeSetCommandInput, CreateChangeSetCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -74,6 +74,10 @@ export interface CreateStackCommandOutput extends CreateStackOutput, __MetadataB
|
|
|
74
74
|
* };
|
|
75
75
|
* const command = new CreateStackCommand(input);
|
|
76
76
|
* const response = await client.send(command);
|
|
77
|
+
* // { // CreateStackOutput
|
|
78
|
+
* // StackId: "STRING_VALUE",
|
|
79
|
+
* // };
|
|
80
|
+
*
|
|
77
81
|
* ```
|
|
78
82
|
*
|
|
79
83
|
* @param CreateStackCommandInput - {@link CreateStackCommandInput}
|
|
@@ -97,6 +101,8 @@ export interface CreateStackCommandOutput extends CreateStackOutput, __MetadataB
|
|
|
97
101
|
* @throws {@link TokenAlreadyExistsException} (client fault)
|
|
98
102
|
* <p>A client request token already exists.</p>
|
|
99
103
|
*
|
|
104
|
+
* @throws {@link CloudFormationServiceException}
|
|
105
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
100
106
|
*
|
|
101
107
|
*/
|
|
102
108
|
export declare class CreateStackCommand extends $Command<CreateStackCommandInput, CreateStackCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -70,6 +70,10 @@ export interface CreateStackInstancesCommandOutput extends CreateStackInstancesO
|
|
|
70
70
|
* };
|
|
71
71
|
* const command = new CreateStackInstancesCommand(input);
|
|
72
72
|
* const response = await client.send(command);
|
|
73
|
+
* // { // CreateStackInstancesOutput
|
|
74
|
+
* // OperationId: "STRING_VALUE",
|
|
75
|
+
* // };
|
|
76
|
+
*
|
|
73
77
|
* ```
|
|
74
78
|
*
|
|
75
79
|
* @param CreateStackInstancesCommandInput - {@link CreateStackInstancesCommandInput}
|
|
@@ -100,6 +104,8 @@ export interface CreateStackInstancesCommandOutput extends CreateStackInstancesO
|
|
|
100
104
|
* <p>Another operation has been performed on this stack set since the specified operation was
|
|
101
105
|
* performed.</p>
|
|
102
106
|
*
|
|
107
|
+
* @throws {@link CloudFormationServiceException}
|
|
108
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
103
109
|
*
|
|
104
110
|
*/
|
|
105
111
|
export declare class CreateStackInstancesCommand extends $Command<CreateStackInstancesCommandInput, CreateStackInstancesCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -64,6 +64,10 @@ export interface CreateStackSetCommandOutput extends CreateStackSetOutput, __Met
|
|
|
64
64
|
* };
|
|
65
65
|
* const command = new CreateStackSetCommand(input);
|
|
66
66
|
* const response = await client.send(command);
|
|
67
|
+
* // { // CreateStackSetOutput
|
|
68
|
+
* // StackSetId: "STRING_VALUE",
|
|
69
|
+
* // };
|
|
70
|
+
*
|
|
67
71
|
* ```
|
|
68
72
|
*
|
|
69
73
|
* @param CreateStackSetCommandInput - {@link CreateStackSetCommandInput}
|
|
@@ -83,6 +87,8 @@ export interface CreateStackSetCommandOutput extends CreateStackSetOutput, __Met
|
|
|
83
87
|
* @throws {@link NameAlreadyExistsException} (client fault)
|
|
84
88
|
* <p>The specified name is already in use.</p>
|
|
85
89
|
*
|
|
90
|
+
* @throws {@link CloudFormationServiceException}
|
|
91
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
86
92
|
*
|
|
87
93
|
*/
|
|
88
94
|
export declare class CreateStackSetCommand extends $Command<CreateStackSetCommandInput, CreateStackSetCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -38,6 +38,8 @@ export interface DeactivateTypeCommandOutput extends DeactivateTypeOutput, __Met
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new DeactivateTypeCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // {};
|
|
42
|
+
*
|
|
41
43
|
* ```
|
|
42
44
|
*
|
|
43
45
|
* @param DeactivateTypeCommandInput - {@link DeactivateTypeCommandInput}
|
|
@@ -52,6 +54,8 @@ export interface DeactivateTypeCommandOutput extends DeactivateTypeOutput, __Met
|
|
|
52
54
|
* @throws {@link TypeNotFoundException} (client fault)
|
|
53
55
|
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
54
56
|
*
|
|
57
|
+
* @throws {@link CloudFormationServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
55
59
|
*
|
|
56
60
|
*/
|
|
57
61
|
export declare class DeactivateTypeCommand extends $Command<DeactivateTypeCommandInput, DeactivateTypeCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -39,6 +39,8 @@ export interface DeleteChangeSetCommandOutput extends DeleteChangeSetOutput, __M
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new DeleteChangeSetCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // {};
|
|
43
|
+
*
|
|
42
44
|
* ```
|
|
43
45
|
*
|
|
44
46
|
* @param DeleteChangeSetCommandInput - {@link DeleteChangeSetCommandInput}
|
|
@@ -52,6 +54,8 @@ export interface DeleteChangeSetCommandOutput extends DeleteChangeSetOutput, __M
|
|
|
52
54
|
* status might be <code>CREATE_IN_PROGRESS</code>, or the stack status might be
|
|
53
55
|
* <code>UPDATE_IN_PROGRESS</code>.</p>
|
|
54
56
|
*
|
|
57
|
+
* @throws {@link CloudFormationServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
55
59
|
*
|
|
56
60
|
*/
|
|
57
61
|
export declare class DeleteChangeSetCommand extends $Command<DeleteChangeSetCommandInput, DeleteChangeSetCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -38,6 +38,8 @@ export interface DeleteStackCommandOutput extends __MetadataBearer {
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new DeleteStackCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // {};
|
|
42
|
+
*
|
|
41
43
|
* ```
|
|
42
44
|
*
|
|
43
45
|
* @param DeleteStackCommandInput - {@link DeleteStackCommandInput}
|
|
@@ -49,6 +51,8 @@ export interface DeleteStackCommandOutput extends __MetadataBearer {
|
|
|
49
51
|
* @throws {@link TokenAlreadyExistsException} (client fault)
|
|
50
52
|
* <p>A client request token already exists.</p>
|
|
51
53
|
*
|
|
54
|
+
* @throws {@link CloudFormationServiceException}
|
|
55
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
52
56
|
*
|
|
53
57
|
*/
|
|
54
58
|
export declare class DeleteStackCommand extends $Command<DeleteStackCommandInput, DeleteStackCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -60,6 +60,10 @@ export interface DeleteStackInstancesCommandOutput extends DeleteStackInstancesO
|
|
|
60
60
|
* };
|
|
61
61
|
* const command = new DeleteStackInstancesCommand(input);
|
|
62
62
|
* const response = await client.send(command);
|
|
63
|
+
* // { // DeleteStackInstancesOutput
|
|
64
|
+
* // OperationId: "STRING_VALUE",
|
|
65
|
+
* // };
|
|
66
|
+
*
|
|
63
67
|
* ```
|
|
64
68
|
*
|
|
65
69
|
* @param DeleteStackInstancesCommandInput - {@link DeleteStackInstancesCommandInput}
|
|
@@ -85,6 +89,8 @@ export interface DeleteStackInstancesCommandOutput extends DeleteStackInstancesO
|
|
|
85
89
|
* <p>Another operation has been performed on this stack set since the specified operation was
|
|
86
90
|
* performed.</p>
|
|
87
91
|
*
|
|
92
|
+
* @throws {@link CloudFormationServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
88
94
|
*
|
|
89
95
|
*/
|
|
90
96
|
export declare class DeleteStackInstancesCommand extends $Command<DeleteStackInstancesCommandInput, DeleteStackInstancesCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface DeleteStackSetCommandOutput extends DeleteStackSetOutput, __Met
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteStackSetCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param DeleteStackSetCommandInput - {@link DeleteStackSetCommandInput}
|
|
@@ -50,6 +52,8 @@ export interface DeleteStackSetCommandOutput extends DeleteStackSetOutput, __Met
|
|
|
50
52
|
* instances. Delete all stack instances from the stack set before deleting the stack
|
|
51
53
|
* set.</p>
|
|
52
54
|
*
|
|
55
|
+
* @throws {@link CloudFormationServiceException}
|
|
56
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
53
57
|
*
|
|
54
58
|
*/
|
|
55
59
|
export declare class DeleteStackSetCommand extends $Command<DeleteStackSetCommandInput, DeleteStackSetCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -43,6 +43,8 @@ export interface DeregisterTypeCommandOutput extends DeregisterTypeOutput, __Met
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new DeregisterTypeCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // {};
|
|
47
|
+
*
|
|
46
48
|
* ```
|
|
47
49
|
*
|
|
48
50
|
* @param DeregisterTypeCommandInput - {@link DeregisterTypeCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface DeregisterTypeCommandOutput extends DeregisterTypeOutput, __Met
|
|
|
57
59
|
* @throws {@link TypeNotFoundException} (client fault)
|
|
58
60
|
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link CloudFormationServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class DeregisterTypeCommand extends $Command<DeregisterTypeCommandInput, DeregisterTypeCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -33,6 +33,16 @@ export interface DescribeAccountLimitsCommandOutput extends DescribeAccountLimit
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DescribeAccountLimitsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DescribeAccountLimitsOutput
|
|
37
|
+
* // AccountLimits: [ // AccountLimitList
|
|
38
|
+
* // { // AccountLimit
|
|
39
|
+
* // Name: "STRING_VALUE",
|
|
40
|
+
* // Value: Number("int"),
|
|
41
|
+
* // },
|
|
42
|
+
* // ],
|
|
43
|
+
* // NextToken: "STRING_VALUE",
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
36
46
|
* ```
|
|
37
47
|
*
|
|
38
48
|
* @param DescribeAccountLimitsCommandInput - {@link DescribeAccountLimitsCommandInput}
|
|
@@ -41,6 +51,8 @@ export interface DescribeAccountLimitsCommandOutput extends DescribeAccountLimit
|
|
|
41
51
|
* @see {@link DescribeAccountLimitsCommandOutput} for command's `response` shape.
|
|
42
52
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
43
53
|
*
|
|
54
|
+
* @throws {@link CloudFormationServiceException}
|
|
55
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
44
56
|
*
|
|
45
57
|
*/
|
|
46
58
|
export declare class DescribeAccountLimitsCommand extends $Command<DescribeAccountLimitsCommandInput, DescribeAccountLimitsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -34,6 +34,84 @@ export interface DescribeChangeSetCommandOutput extends DescribeChangeSetOutput,
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DescribeChangeSetCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // DescribeChangeSetOutput
|
|
38
|
+
* // ChangeSetName: "STRING_VALUE",
|
|
39
|
+
* // ChangeSetId: "STRING_VALUE",
|
|
40
|
+
* // StackId: "STRING_VALUE",
|
|
41
|
+
* // StackName: "STRING_VALUE",
|
|
42
|
+
* // Description: "STRING_VALUE",
|
|
43
|
+
* // Parameters: [ // Parameters
|
|
44
|
+
* // { // Parameter
|
|
45
|
+
* // ParameterKey: "STRING_VALUE",
|
|
46
|
+
* // ParameterValue: "STRING_VALUE",
|
|
47
|
+
* // UsePreviousValue: true || false,
|
|
48
|
+
* // ResolvedValue: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
52
|
+
* // ExecutionStatus: "UNAVAILABLE" || "AVAILABLE" || "EXECUTE_IN_PROGRESS" || "EXECUTE_COMPLETE" || "EXECUTE_FAILED" || "OBSOLETE",
|
|
53
|
+
* // Status: "CREATE_PENDING" || "CREATE_IN_PROGRESS" || "CREATE_COMPLETE" || "DELETE_PENDING" || "DELETE_IN_PROGRESS" || "DELETE_COMPLETE" || "DELETE_FAILED" || "FAILED",
|
|
54
|
+
* // StatusReason: "STRING_VALUE",
|
|
55
|
+
* // NotificationARNs: [ // NotificationARNs
|
|
56
|
+
* // "STRING_VALUE",
|
|
57
|
+
* // ],
|
|
58
|
+
* // RollbackConfiguration: { // RollbackConfiguration
|
|
59
|
+
* // RollbackTriggers: [ // RollbackTriggers
|
|
60
|
+
* // { // RollbackTrigger
|
|
61
|
+
* // Arn: "STRING_VALUE", // required
|
|
62
|
+
* // Type: "STRING_VALUE", // required
|
|
63
|
+
* // },
|
|
64
|
+
* // ],
|
|
65
|
+
* // MonitoringTimeInMinutes: Number("int"),
|
|
66
|
+
* // },
|
|
67
|
+
* // Capabilities: [ // Capabilities
|
|
68
|
+
* // "CAPABILITY_IAM" || "CAPABILITY_NAMED_IAM" || "CAPABILITY_AUTO_EXPAND",
|
|
69
|
+
* // ],
|
|
70
|
+
* // Tags: [ // Tags
|
|
71
|
+
* // { // Tag
|
|
72
|
+
* // Key: "STRING_VALUE", // required
|
|
73
|
+
* // Value: "STRING_VALUE", // required
|
|
74
|
+
* // },
|
|
75
|
+
* // ],
|
|
76
|
+
* // Changes: [ // Changes
|
|
77
|
+
* // { // Change
|
|
78
|
+
* // Type: "Resource",
|
|
79
|
+
* // HookInvocationCount: Number("int"),
|
|
80
|
+
* // ResourceChange: { // ResourceChange
|
|
81
|
+
* // Action: "Add" || "Modify" || "Remove" || "Import" || "Dynamic",
|
|
82
|
+
* // LogicalResourceId: "STRING_VALUE",
|
|
83
|
+
* // PhysicalResourceId: "STRING_VALUE",
|
|
84
|
+
* // ResourceType: "STRING_VALUE",
|
|
85
|
+
* // Replacement: "True" || "False" || "Conditional",
|
|
86
|
+
* // Scope: [ // Scope
|
|
87
|
+
* // "Properties" || "Metadata" || "CreationPolicy" || "UpdatePolicy" || "DeletionPolicy" || "Tags",
|
|
88
|
+
* // ],
|
|
89
|
+
* // Details: [ // ResourceChangeDetails
|
|
90
|
+
* // { // ResourceChangeDetail
|
|
91
|
+
* // Target: { // ResourceTargetDefinition
|
|
92
|
+
* // Attribute: "Properties" || "Metadata" || "CreationPolicy" || "UpdatePolicy" || "DeletionPolicy" || "Tags",
|
|
93
|
+
* // Name: "STRING_VALUE",
|
|
94
|
+
* // RequiresRecreation: "Never" || "Conditionally" || "Always",
|
|
95
|
+
* // },
|
|
96
|
+
* // Evaluation: "Static" || "Dynamic",
|
|
97
|
+
* // ChangeSource: "ResourceReference" || "ParameterReference" || "ResourceAttribute" || "DirectModification" || "Automatic",
|
|
98
|
+
* // CausingEntity: "STRING_VALUE",
|
|
99
|
+
* // },
|
|
100
|
+
* // ],
|
|
101
|
+
* // ChangeSetId: "STRING_VALUE",
|
|
102
|
+
* // ModuleInfo: { // ModuleInfo
|
|
103
|
+
* // TypeHierarchy: "STRING_VALUE",
|
|
104
|
+
* // LogicalIdHierarchy: "STRING_VALUE",
|
|
105
|
+
* // },
|
|
106
|
+
* // },
|
|
107
|
+
* // },
|
|
108
|
+
* // ],
|
|
109
|
+
* // NextToken: "STRING_VALUE",
|
|
110
|
+
* // IncludeNestedStacks: true || false,
|
|
111
|
+
* // ParentChangeSetId: "STRING_VALUE",
|
|
112
|
+
* // RootChangeSetId: "STRING_VALUE",
|
|
113
|
+
* // };
|
|
114
|
+
*
|
|
37
115
|
* ```
|
|
38
116
|
*
|
|
39
117
|
* @param DescribeChangeSetCommandInput - {@link DescribeChangeSetCommandInput}
|
|
@@ -46,6 +124,8 @@ export interface DescribeChangeSetCommandOutput extends DescribeChangeSetOutput,
|
|
|
46
124
|
* <p>The specified change set name or ID doesn't exit. To view valid change sets for a stack,
|
|
47
125
|
* use the <code>ListChangeSets</code> operation.</p>
|
|
48
126
|
*
|
|
127
|
+
* @throws {@link CloudFormationServiceException}
|
|
128
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
49
129
|
*
|
|
50
130
|
*/
|
|
51
131
|
export declare class DescribeChangeSetCommand extends $Command<DescribeChangeSetCommandInput, DescribeChangeSetCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -34,6 +34,32 @@ export interface DescribeChangeSetHooksCommandOutput extends DescribeChangeSetHo
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DescribeChangeSetHooksCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // DescribeChangeSetHooksOutput
|
|
38
|
+
* // ChangeSetId: "STRING_VALUE",
|
|
39
|
+
* // ChangeSetName: "STRING_VALUE",
|
|
40
|
+
* // Hooks: [ // ChangeSetHooks
|
|
41
|
+
* // { // ChangeSetHook
|
|
42
|
+
* // InvocationPoint: "PRE_PROVISION",
|
|
43
|
+
* // FailureMode: "FAIL" || "WARN",
|
|
44
|
+
* // TypeName: "STRING_VALUE",
|
|
45
|
+
* // TypeVersionId: "STRING_VALUE",
|
|
46
|
+
* // TypeConfigurationVersionId: "STRING_VALUE",
|
|
47
|
+
* // TargetDetails: { // ChangeSetHookTargetDetails
|
|
48
|
+
* // TargetType: "RESOURCE",
|
|
49
|
+
* // ResourceTargetDetails: { // ChangeSetHookResourceTargetDetails
|
|
50
|
+
* // LogicalResourceId: "STRING_VALUE",
|
|
51
|
+
* // ResourceType: "STRING_VALUE",
|
|
52
|
+
* // ResourceAction: "Add" || "Modify" || "Remove" || "Import" || "Dynamic",
|
|
53
|
+
* // },
|
|
54
|
+
* // },
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // Status: "PLANNING" || "PLANNED" || "UNAVAILABLE",
|
|
58
|
+
* // NextToken: "STRING_VALUE",
|
|
59
|
+
* // StackId: "STRING_VALUE",
|
|
60
|
+
* // StackName: "STRING_VALUE",
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
37
63
|
* ```
|
|
38
64
|
*
|
|
39
65
|
* @param DescribeChangeSetHooksCommandInput - {@link DescribeChangeSetHooksCommandInput}
|
|
@@ -46,6 +72,8 @@ export interface DescribeChangeSetHooksCommandOutput extends DescribeChangeSetHo
|
|
|
46
72
|
* <p>The specified change set name or ID doesn't exit. To view valid change sets for a stack,
|
|
47
73
|
* use the <code>ListChangeSets</code> operation.</p>
|
|
48
74
|
*
|
|
75
|
+
* @throws {@link CloudFormationServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
49
77
|
*
|
|
50
78
|
*/
|
|
51
79
|
export declare class DescribeChangeSetHooksCommand extends $Command<DescribeChangeSetHooksCommandInput, DescribeChangeSetHooksCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -48,6 +48,13 @@ export interface DescribePublisherCommandOutput extends DescribePublisherOutput,
|
|
|
48
48
|
* };
|
|
49
49
|
* const command = new DescribePublisherCommand(input);
|
|
50
50
|
* const response = await client.send(command);
|
|
51
|
+
* // { // DescribePublisherOutput
|
|
52
|
+
* // PublisherId: "STRING_VALUE",
|
|
53
|
+
* // PublisherStatus: "VERIFIED" || "UNVERIFIED",
|
|
54
|
+
* // IdentityProvider: "AWS_Marketplace" || "GitHub" || "Bitbucket",
|
|
55
|
+
* // PublisherProfile: "STRING_VALUE",
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
51
58
|
* ```
|
|
52
59
|
*
|
|
53
60
|
* @param DescribePublisherCommandInput - {@link DescribePublisherCommandInput}
|
|
@@ -59,6 +66,8 @@ export interface DescribePublisherCommandOutput extends DescribePublisherOutput,
|
|
|
59
66
|
* @throws {@link CFNRegistryException} (client fault)
|
|
60
67
|
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
61
68
|
*
|
|
69
|
+
* @throws {@link CloudFormationServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
62
71
|
*
|
|
63
72
|
*/
|
|
64
73
|
export declare class DescribePublisherCommand extends $Command<DescribePublisherCommandInput, DescribePublisherCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -43,6 +43,16 @@ export interface DescribeStackDriftDetectionStatusCommandOutput extends Describe
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new DescribeStackDriftDetectionStatusCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // DescribeStackDriftDetectionStatusOutput
|
|
47
|
+
* // StackId: "STRING_VALUE", // required
|
|
48
|
+
* // StackDriftDetectionId: "STRING_VALUE", // required
|
|
49
|
+
* // StackDriftStatus: "DRIFTED" || "IN_SYNC" || "UNKNOWN" || "NOT_CHECKED",
|
|
50
|
+
* // DetectionStatus: "DETECTION_IN_PROGRESS" || "DETECTION_FAILED" || "DETECTION_COMPLETE", // required
|
|
51
|
+
* // DetectionStatusReason: "STRING_VALUE",
|
|
52
|
+
* // DriftedStackResourceCount: Number("int"),
|
|
53
|
+
* // Timestamp: new Date("TIMESTAMP"), // required
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
46
56
|
* ```
|
|
47
57
|
*
|
|
48
58
|
* @param DescribeStackDriftDetectionStatusCommandInput - {@link DescribeStackDriftDetectionStatusCommandInput}
|
|
@@ -51,6 +61,8 @@ export interface DescribeStackDriftDetectionStatusCommandOutput extends Describe
|
|
|
51
61
|
* @see {@link DescribeStackDriftDetectionStatusCommandOutput} for command's `response` shape.
|
|
52
62
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
53
63
|
*
|
|
64
|
+
* @throws {@link CloudFormationServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
54
66
|
*
|
|
55
67
|
*/
|
|
56
68
|
export declare class DescribeStackDriftDetectionStatusCommand extends $Command<DescribeStackDriftDetectionStatusCommandInput, DescribeStackDriftDetectionStatusCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -38,6 +38,30 @@ export interface DescribeStackEventsCommandOutput extends DescribeStackEventsOut
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new DescribeStackEventsCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // DescribeStackEventsOutput
|
|
42
|
+
* // StackEvents: [ // StackEvents
|
|
43
|
+
* // { // StackEvent
|
|
44
|
+
* // StackId: "STRING_VALUE", // required
|
|
45
|
+
* // EventId: "STRING_VALUE", // required
|
|
46
|
+
* // StackName: "STRING_VALUE", // required
|
|
47
|
+
* // LogicalResourceId: "STRING_VALUE",
|
|
48
|
+
* // PhysicalResourceId: "STRING_VALUE",
|
|
49
|
+
* // ResourceType: "STRING_VALUE",
|
|
50
|
+
* // Timestamp: new Date("TIMESTAMP"), // required
|
|
51
|
+
* // ResourceStatus: "CREATE_IN_PROGRESS" || "CREATE_FAILED" || "CREATE_COMPLETE" || "DELETE_IN_PROGRESS" || "DELETE_FAILED" || "DELETE_COMPLETE" || "DELETE_SKIPPED" || "UPDATE_IN_PROGRESS" || "UPDATE_FAILED" || "UPDATE_COMPLETE" || "IMPORT_FAILED" || "IMPORT_COMPLETE" || "IMPORT_IN_PROGRESS" || "IMPORT_ROLLBACK_IN_PROGRESS" || "IMPORT_ROLLBACK_FAILED" || "IMPORT_ROLLBACK_COMPLETE" || "UPDATE_ROLLBACK_IN_PROGRESS" || "UPDATE_ROLLBACK_COMPLETE" || "UPDATE_ROLLBACK_FAILED" || "ROLLBACK_IN_PROGRESS" || "ROLLBACK_COMPLETE" || "ROLLBACK_FAILED",
|
|
52
|
+
* // ResourceStatusReason: "STRING_VALUE",
|
|
53
|
+
* // ResourceProperties: "STRING_VALUE",
|
|
54
|
+
* // ClientRequestToken: "STRING_VALUE",
|
|
55
|
+
* // HookType: "STRING_VALUE",
|
|
56
|
+
* // HookStatus: "HOOK_IN_PROGRESS" || "HOOK_COMPLETE_SUCCEEDED" || "HOOK_COMPLETE_FAILED" || "HOOK_FAILED",
|
|
57
|
+
* // HookStatusReason: "STRING_VALUE",
|
|
58
|
+
* // HookInvocationPoint: "PRE_PROVISION",
|
|
59
|
+
* // HookFailureMode: "FAIL" || "WARN",
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // NextToken: "STRING_VALUE",
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
41
65
|
* ```
|
|
42
66
|
*
|
|
43
67
|
* @param DescribeStackEventsCommandInput - {@link DescribeStackEventsCommandInput}
|
|
@@ -46,6 +70,8 @@ export interface DescribeStackEventsCommandOutput extends DescribeStackEventsOut
|
|
|
46
70
|
* @see {@link DescribeStackEventsCommandOutput} for command's `response` shape.
|
|
47
71
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
48
72
|
*
|
|
73
|
+
* @throws {@link CloudFormationServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
49
75
|
*
|
|
50
76
|
*/
|
|
51
77
|
export declare class DescribeStackEventsCommand extends $Command<DescribeStackEventsCommandInput, DescribeStackEventsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -35,6 +35,32 @@ export interface DescribeStackInstanceCommandOutput extends DescribeStackInstanc
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DescribeStackInstanceCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // DescribeStackInstanceOutput
|
|
39
|
+
* // StackInstance: { // StackInstance
|
|
40
|
+
* // StackSetId: "STRING_VALUE",
|
|
41
|
+
* // Region: "STRING_VALUE",
|
|
42
|
+
* // Account: "STRING_VALUE",
|
|
43
|
+
* // StackId: "STRING_VALUE",
|
|
44
|
+
* // ParameterOverrides: [ // Parameters
|
|
45
|
+
* // { // Parameter
|
|
46
|
+
* // ParameterKey: "STRING_VALUE",
|
|
47
|
+
* // ParameterValue: "STRING_VALUE",
|
|
48
|
+
* // UsePreviousValue: true || false,
|
|
49
|
+
* // ResolvedValue: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // Status: "CURRENT" || "OUTDATED" || "INOPERABLE",
|
|
53
|
+
* // StackInstanceStatus: { // StackInstanceComprehensiveStatus
|
|
54
|
+
* // DetailedStatus: "PENDING" || "RUNNING" || "SUCCEEDED" || "FAILED" || "CANCELLED" || "INOPERABLE",
|
|
55
|
+
* // },
|
|
56
|
+
* // StatusReason: "STRING_VALUE",
|
|
57
|
+
* // OrganizationalUnitId: "STRING_VALUE",
|
|
58
|
+
* // DriftStatus: "DRIFTED" || "IN_SYNC" || "UNKNOWN" || "NOT_CHECKED",
|
|
59
|
+
* // LastDriftCheckTimestamp: new Date("TIMESTAMP"),
|
|
60
|
+
* // LastOperationId: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
38
64
|
* ```
|
|
39
65
|
*
|
|
40
66
|
* @param DescribeStackInstanceCommandInput - {@link DescribeStackInstanceCommandInput}
|
|
@@ -49,6 +75,8 @@ export interface DescribeStackInstanceCommandOutput extends DescribeStackInstanc
|
|
|
49
75
|
* @throws {@link StackSetNotFoundException} (client fault)
|
|
50
76
|
* <p>The specified stack set doesn't exist.</p>
|
|
51
77
|
*
|
|
78
|
+
* @throws {@link CloudFormationServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
52
80
|
*
|
|
53
81
|
*/
|
|
54
82
|
export declare class DescribeStackInstanceCommand extends $Command<DescribeStackInstanceCommandInput, DescribeStackInstanceCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -34,6 +34,29 @@ export interface DescribeStackResourceCommandOutput extends DescribeStackResourc
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DescribeStackResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // DescribeStackResourceOutput
|
|
38
|
+
* // StackResourceDetail: { // StackResourceDetail
|
|
39
|
+
* // StackName: "STRING_VALUE",
|
|
40
|
+
* // StackId: "STRING_VALUE",
|
|
41
|
+
* // LogicalResourceId: "STRING_VALUE", // required
|
|
42
|
+
* // PhysicalResourceId: "STRING_VALUE",
|
|
43
|
+
* // ResourceType: "STRING_VALUE", // required
|
|
44
|
+
* // LastUpdatedTimestamp: new Date("TIMESTAMP"), // required
|
|
45
|
+
* // ResourceStatus: "CREATE_IN_PROGRESS" || "CREATE_FAILED" || "CREATE_COMPLETE" || "DELETE_IN_PROGRESS" || "DELETE_FAILED" || "DELETE_COMPLETE" || "DELETE_SKIPPED" || "UPDATE_IN_PROGRESS" || "UPDATE_FAILED" || "UPDATE_COMPLETE" || "IMPORT_FAILED" || "IMPORT_COMPLETE" || "IMPORT_IN_PROGRESS" || "IMPORT_ROLLBACK_IN_PROGRESS" || "IMPORT_ROLLBACK_FAILED" || "IMPORT_ROLLBACK_COMPLETE" || "UPDATE_ROLLBACK_IN_PROGRESS" || "UPDATE_ROLLBACK_COMPLETE" || "UPDATE_ROLLBACK_FAILED" || "ROLLBACK_IN_PROGRESS" || "ROLLBACK_COMPLETE" || "ROLLBACK_FAILED", // required
|
|
46
|
+
* // ResourceStatusReason: "STRING_VALUE",
|
|
47
|
+
* // Description: "STRING_VALUE",
|
|
48
|
+
* // Metadata: "STRING_VALUE",
|
|
49
|
+
* // DriftInformation: { // StackResourceDriftInformation
|
|
50
|
+
* // StackResourceDriftStatus: "IN_SYNC" || "MODIFIED" || "DELETED" || "NOT_CHECKED", // required
|
|
51
|
+
* // LastCheckTimestamp: new Date("TIMESTAMP"),
|
|
52
|
+
* // },
|
|
53
|
+
* // ModuleInfo: { // ModuleInfo
|
|
54
|
+
* // TypeHierarchy: "STRING_VALUE",
|
|
55
|
+
* // LogicalIdHierarchy: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
37
60
|
* ```
|
|
38
61
|
*
|
|
39
62
|
* @param DescribeStackResourceCommandInput - {@link DescribeStackResourceCommandInput}
|
|
@@ -42,6 +65,8 @@ export interface DescribeStackResourceCommandOutput extends DescribeStackResourc
|
|
|
42
65
|
* @see {@link DescribeStackResourceCommandOutput} for command's `response` shape.
|
|
43
66
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
44
67
|
*
|
|
68
|
+
* @throws {@link CloudFormationServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
45
70
|
*
|
|
46
71
|
*/
|
|
47
72
|
export declare class DescribeStackResourceCommand extends $Command<DescribeStackResourceCommandInput, DescribeStackResourceCommandOutput, CloudFormationClientResolvedConfig> {
|