Skip to content

Commit 9051437

Browse files
author
awstools
committed
feat(client-cloudformation): Add a new parameter statusReason to DescribeStackSetOperation output for additional details
1 parent 6c5b677 commit 9051437

File tree

11 files changed

+173
-127
lines changed

11 files changed

+173
-127
lines changed

clients/client-cloudformation/src/CloudFormation.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -743,8 +743,8 @@ export class CloudFormation extends CloudFormationClient {
743743
}
744744

745745
/**
746-
* <p>Deletes a stack set. Before you can delete a stack set, all of its member stack
747-
* instances must be deleted. For more information about how to do this, see <a>DeleteStackInstances</a>.</p>
746+
* <p>Deletes a stack set. Before you can delete a stack set, all its member stack instances
747+
* must be deleted. For more information about how to complete this, see <a>DeleteStackInstances</a>.</p>
748748
*/
749749
public deleteStackSet(
750750
args: DeleteStackSetCommandInput,
@@ -920,7 +920,7 @@ export class CloudFormation extends CloudFormationClient {
920920
* <p>If you don't supply a <code>PublisherId</code>, and you have registered as an extension
921921
* publisher, <code>DescribePublisher</code> returns information about your own publisher
922922
* account.</p>
923-
* <p>For more information on registering as a publisher, see:</p>
923+
* <p>For more information about registering as a publisher, see:</p>
924924
* <ul>
925925
* <li>
926926
* <p>
@@ -969,7 +969,7 @@ export class CloudFormation extends CloudFormationClient {
969969
* operation detects whether a stack's actual configuration differs, or has
970970
* <i>drifted</i>, from it's expected configuration, as defined in the stack
971971
* template and any values specified as template parameters. A stack is considered to have
972-
* drifted if one or more of its resources have drifted. For more information on stack and
972+
* drifted if one or more of its resources have drifted. For more information about stack and
973973
* resource drift, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html">Detecting
974974
* Unregulated Configuration Changes to Stacks and Resources</a>.</p>
975975
* <p>Use <a>DetectStackDrift</a> to initiate a stack drift detection operation.
@@ -1511,7 +1511,7 @@ export class CloudFormation extends CloudFormationClient {
15111511
* drift time checked.</p>
15121512
* </li>
15131513
* </ul>
1514-
* <p>For more information on performing a drift detection operation on a stack set, see
1514+
* <p>For more information about performing a drift detection operation on a stack set, see
15151515
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-drift.html">Detecting unmanaged
15161516
* changes in stack sets</a>.</p>
15171517
* <p>You can only run a single drift detection operation on a given stack set at one
@@ -2168,7 +2168,7 @@ export class CloudFormation extends CloudFormationClient {
21682168

21692169
/**
21702170
* <p>Publishes the specified extension to the CloudFormation registry as a public
2171-
* extension in this region. Public extensions are available for use by all CloudFormation users. For more information on publishing extensions, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html">Publishing extensions to make them available for public use</a> in the
2171+
* extension in this region. Public extensions are available for use by all CloudFormation users. For more information about publishing extensions, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html">Publishing extensions to make them available for public use</a> in the
21722172
* <i>CloudFormation CLI User Guide</i>.</p>
21732173
* <p>To publish an extension, you must be registered as a publisher with CloudFormation. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterPublisher.html">RegisterPublisher</a>.</p>
21742174
*/
@@ -2231,7 +2231,7 @@ export class CloudFormation extends CloudFormationClient {
22312231
/**
22322232
* <p>Registers your account as a publisher of public extensions in the CloudFormation registry. Public extensions are available for use by all CloudFormation users.
22332233
* This publisher ID applies to your account in all Amazon Web Services Regions.</p>
2234-
* <p>For information on requirements for registering as a public extension publisher, see
2234+
* <p>For information about requirements for registering as a public extension publisher, see
22352235
* <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html#publish-extension-prereqs">Registering your account to publish CloudFormation
22362236
* extensions</a> in the <i>CloudFormation CLI User
22372237
* Guide</i>.</p>
@@ -2280,8 +2280,8 @@ export class CloudFormation extends CloudFormationClient {
22802280
* <p>Making the extension available for use in your account.</p>
22812281
* </li>
22822282
* </ul>
2283-
* <p>For more information on how to develop extensions and ready them for registration, see
2284-
* <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-types.html">Creating Resource
2283+
* <p>For more information about how to develop extensions and ready them for registration,
2284+
* see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-types.html">Creating Resource
22852285
* Providers</a> in the <i>CloudFormation CLI User
22862286
* Guide</i>.</p>
22872287
* <p>You can have a maximum of 50 resource extension versions registered at a time. This

clients/client-cloudformation/src/commands/DeleteStackSetCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ export interface DeleteStackSetCommandInput extends DeleteStackSetInput {}
2323
export interface DeleteStackSetCommandOutput extends DeleteStackSetOutput, __MetadataBearer {}
2424

2525
/**
26-
* <p>Deletes a stack set. Before you can delete a stack set, all of its member stack
27-
* instances must be deleted. For more information about how to do this, see <a>DeleteStackInstances</a>.</p>
26+
* <p>Deletes a stack set. Before you can delete a stack set, all its member stack instances
27+
* must be deleted. For more information about how to complete this, see <a>DeleteStackInstances</a>.</p>
2828
* @example
2929
* Use a bare-bones client and the command you need to make an API call.
3030
* ```javascript

clients/client-cloudformation/src/commands/DescribePublisherCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export interface DescribePublisherCommandOutput extends DescribePublisherOutput,
2727
* <p>If you don't supply a <code>PublisherId</code>, and you have registered as an extension
2828
* publisher, <code>DescribePublisher</code> returns information about your own publisher
2929
* account.</p>
30-
* <p>For more information on registering as a publisher, see:</p>
30+
* <p>For more information about registering as a publisher, see:</p>
3131
* <ul>
3232
* <li>
3333
* <p>

clients/client-cloudformation/src/commands/DescribeStackDriftDetectionStatusCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export interface DescribeStackDriftDetectionStatusCommandOutput
2929
* operation detects whether a stack's actual configuration differs, or has
3030
* <i>drifted</i>, from it's expected configuration, as defined in the stack
3131
* template and any values specified as template parameters. A stack is considered to have
32-
* drifted if one or more of its resources have drifted. For more information on stack and
32+
* drifted if one or more of its resources have drifted. For more information about stack and
3333
* resource drift, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html">Detecting
3434
* Unregulated Configuration Changes to Stacks and Resources</a>.</p>
3535
* <p>Use <a>DetectStackDrift</a> to initiate a stack drift detection operation.

clients/client-cloudformation/src/commands/DetectStackSetDriftCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export interface DetectStackSetDriftCommandOutput extends DetectStackSetDriftOut
6060
* drift time checked.</p>
6161
* </li>
6262
* </ul>
63-
* <p>For more information on performing a drift detection operation on a stack set, see
63+
* <p>For more information about performing a drift detection operation on a stack set, see
6464
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-drift.html">Detecting unmanaged
6565
* changes in stack sets</a>.</p>
6666
* <p>You can only run a single drift detection operation on a given stack set at one

clients/client-cloudformation/src/commands/PublishTypeCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export interface PublishTypeCommandOutput extends PublishTypeOutput, __MetadataB
2121

2222
/**
2323
* <p>Publishes the specified extension to the CloudFormation registry as a public
24-
* extension in this region. Public extensions are available for use by all CloudFormation users. For more information on publishing extensions, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html">Publishing extensions to make them available for public use</a> in the
24+
* extension in this region. Public extensions are available for use by all CloudFormation users. For more information about publishing extensions, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html">Publishing extensions to make them available for public use</a> in the
2525
* <i>CloudFormation CLI User Guide</i>.</p>
2626
* <p>To publish an extension, you must be registered as a publisher with CloudFormation. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterPublisher.html">RegisterPublisher</a>.</p>
2727
* @example

clients/client-cloudformation/src/commands/RegisterPublisherCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export interface RegisterPublisherCommandOutput extends RegisterPublisherOutput,
2525
/**
2626
* <p>Registers your account as a publisher of public extensions in the CloudFormation registry. Public extensions are available for use by all CloudFormation users.
2727
* This publisher ID applies to your account in all Amazon Web Services Regions.</p>
28-
* <p>For information on requirements for registering as a public extension publisher, see
28+
* <p>For information about requirements for registering as a public extension publisher, see
2929
* <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html#publish-extension-prereqs">Registering your account to publish CloudFormation
3030
* extensions</a> in the <i>CloudFormation CLI User
3131
* Guide</i>.</p>

clients/client-cloudformation/src/commands/RegisterTypeCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ export interface RegisterTypeCommandOutput extends RegisterTypeOutput, __Metadat
3333
* <p>Making the extension available for use in your account.</p>
3434
* </li>
3535
* </ul>
36-
* <p>For more information on how to develop extensions and ready them for registration, see
37-
* <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-types.html">Creating Resource
36+
* <p>For more information about how to develop extensions and ready them for registration,
37+
* see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-types.html">Creating Resource
3838
* Providers</a> in the <i>CloudFormation CLI User
3939
* Guide</i>.</p>
4040
* <p>You can have a maximum of 50 resource extension versions registered at a time. This

0 commit comments

Comments
 (0)