@aws-sdk/client-cloudformation 3.321.1 → 3.326.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/ActivateTypeCommand.d.ts +6 -0
- package/dist-types/commands/BatchDescribeTypeConfigurationsCommand.d.ts +38 -0
- package/dist-types/commands/CancelUpdateStackCommand.d.ts +4 -0
- package/dist-types/commands/ContinueUpdateRollbackCommand.d.ts +4 -0
- package/dist-types/commands/CreateChangeSetCommand.d.ts +7 -0
- package/dist-types/commands/CreateStackCommand.d.ts +6 -0
- package/dist-types/commands/CreateStackInstancesCommand.d.ts +6 -0
- package/dist-types/commands/CreateStackSetCommand.d.ts +6 -0
- package/dist-types/commands/DeactivateTypeCommand.d.ts +4 -0
- package/dist-types/commands/DeleteChangeSetCommand.d.ts +4 -0
- package/dist-types/commands/DeleteStackCommand.d.ts +4 -0
- package/dist-types/commands/DeleteStackInstancesCommand.d.ts +6 -0
- package/dist-types/commands/DeleteStackSetCommand.d.ts +4 -0
- package/dist-types/commands/DeregisterTypeCommand.d.ts +4 -0
- package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +12 -0
- package/dist-types/commands/DescribeChangeSetCommand.d.ts +80 -0
- package/dist-types/commands/DescribeChangeSetHooksCommand.d.ts +28 -0
- package/dist-types/commands/DescribePublisherCommand.d.ts +9 -0
- package/dist-types/commands/DescribeStackDriftDetectionStatusCommand.d.ts +12 -0
- package/dist-types/commands/DescribeStackEventsCommand.d.ts +26 -0
- package/dist-types/commands/DescribeStackInstanceCommand.d.ts +28 -0
- package/dist-types/commands/DescribeStackResourceCommand.d.ts +25 -0
- package/dist-types/commands/DescribeStackResourceDriftsCommand.d.ts +36 -0
- package/dist-types/commands/DescribeStackResourcesCommand.d.ts +26 -0
- package/dist-types/commands/DescribeStackSetCommand.d.ts +56 -0
- package/dist-types/commands/DescribeStackSetOperationCommand.d.ts +50 -0
- package/dist-types/commands/DescribeStacksCommand.d.ts +66 -0
- package/dist-types/commands/DescribeTypeCommand.d.ts +44 -0
- package/dist-types/commands/DescribeTypeRegistrationCommand.d.ts +9 -0
- package/dist-types/commands/DetectStackDriftCommand.d.ts +6 -0
- package/dist-types/commands/DetectStackResourceDriftCommand.d.ts +33 -0
- package/dist-types/commands/DetectStackSetDriftCommand.d.ts +6 -0
- package/dist-types/commands/EstimateTemplateCostCommand.d.ts +6 -0
- package/dist-types/commands/ExecuteChangeSetCommand.d.ts +4 -0
- package/dist-types/commands/GetStackPolicyCommand.d.ts +6 -0
- package/dist-types/commands/GetTemplateCommand.d.ts +9 -0
- package/dist-types/commands/GetTemplateSummaryCommand.d.ts +43 -0
- package/dist-types/commands/ImportStacksToStackSetCommand.d.ts +6 -0
- package/dist-types/commands/ListChangeSetsCommand.d.ts +22 -0
- package/dist-types/commands/ListExportsCommand.d.ts +13 -0
- package/dist-types/commands/ListImportsCommand.d.ts +9 -0
- package/dist-types/commands/ListStackInstancesCommand.d.ts +23 -0
- package/dist-types/commands/ListStackResourcesCommand.d.ts +24 -0
- package/dist-types/commands/ListStackSetOperationResultsCommand.d.ts +19 -0
- package/dist-types/commands/ListStackSetOperationsCommand.d.ts +29 -0
- package/dist-types/commands/ListStackSetsCommand.d.ts +24 -0
- package/dist-types/commands/ListStacksCommand.d.ts +24 -0
- package/dist-types/commands/ListTypeRegistrationsCommand.d.ts +9 -0
- package/dist-types/commands/ListTypeVersionsCommand.d.ts +18 -0
- package/dist-types/commands/ListTypesCommand.d.ts +23 -0
- package/dist-types/commands/PublishTypeCommand.d.ts +6 -0
- package/dist-types/commands/RecordHandlerProgressCommand.d.ts +4 -0
- package/dist-types/commands/RegisterPublisherCommand.d.ts +6 -0
- package/dist-types/commands/RegisterTypeCommand.d.ts +6 -0
- package/dist-types/commands/RollbackStackCommand.d.ts +6 -0
- package/dist-types/commands/SetStackPolicyCommand.d.ts +4 -0
- package/dist-types/commands/SetTypeConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/SetTypeDefaultVersionCommand.d.ts +4 -0
- package/dist-types/commands/SignalResourceCommand.d.ts +4 -0
- package/dist-types/commands/StopStackSetOperationCommand.d.ts +4 -0
- package/dist-types/commands/TestTypeCommand.d.ts +6 -0
- package/dist-types/commands/UpdateStackCommand.d.ts +6 -0
- package/dist-types/commands/UpdateStackInstancesCommand.d.ts +6 -0
- package/dist-types/commands/UpdateStackSetCommand.d.ts +6 -0
- package/dist-types/commands/UpdateTerminationProtectionCommand.d.ts +6 -0
- package/dist-types/commands/ValidateTemplateCommand.d.ts +21 -0
- package/package.json +16 -16
|
@@ -33,6 +33,26 @@ export interface ListChangeSetsCommandOutput extends ListChangeSetsOutput, __Met
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListChangeSetsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListChangeSetsOutput
|
|
37
|
+
* // Summaries: [ // ChangeSetSummaries
|
|
38
|
+
* // { // ChangeSetSummary
|
|
39
|
+
* // StackId: "STRING_VALUE",
|
|
40
|
+
* // StackName: "STRING_VALUE",
|
|
41
|
+
* // ChangeSetId: "STRING_VALUE",
|
|
42
|
+
* // ChangeSetName: "STRING_VALUE",
|
|
43
|
+
* // ExecutionStatus: "UNAVAILABLE" || "AVAILABLE" || "EXECUTE_IN_PROGRESS" || "EXECUTE_COMPLETE" || "EXECUTE_FAILED" || "OBSOLETE",
|
|
44
|
+
* // Status: "CREATE_PENDING" || "CREATE_IN_PROGRESS" || "CREATE_COMPLETE" || "DELETE_PENDING" || "DELETE_IN_PROGRESS" || "DELETE_COMPLETE" || "DELETE_FAILED" || "FAILED",
|
|
45
|
+
* // StatusReason: "STRING_VALUE",
|
|
46
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
47
|
+
* // Description: "STRING_VALUE",
|
|
48
|
+
* // IncludeNestedStacks: true || false,
|
|
49
|
+
* // ParentChangeSetId: "STRING_VALUE",
|
|
50
|
+
* // RootChangeSetId: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // NextToken: "STRING_VALUE",
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
36
56
|
* ```
|
|
37
57
|
*
|
|
38
58
|
* @param ListChangeSetsCommandInput - {@link ListChangeSetsCommandInput}
|
|
@@ -41,6 +61,8 @@ export interface ListChangeSetsCommandOutput extends ListChangeSetsOutput, __Met
|
|
|
41
61
|
* @see {@link ListChangeSetsCommandOutput} for command's `response` shape.
|
|
42
62
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
43
63
|
*
|
|
64
|
+
* @throws {@link CloudFormationServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
44
66
|
*
|
|
45
67
|
*/
|
|
46
68
|
export declare class ListChangeSetsCommand extends $Command<ListChangeSetsCommandInput, ListChangeSetsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -37,6 +37,17 @@ export interface ListExportsCommandOutput extends ListExportsOutput, __MetadataB
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new ListExportsCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // ListExportsOutput
|
|
41
|
+
* // Exports: [ // Exports
|
|
42
|
+
* // { // Export
|
|
43
|
+
* // ExportingStackId: "STRING_VALUE",
|
|
44
|
+
* // Name: "STRING_VALUE",
|
|
45
|
+
* // Value: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // NextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
40
51
|
* ```
|
|
41
52
|
*
|
|
42
53
|
* @param ListExportsCommandInput - {@link ListExportsCommandInput}
|
|
@@ -45,6 +56,8 @@ export interface ListExportsCommandOutput extends ListExportsOutput, __MetadataB
|
|
|
45
56
|
* @see {@link ListExportsCommandOutput} for command's `response` shape.
|
|
46
57
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
47
58
|
*
|
|
59
|
+
* @throws {@link CloudFormationServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
48
61
|
*
|
|
49
62
|
*/
|
|
50
63
|
export declare class ListExportsCommand extends $Command<ListExportsCommandInput, ListExportsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -37,6 +37,13 @@ export interface ListImportsCommandOutput extends ListImportsOutput, __MetadataB
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new ListImportsCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // ListImportsOutput
|
|
41
|
+
* // Imports: [ // Imports
|
|
42
|
+
* // "STRING_VALUE",
|
|
43
|
+
* // ],
|
|
44
|
+
* // NextToken: "STRING_VALUE",
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
40
47
|
* ```
|
|
41
48
|
*
|
|
42
49
|
* @param ListImportsCommandInput - {@link ListImportsCommandInput}
|
|
@@ -45,6 +52,8 @@ export interface ListImportsCommandOutput extends ListImportsOutput, __MetadataB
|
|
|
45
52
|
* @see {@link ListImportsCommandOutput} for command's `response` shape.
|
|
46
53
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
47
54
|
*
|
|
55
|
+
* @throws {@link CloudFormationServiceException}
|
|
56
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
48
57
|
*
|
|
49
58
|
*/
|
|
50
59
|
export declare class ListImportsCommand extends $Command<ListImportsCommandInput, ListImportsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -43,6 +43,27 @@ export interface ListStackInstancesCommandOutput extends ListStackInstancesOutpu
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new ListStackInstancesCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // ListStackInstancesOutput
|
|
47
|
+
* // Summaries: [ // StackInstanceSummaries
|
|
48
|
+
* // { // StackInstanceSummary
|
|
49
|
+
* // StackSetId: "STRING_VALUE",
|
|
50
|
+
* // Region: "STRING_VALUE",
|
|
51
|
+
* // Account: "STRING_VALUE",
|
|
52
|
+
* // StackId: "STRING_VALUE",
|
|
53
|
+
* // Status: "CURRENT" || "OUTDATED" || "INOPERABLE",
|
|
54
|
+
* // StatusReason: "STRING_VALUE",
|
|
55
|
+
* // StackInstanceStatus: { // StackInstanceComprehensiveStatus
|
|
56
|
+
* // DetailedStatus: "PENDING" || "RUNNING" || "SUCCEEDED" || "FAILED" || "CANCELLED" || "INOPERABLE",
|
|
57
|
+
* // },
|
|
58
|
+
* // OrganizationalUnitId: "STRING_VALUE",
|
|
59
|
+
* // DriftStatus: "DRIFTED" || "IN_SYNC" || "UNKNOWN" || "NOT_CHECKED",
|
|
60
|
+
* // LastDriftCheckTimestamp: new Date("TIMESTAMP"),
|
|
61
|
+
* // LastOperationId: "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // NextToken: "STRING_VALUE",
|
|
65
|
+
* // };
|
|
66
|
+
*
|
|
46
67
|
* ```
|
|
47
68
|
*
|
|
48
69
|
* @param ListStackInstancesCommandInput - {@link ListStackInstancesCommandInput}
|
|
@@ -54,6 +75,8 @@ export interface ListStackInstancesCommandOutput extends ListStackInstancesOutpu
|
|
|
54
75
|
* @throws {@link StackSetNotFoundException} (client fault)
|
|
55
76
|
* <p>The specified stack set doesn't exist.</p>
|
|
56
77
|
*
|
|
78
|
+
* @throws {@link CloudFormationServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
57
80
|
*
|
|
58
81
|
*/
|
|
59
82
|
export declare class ListStackInstancesCommand extends $Command<ListStackInstancesCommandInput, ListStackInstancesCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -34,6 +34,28 @@ export interface ListStackResourcesCommandOutput extends ListStackResourcesOutpu
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListStackResourcesCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListStackResourcesOutput
|
|
38
|
+
* // StackResourceSummaries: [ // StackResourceSummaries
|
|
39
|
+
* // { // StackResourceSummary
|
|
40
|
+
* // LogicalResourceId: "STRING_VALUE", // required
|
|
41
|
+
* // PhysicalResourceId: "STRING_VALUE",
|
|
42
|
+
* // ResourceType: "STRING_VALUE", // required
|
|
43
|
+
* // LastUpdatedTimestamp: new Date("TIMESTAMP"), // required
|
|
44
|
+
* // 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
|
|
45
|
+
* // ResourceStatusReason: "STRING_VALUE",
|
|
46
|
+
* // DriftInformation: { // StackResourceDriftInformationSummary
|
|
47
|
+
* // StackResourceDriftStatus: "IN_SYNC" || "MODIFIED" || "DELETED" || "NOT_CHECKED", // required
|
|
48
|
+
* // LastCheckTimestamp: new Date("TIMESTAMP"),
|
|
49
|
+
* // },
|
|
50
|
+
* // ModuleInfo: { // ModuleInfo
|
|
51
|
+
* // TypeHierarchy: "STRING_VALUE",
|
|
52
|
+
* // LogicalIdHierarchy: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // NextToken: "STRING_VALUE",
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
37
59
|
* ```
|
|
38
60
|
*
|
|
39
61
|
* @param ListStackResourcesCommandInput - {@link ListStackResourcesCommandInput}
|
|
@@ -42,6 +64,8 @@ export interface ListStackResourcesCommandOutput extends ListStackResourcesOutpu
|
|
|
42
64
|
* @see {@link ListStackResourcesCommandOutput} for command's `response` shape.
|
|
43
65
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
44
66
|
*
|
|
67
|
+
* @throws {@link CloudFormationServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
45
69
|
*
|
|
46
70
|
*/
|
|
47
71
|
export declare class ListStackResourcesCommand extends $Command<ListStackResourcesCommandInput, ListStackResourcesCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -41,6 +41,23 @@ export interface ListStackSetOperationResultsCommandOutput extends ListStackSetO
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new ListStackSetOperationResultsCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // ListStackSetOperationResultsOutput
|
|
45
|
+
* // Summaries: [ // StackSetOperationResultSummaries
|
|
46
|
+
* // { // StackSetOperationResultSummary
|
|
47
|
+
* // Account: "STRING_VALUE",
|
|
48
|
+
* // Region: "STRING_VALUE",
|
|
49
|
+
* // Status: "PENDING" || "RUNNING" || "SUCCEEDED" || "FAILED" || "CANCELLED",
|
|
50
|
+
* // StatusReason: "STRING_VALUE",
|
|
51
|
+
* // AccountGateResult: { // AccountGateResult
|
|
52
|
+
* // Status: "SUCCEEDED" || "FAILED" || "SKIPPED",
|
|
53
|
+
* // StatusReason: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // OrganizationalUnitId: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // NextToken: "STRING_VALUE",
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
44
61
|
* ```
|
|
45
62
|
*
|
|
46
63
|
* @param ListStackSetOperationResultsCommandInput - {@link ListStackSetOperationResultsCommandInput}
|
|
@@ -55,6 +72,8 @@ export interface ListStackSetOperationResultsCommandOutput extends ListStackSetO
|
|
|
55
72
|
* @throws {@link StackSetNotFoundException} (client fault)
|
|
56
73
|
* <p>The specified stack set doesn't exist.</p>
|
|
57
74
|
*
|
|
75
|
+
* @throws {@link CloudFormationServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
58
77
|
*
|
|
59
78
|
*/
|
|
60
79
|
export declare class ListStackSetOperationResultsCommand extends $Command<ListStackSetOperationResultsCommandInput, ListStackSetOperationResultsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -34,6 +34,33 @@ export interface ListStackSetOperationsCommandOutput extends ListStackSetOperati
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListStackSetOperationsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListStackSetOperationsOutput
|
|
38
|
+
* // Summaries: [ // StackSetOperationSummaries
|
|
39
|
+
* // { // StackSetOperationSummary
|
|
40
|
+
* // OperationId: "STRING_VALUE",
|
|
41
|
+
* // Action: "CREATE" || "UPDATE" || "DELETE" || "DETECT_DRIFT",
|
|
42
|
+
* // Status: "RUNNING" || "SUCCEEDED" || "FAILED" || "STOPPING" || "STOPPED" || "QUEUED",
|
|
43
|
+
* // CreationTimestamp: new Date("TIMESTAMP"),
|
|
44
|
+
* // EndTimestamp: new Date("TIMESTAMP"),
|
|
45
|
+
* // StatusReason: "STRING_VALUE",
|
|
46
|
+
* // StatusDetails: { // StackSetOperationStatusDetails
|
|
47
|
+
* // FailedStackInstancesCount: Number("int"),
|
|
48
|
+
* // },
|
|
49
|
+
* // OperationPreferences: { // StackSetOperationPreferences
|
|
50
|
+
* // RegionConcurrencyType: "SEQUENTIAL" || "PARALLEL",
|
|
51
|
+
* // RegionOrder: [ // RegionList
|
|
52
|
+
* // "STRING_VALUE",
|
|
53
|
+
* // ],
|
|
54
|
+
* // FailureToleranceCount: Number("int"),
|
|
55
|
+
* // FailureTolerancePercentage: Number("int"),
|
|
56
|
+
* // MaxConcurrentCount: Number("int"),
|
|
57
|
+
* // MaxConcurrentPercentage: Number("int"),
|
|
58
|
+
* // },
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // NextToken: "STRING_VALUE",
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
37
64
|
* ```
|
|
38
65
|
*
|
|
39
66
|
* @param ListStackSetOperationsCommandInput - {@link ListStackSetOperationsCommandInput}
|
|
@@ -45,6 +72,8 @@ export interface ListStackSetOperationsCommandOutput extends ListStackSetOperati
|
|
|
45
72
|
* @throws {@link StackSetNotFoundException} (client fault)
|
|
46
73
|
* <p>The specified stack set doesn't exist.</p>
|
|
47
74
|
*
|
|
75
|
+
* @throws {@link CloudFormationServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
48
77
|
*
|
|
49
78
|
*/
|
|
50
79
|
export declare class ListStackSetOperationsCommand extends $Command<ListStackSetOperationsCommandInput, ListStackSetOperationsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -52,6 +52,28 @@ export interface ListStackSetsCommandOutput extends ListStackSetsOutput, __Metad
|
|
|
52
52
|
* };
|
|
53
53
|
* const command = new ListStackSetsCommand(input);
|
|
54
54
|
* const response = await client.send(command);
|
|
55
|
+
* // { // ListStackSetsOutput
|
|
56
|
+
* // Summaries: [ // StackSetSummaries
|
|
57
|
+
* // { // StackSetSummary
|
|
58
|
+
* // StackSetName: "STRING_VALUE",
|
|
59
|
+
* // StackSetId: "STRING_VALUE",
|
|
60
|
+
* // Description: "STRING_VALUE",
|
|
61
|
+
* // Status: "ACTIVE" || "DELETED",
|
|
62
|
+
* // AutoDeployment: { // AutoDeployment
|
|
63
|
+
* // Enabled: true || false,
|
|
64
|
+
* // RetainStacksOnAccountRemoval: true || false,
|
|
65
|
+
* // },
|
|
66
|
+
* // PermissionModel: "SERVICE_MANAGED" || "SELF_MANAGED",
|
|
67
|
+
* // DriftStatus: "DRIFTED" || "IN_SYNC" || "UNKNOWN" || "NOT_CHECKED",
|
|
68
|
+
* // LastDriftCheckTimestamp: new Date("TIMESTAMP"),
|
|
69
|
+
* // ManagedExecution: { // ManagedExecution
|
|
70
|
+
* // Active: true || false,
|
|
71
|
+
* // },
|
|
72
|
+
* // },
|
|
73
|
+
* // ],
|
|
74
|
+
* // NextToken: "STRING_VALUE",
|
|
75
|
+
* // };
|
|
76
|
+
*
|
|
55
77
|
* ```
|
|
56
78
|
*
|
|
57
79
|
* @param ListStackSetsCommandInput - {@link ListStackSetsCommandInput}
|
|
@@ -60,6 +82,8 @@ export interface ListStackSetsCommandOutput extends ListStackSetsOutput, __Metad
|
|
|
60
82
|
* @see {@link ListStackSetsCommandOutput} for command's `response` shape.
|
|
61
83
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
62
84
|
*
|
|
85
|
+
* @throws {@link CloudFormationServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
63
87
|
*
|
|
64
88
|
*/
|
|
65
89
|
export declare class ListStackSetsCommand extends $Command<ListStackSetsCommandInput, ListStackSetsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -38,6 +38,28 @@ export interface ListStacksCommandOutput extends ListStacksOutput, __MetadataBea
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new ListStacksCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // ListStacksOutput
|
|
42
|
+
* // StackSummaries: [ // StackSummaries
|
|
43
|
+
* // { // StackSummary
|
|
44
|
+
* // StackId: "STRING_VALUE",
|
|
45
|
+
* // StackName: "STRING_VALUE", // required
|
|
46
|
+
* // TemplateDescription: "STRING_VALUE",
|
|
47
|
+
* // CreationTime: new Date("TIMESTAMP"), // required
|
|
48
|
+
* // LastUpdatedTime: new Date("TIMESTAMP"),
|
|
49
|
+
* // DeletionTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // StackStatus: "CREATE_IN_PROGRESS" || "CREATE_FAILED" || "CREATE_COMPLETE" || "ROLLBACK_IN_PROGRESS" || "ROLLBACK_FAILED" || "ROLLBACK_COMPLETE" || "DELETE_IN_PROGRESS" || "DELETE_FAILED" || "DELETE_COMPLETE" || "UPDATE_IN_PROGRESS" || "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS" || "UPDATE_COMPLETE" || "UPDATE_FAILED" || "UPDATE_ROLLBACK_IN_PROGRESS" || "UPDATE_ROLLBACK_FAILED" || "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS" || "UPDATE_ROLLBACK_COMPLETE" || "REVIEW_IN_PROGRESS" || "IMPORT_IN_PROGRESS" || "IMPORT_COMPLETE" || "IMPORT_ROLLBACK_IN_PROGRESS" || "IMPORT_ROLLBACK_FAILED" || "IMPORT_ROLLBACK_COMPLETE", // required
|
|
51
|
+
* // StackStatusReason: "STRING_VALUE",
|
|
52
|
+
* // ParentId: "STRING_VALUE",
|
|
53
|
+
* // RootId: "STRING_VALUE",
|
|
54
|
+
* // DriftInformation: { // StackDriftInformationSummary
|
|
55
|
+
* // StackDriftStatus: "DRIFTED" || "IN_SYNC" || "UNKNOWN" || "NOT_CHECKED", // required
|
|
56
|
+
* // LastCheckTimestamp: new Date("TIMESTAMP"),
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // NextToken: "STRING_VALUE",
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
41
63
|
* ```
|
|
42
64
|
*
|
|
43
65
|
* @param ListStacksCommandInput - {@link ListStacksCommandInput}
|
|
@@ -46,6 +68,8 @@ export interface ListStacksCommandOutput extends ListStacksOutput, __MetadataBea
|
|
|
46
68
|
* @see {@link ListStacksCommandOutput} for command's `response` shape.
|
|
47
69
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
48
70
|
*
|
|
71
|
+
* @throws {@link CloudFormationServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
49
73
|
*
|
|
50
74
|
*/
|
|
51
75
|
export declare class ListStacksCommand extends $Command<ListStacksCommandInput, ListStacksCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -36,6 +36,13 @@ export interface ListTypeRegistrationsCommandOutput extends ListTypeRegistration
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new ListTypeRegistrationsCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // ListTypeRegistrationsOutput
|
|
40
|
+
* // RegistrationTokenList: [ // RegistrationTokenList
|
|
41
|
+
* // "STRING_VALUE",
|
|
42
|
+
* // ],
|
|
43
|
+
* // NextToken: "STRING_VALUE",
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
39
46
|
* ```
|
|
40
47
|
*
|
|
41
48
|
* @param ListTypeRegistrationsCommandInput - {@link ListTypeRegistrationsCommandInput}
|
|
@@ -47,6 +54,8 @@ export interface ListTypeRegistrationsCommandOutput extends ListTypeRegistration
|
|
|
47
54
|
* @throws {@link CFNRegistryException} (client fault)
|
|
48
55
|
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
49
56
|
*
|
|
57
|
+
* @throws {@link CloudFormationServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
50
59
|
*
|
|
51
60
|
*/
|
|
52
61
|
export declare class ListTypeRegistrationsCommand extends $Command<ListTypeRegistrationsCommandInput, ListTypeRegistrationsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -37,6 +37,22 @@ export interface ListTypeVersionsCommandOutput extends ListTypeVersionsOutput, _
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new ListTypeVersionsCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // ListTypeVersionsOutput
|
|
41
|
+
* // TypeVersionSummaries: [ // TypeVersionSummaries
|
|
42
|
+
* // { // TypeVersionSummary
|
|
43
|
+
* // Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
44
|
+
* // TypeName: "STRING_VALUE",
|
|
45
|
+
* // VersionId: "STRING_VALUE",
|
|
46
|
+
* // IsDefaultVersion: true || false,
|
|
47
|
+
* // Arn: "STRING_VALUE",
|
|
48
|
+
* // TimeCreated: new Date("TIMESTAMP"),
|
|
49
|
+
* // Description: "STRING_VALUE",
|
|
50
|
+
* // PublicVersionNumber: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // NextToken: "STRING_VALUE",
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
40
56
|
* ```
|
|
41
57
|
*
|
|
42
58
|
* @param ListTypeVersionsCommandInput - {@link ListTypeVersionsCommandInput}
|
|
@@ -48,6 +64,8 @@ export interface ListTypeVersionsCommandOutput extends ListTypeVersionsOutput, _
|
|
|
48
64
|
* @throws {@link CFNRegistryException} (client fault)
|
|
49
65
|
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
50
66
|
*
|
|
67
|
+
* @throws {@link CloudFormationServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
51
69
|
*
|
|
52
70
|
*/
|
|
53
71
|
export declare class ListTypeVersionsCommand extends $Command<ListTypeVersionsCommandInput, ListTypeVersionsCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -41,6 +41,27 @@ export interface ListTypesCommandOutput extends ListTypesOutput, __MetadataBeare
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new ListTypesCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // ListTypesOutput
|
|
45
|
+
* // TypeSummaries: [ // TypeSummaries
|
|
46
|
+
* // { // TypeSummary
|
|
47
|
+
* // Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
48
|
+
* // TypeName: "STRING_VALUE",
|
|
49
|
+
* // DefaultVersionId: "STRING_VALUE",
|
|
50
|
+
* // TypeArn: "STRING_VALUE",
|
|
51
|
+
* // LastUpdated: new Date("TIMESTAMP"),
|
|
52
|
+
* // Description: "STRING_VALUE",
|
|
53
|
+
* // PublisherId: "STRING_VALUE",
|
|
54
|
+
* // OriginalTypeName: "STRING_VALUE",
|
|
55
|
+
* // PublicVersionNumber: "STRING_VALUE",
|
|
56
|
+
* // LatestPublicVersion: "STRING_VALUE",
|
|
57
|
+
* // PublisherIdentity: "AWS_Marketplace" || "GitHub" || "Bitbucket",
|
|
58
|
+
* // PublisherName: "STRING_VALUE",
|
|
59
|
+
* // IsActivated: true || false,
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // NextToken: "STRING_VALUE",
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
44
65
|
* ```
|
|
45
66
|
*
|
|
46
67
|
* @param ListTypesCommandInput - {@link ListTypesCommandInput}
|
|
@@ -52,6 +73,8 @@ export interface ListTypesCommandOutput extends ListTypesOutput, __MetadataBeare
|
|
|
52
73
|
* @throws {@link CFNRegistryException} (client fault)
|
|
53
74
|
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
54
75
|
*
|
|
76
|
+
* @throws {@link CloudFormationServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
55
78
|
*
|
|
56
79
|
*/
|
|
57
80
|
export declare class ListTypesCommand extends $Command<ListTypesCommandInput, ListTypesCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -37,6 +37,10 @@ export interface PublishTypeCommandOutput extends PublishTypeOutput, __MetadataB
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new PublishTypeCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // PublishTypeOutput
|
|
41
|
+
* // PublicTypeArn: "STRING_VALUE",
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
40
44
|
* ```
|
|
41
45
|
*
|
|
42
46
|
* @param PublishTypeCommandInput - {@link PublishTypeCommandInput}
|
|
@@ -51,6 +55,8 @@ export interface PublishTypeCommandOutput extends PublishTypeOutput, __MetadataB
|
|
|
51
55
|
* @throws {@link TypeNotFoundException} (client fault)
|
|
52
56
|
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
53
57
|
*
|
|
58
|
+
* @throws {@link CloudFormationServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
54
60
|
*
|
|
55
61
|
*/
|
|
56
62
|
export declare class PublishTypeCommand extends $Command<PublishTypeCommandInput, PublishTypeCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -38,6 +38,8 @@ export interface RecordHandlerProgressCommandOutput extends RecordHandlerProgres
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new RecordHandlerProgressCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // {};
|
|
42
|
+
*
|
|
41
43
|
* ```
|
|
42
44
|
*
|
|
43
45
|
* @param RecordHandlerProgressCommandInput - {@link RecordHandlerProgressCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface RecordHandlerProgressCommandOutput extends RecordHandlerProgres
|
|
|
54
56
|
* <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
|
|
55
57
|
* users.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link CloudFormationServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class RecordHandlerProgressCommand extends $Command<RecordHandlerProgressCommandInput, RecordHandlerProgressCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -38,6 +38,10 @@ export interface RegisterPublisherCommandOutput extends RegisterPublisherOutput,
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new RegisterPublisherCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // RegisterPublisherOutput
|
|
42
|
+
* // PublisherId: "STRING_VALUE",
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
41
45
|
* ```
|
|
42
46
|
*
|
|
43
47
|
* @param RegisterPublisherCommandInput - {@link RegisterPublisherCommandInput}
|
|
@@ -49,6 +53,8 @@ export interface RegisterPublisherCommandOutput extends RegisterPublisherOutput,
|
|
|
49
53
|
* @throws {@link CFNRegistryException} (client fault)
|
|
50
54
|
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
51
55
|
*
|
|
56
|
+
* @throws {@link CloudFormationServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
52
58
|
*
|
|
53
59
|
*/
|
|
54
60
|
export declare class RegisterPublisherCommand extends $Command<RegisterPublisherCommandInput, RegisterPublisherCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -65,6 +65,10 @@ export interface RegisterTypeCommandOutput extends RegisterTypeOutput, __Metadat
|
|
|
65
65
|
* };
|
|
66
66
|
* const command = new RegisterTypeCommand(input);
|
|
67
67
|
* const response = await client.send(command);
|
|
68
|
+
* // { // RegisterTypeOutput
|
|
69
|
+
* // RegistrationToken: "STRING_VALUE",
|
|
70
|
+
* // };
|
|
71
|
+
*
|
|
68
72
|
* ```
|
|
69
73
|
*
|
|
70
74
|
* @param RegisterTypeCommandInput - {@link RegisterTypeCommandInput}
|
|
@@ -76,6 +80,8 @@ export interface RegisterTypeCommandOutput extends RegisterTypeOutput, __Metadat
|
|
|
76
80
|
* @throws {@link CFNRegistryException} (client fault)
|
|
77
81
|
* <p>An error occurred during a CloudFormation registry operation.</p>
|
|
78
82
|
*
|
|
83
|
+
* @throws {@link CloudFormationServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
79
85
|
*
|
|
80
86
|
*/
|
|
81
87
|
export declare class RegisterTypeCommand extends $Command<RegisterTypeCommandInput, RegisterTypeCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -67,6 +67,10 @@ export interface RollbackStackCommandOutput extends RollbackStackOutput, __Metad
|
|
|
67
67
|
* };
|
|
68
68
|
* const command = new RollbackStackCommand(input);
|
|
69
69
|
* const response = await client.send(command);
|
|
70
|
+
* // { // RollbackStackOutput
|
|
71
|
+
* // StackId: "STRING_VALUE",
|
|
72
|
+
* // };
|
|
73
|
+
*
|
|
70
74
|
* ```
|
|
71
75
|
*
|
|
72
76
|
* @param RollbackStackCommandInput - {@link RollbackStackCommandInput}
|
|
@@ -78,6 +82,8 @@ export interface RollbackStackCommandOutput extends RollbackStackOutput, __Metad
|
|
|
78
82
|
* @throws {@link TokenAlreadyExistsException} (client fault)
|
|
79
83
|
* <p>A client request token already exists.</p>
|
|
80
84
|
*
|
|
85
|
+
* @throws {@link CloudFormationServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
81
87
|
*
|
|
82
88
|
*/
|
|
83
89
|
export declare class RollbackStackCommand extends $Command<RollbackStackCommandInput, RollbackStackCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface SetStackPolicyCommandOutput extends __MetadataBearer {
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new SetStackPolicyCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param SetStackPolicyCommandInput - {@link SetStackPolicyCommandInput}
|
|
@@ -41,6 +43,8 @@ export interface SetStackPolicyCommandOutput extends __MetadataBearer {
|
|
|
41
43
|
* @see {@link SetStackPolicyCommandOutput} for command's `response` shape.
|
|
42
44
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
43
45
|
*
|
|
46
|
+
* @throws {@link CloudFormationServiceException}
|
|
47
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
44
48
|
*
|
|
45
49
|
*/
|
|
46
50
|
export declare class SetStackPolicyCommand extends $Command<SetStackPolicyCommandInput, SetStackPolicyCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -47,6 +47,10 @@ export interface SetTypeConfigurationCommandOutput extends SetTypeConfigurationO
|
|
|
47
47
|
* };
|
|
48
48
|
* const command = new SetTypeConfigurationCommand(input);
|
|
49
49
|
* const response = await client.send(command);
|
|
50
|
+
* // { // SetTypeConfigurationOutput
|
|
51
|
+
* // ConfigurationArn: "STRING_VALUE",
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
50
54
|
* ```
|
|
51
55
|
*
|
|
52
56
|
* @param SetTypeConfigurationCommandInput - {@link SetTypeConfigurationCommandInput}
|
|
@@ -61,6 +65,8 @@ export interface SetTypeConfigurationCommandOutput extends SetTypeConfigurationO
|
|
|
61
65
|
* @throws {@link TypeNotFoundException} (client fault)
|
|
62
66
|
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
63
67
|
*
|
|
68
|
+
* @throws {@link CloudFormationServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
64
70
|
*
|
|
65
71
|
*/
|
|
66
72
|
export declare class SetTypeConfigurationCommand extends $Command<SetTypeConfigurationCommandInput, SetTypeConfigurationCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface SetTypeDefaultVersionCommandOutput extends SetTypeDefaultVersio
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new SetTypeDefaultVersionCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param SetTypeDefaultVersionCommandInput - {@link SetTypeDefaultVersionCommandInput}
|
|
@@ -49,6 +51,8 @@ export interface SetTypeDefaultVersionCommandOutput extends SetTypeDefaultVersio
|
|
|
49
51
|
* @throws {@link TypeNotFoundException} (client fault)
|
|
50
52
|
* <p>The specified extension doesn't exist in the CloudFormation registry.</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 SetTypeDefaultVersionCommand extends $Command<SetTypeDefaultVersionCommandInput, SetTypeDefaultVersionCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -39,6 +39,8 @@ export interface SignalResourceCommandOutput extends __MetadataBearer {
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new SignalResourceCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // {};
|
|
43
|
+
*
|
|
42
44
|
* ```
|
|
43
45
|
*
|
|
44
46
|
* @param SignalResourceCommandInput - {@link SignalResourceCommandInput}
|
|
@@ -47,6 +49,8 @@ export interface SignalResourceCommandOutput extends __MetadataBearer {
|
|
|
47
49
|
* @see {@link SignalResourceCommandOutput} for command's `response` shape.
|
|
48
50
|
* @see {@link CloudFormationClientResolvedConfig | config} for CloudFormationClient's `config` shape.
|
|
49
51
|
*
|
|
52
|
+
* @throws {@link CloudFormationServiceException}
|
|
53
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
50
54
|
*
|
|
51
55
|
*/
|
|
52
56
|
export declare class SignalResourceCommand extends $Command<SignalResourceCommandInput, SignalResourceCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface StopStackSetOperationCommandOutput extends StopStackSetOperatio
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new StopStackSetOperationCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param StopStackSetOperationCommandInput - {@link StopStackSetOperationCommandInput}
|
|
@@ -52,6 +54,8 @@ export interface StopStackSetOperationCommandOutput extends StopStackSetOperatio
|
|
|
52
54
|
* @throws {@link StackSetNotFoundException} (client fault)
|
|
53
55
|
* <p>The specified stack set doesn't exist.</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 StopStackSetOperationCommand extends $Command<StopStackSetOperationCommandInput, StopStackSetOperationCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -57,6 +57,10 @@ export interface TestTypeCommandOutput extends TestTypeOutput, __MetadataBearer
|
|
|
57
57
|
* };
|
|
58
58
|
* const command = new TestTypeCommand(input);
|
|
59
59
|
* const response = await client.send(command);
|
|
60
|
+
* // { // TestTypeOutput
|
|
61
|
+
* // TypeVersionArn: "STRING_VALUE",
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
60
64
|
* ```
|
|
61
65
|
*
|
|
62
66
|
* @param TestTypeCommandInput - {@link TestTypeCommandInput}
|
|
@@ -71,6 +75,8 @@ export interface TestTypeCommandOutput extends TestTypeOutput, __MetadataBearer
|
|
|
71
75
|
* @throws {@link TypeNotFoundException} (client fault)
|
|
72
76
|
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
73
77
|
*
|
|
78
|
+
* @throws {@link CloudFormationServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
74
80
|
*
|
|
75
81
|
*/
|
|
76
82
|
export declare class TestTypeCommand extends $Command<TestTypeCommandInput, TestTypeCommandOutput, CloudFormationClientResolvedConfig> {
|
|
@@ -78,6 +78,10 @@ export interface UpdateStackCommandOutput extends UpdateStackOutput, __MetadataB
|
|
|
78
78
|
* };
|
|
79
79
|
* const command = new UpdateStackCommand(input);
|
|
80
80
|
* const response = await client.send(command);
|
|
81
|
+
* // { // UpdateStackOutput
|
|
82
|
+
* // StackId: "STRING_VALUE",
|
|
83
|
+
* // };
|
|
84
|
+
*
|
|
81
85
|
* ```
|
|
82
86
|
*
|
|
83
87
|
* @param UpdateStackCommandInput - {@link UpdateStackCommandInput}
|
|
@@ -93,6 +97,8 @@ export interface UpdateStackCommandOutput extends UpdateStackOutput, __MetadataB
|
|
|
93
97
|
* @throws {@link TokenAlreadyExistsException} (client fault)
|
|
94
98
|
* <p>A client request token already exists.</p>
|
|
95
99
|
*
|
|
100
|
+
* @throws {@link CloudFormationServiceException}
|
|
101
|
+
* <p>Base exception class for all service exceptions from CloudFormation service.</p>
|
|
96
102
|
*
|
|
97
103
|
*/
|
|
98
104
|
export declare class UpdateStackCommand extends $Command<UpdateStackCommandInput, UpdateStackCommandOutput, CloudFormationClientResolvedConfig> {
|