From e0bad165e848f8f066b5eb021b486bceb46e7cfe Mon Sep 17 00:00:00 2001 From: aws-sdk-go-automation <43143561+aws-sdk-go-automation@users.noreply.github.com> Date: Wed, 9 Feb 2022 11:20:55 -0800 Subject: [PATCH] Release v1.42.50 (2022-02-09) (#4274) Release v1.42.50 (2022-02-09) === ### Service Client Updates * `service/cloudformation`: Updates service API and documentation * This SDK release is for the feature launch of AWS CloudFormation Hooks. --- CHANGELOG.md | 7 + aws/version.go | 2 +- .../apis/cloudformation/2010-05-15/api-2.json | 151 +- .../cloudformation/2010-05-15/docs-2.json | 620 +++++--- service/cloudformation/api.go | 1351 ++++++++++++----- .../cloudformationiface/interface.go | 4 + service/cloudformation/doc.go | 10 +- service/cloudformation/errors.go | 15 +- 8 files changed, 1519 insertions(+), 641 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d476b089cd..f3adba42b07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +Release v1.42.50 (2022-02-09) +=== + +### Service Client Updates +* `service/cloudformation`: Updates service API and documentation + * This SDK release is for the feature launch of AWS CloudFormation Hooks. + Release v1.42.49 (2022-02-08) === diff --git a/aws/version.go b/aws/version.go index 55fd58620bd..0a57a3146f2 100644 --- a/aws/version.go +++ b/aws/version.go @@ -5,4 +5,4 @@ package aws const SDKName = "aws-sdk-go" // SDKVersion is the version of this SDK -const SDKVersion = "1.42.49" +const SDKVersion = "1.42.50" diff --git a/models/apis/cloudformation/2010-05-15/api-2.json b/models/apis/cloudformation/2010-05-15/api-2.json index cbfe679f2b5..6e8a9d5e5c5 100644 --- a/models/apis/cloudformation/2010-05-15/api-2.json +++ b/models/apis/cloudformation/2010-05-15/api-2.json @@ -264,6 +264,21 @@ {"shape":"ChangeSetNotFoundException"} ] }, + "DescribeChangeSetHooks":{ + "name":"DescribeChangeSetHooks", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeChangeSetHooksInput"}, + "output":{ + "shape":"DescribeChangeSetHooksOutput", + "resultWrapper":"DescribeChangeSetHooksResult" + }, + "errors":[ + {"shape":"ChangeSetNotFoundException"} + ] + }, "DescribePublisher":{ "name":"DescribePublisher", "http":{ @@ -1158,6 +1173,7 @@ "type":"structure", "members":{ "Type":{"shape":"ChangeType"}, + "HookInvocationCount":{"shape":"HookInvocationCount"}, "ResourceChange":{"shape":"ResourceChange"} } }, @@ -1171,6 +1187,44 @@ "Dynamic" ] }, + "ChangeSetHook":{ + "type":"structure", + "members":{ + "InvocationPoint":{"shape":"HookInvocationPoint"}, + "FailureMode":{"shape":"HookFailureMode"}, + "TypeName":{"shape":"HookTypeName"}, + "TypeVersionId":{"shape":"HookTypeVersionId"}, + "TypeConfigurationVersionId":{"shape":"HookTypeConfigurationVersionId"}, + "TargetDetails":{"shape":"ChangeSetHookTargetDetails"} + } + }, + "ChangeSetHookResourceTargetDetails":{ + "type":"structure", + "members":{ + "LogicalResourceId":{"shape":"LogicalResourceId"}, + "ResourceType":{"shape":"HookTargetTypeName"}, + "ResourceAction":{"shape":"ChangeAction"} + } + }, + "ChangeSetHookTargetDetails":{ + "type":"structure", + "members":{ + "TargetType":{"shape":"HookTargetType"}, + "ResourceTargetDetails":{"shape":"ChangeSetHookResourceTargetDetails"} + } + }, + "ChangeSetHooks":{ + "type":"list", + "member":{"shape":"ChangeSetHook"} + }, + "ChangeSetHooksStatus":{ + "type":"string", + "enum":[ + "PLANNING", + "PLANNED", + "UNAVAILABLE" + ] + }, "ChangeSetId":{ "type":"string", "min":1, @@ -1547,6 +1601,28 @@ "NextToken":{"shape":"NextToken"} } }, + "DescribeChangeSetHooksInput":{ + "type":"structure", + "required":["ChangeSetName"], + "members":{ + "ChangeSetName":{"shape":"ChangeSetNameOrId"}, + "StackName":{"shape":"StackNameOrId"}, + "NextToken":{"shape":"NextToken"}, + "LogicalResourceId":{"shape":"LogicalResourceId"} + } + }, + "DescribeChangeSetHooksOutput":{ + "type":"structure", + "members":{ + "ChangeSetId":{"shape":"ChangeSetId"}, + "ChangeSetName":{"shape":"ChangeSetName"}, + "Hooks":{"shape":"ChangeSetHooks"}, + "Status":{"shape":"ChangeSetHooksStatus"}, + "NextToken":{"shape":"NextToken"}, + "StackId":{"shape":"StackId"}, + "StackName":{"shape":"StackName"} + } + }, "DescribeChangeSetInput":{ "type":"structure", "required":["ChangeSetName"], @@ -2042,6 +2118,68 @@ "InvalidTypeConfiguration" ] }, + "HookFailureMode":{ + "type":"string", + "enum":[ + "FAIL", + "WARN" + ] + }, + "HookInvocationCount":{ + "type":"integer", + "max":100, + "min":1 + }, + "HookInvocationPoint":{ + "type":"string", + "enum":["PRE_PROVISION"] + }, + "HookStatus":{ + "type":"string", + "enum":[ + "HOOK_IN_PROGRESS", + "HOOK_COMPLETE_SUCCEEDED", + "HOOK_COMPLETE_FAILED", + "HOOK_FAILED" + ] + }, + "HookStatusReason":{ + "type":"string", + "max":1024, + "min":1 + }, + "HookTargetType":{ + "type":"string", + "enum":["RESOURCE"] + }, + "HookTargetTypeName":{ + "type":"string", + "max":256, + "min":1, + "pattern":"^[a-zA-Z0-9]{2,64}::[a-zA-Z0-9]{2,64}::[a-zA-Z0-9]{2,64}$" + }, + "HookType":{ + "type":"string", + "max":255, + "min":1 + }, + "HookTypeConfigurationVersionId":{ + "type":"string", + "max":128, + "min":1, + "pattern":"[A-Za-z0-9-]+" + }, + "HookTypeName":{ + "type":"string", + "max":196, + "min":10 + }, + "HookTypeVersionId":{ + "type":"string", + "max":128, + "min":1, + "pattern":"[A-Za-z0-9-]+" + }, "IdentityProvider":{ "type":"string", "enum":[ @@ -2758,7 +2896,8 @@ "type":"string", "enum":[ "RESOURCE", - "MODULE" + "MODULE", + "HOOK" ] }, "Replacement":{ @@ -3172,7 +3311,12 @@ "ResourceStatus":{"shape":"ResourceStatus"}, "ResourceStatusReason":{"shape":"ResourceStatusReason"}, "ResourceProperties":{"shape":"ResourceProperties"}, - "ClientRequestToken":{"shape":"ClientRequestToken"} + "ClientRequestToken":{"shape":"ClientRequestToken"}, + "HookType":{"shape":"HookType"}, + "HookStatus":{"shape":"HookStatus"}, + "HookStatusReason":{"shape":"HookStatusReason"}, + "HookInvocationPoint":{"shape":"HookInvocationPoint"}, + "HookFailureMode":{"shape":"HookFailureMode"} } }, "StackEvents":{ @@ -3825,7 +3969,8 @@ "type":"string", "enum":[ "RESOURCE", - "MODULE" + "MODULE", + "HOOK" ] }, "ThirdPartyTypeArn":{ diff --git a/models/apis/cloudformation/2010-05-15/docs-2.json b/models/apis/cloudformation/2010-05-15/docs-2.json index 25eab63bc80..7a1fd4c2617 100644 --- a/models/apis/cloudformation/2010-05-15/docs-2.json +++ b/models/apis/cloudformation/2010-05-15/docs-2.json @@ -1,71 +1,72 @@ { "version": "2.0", - "service": "AWS CloudFormation

CloudFormation allows you to create and manage Amazon Web Services infrastructure deployments predictably and repeatedly. You can use CloudFormation to leverage Amazon Web Services products, such as Amazon Elastic Compute Cloud, Amazon Elastic Block Store, Amazon Simple Notification Service, Elastic Load Balancing, and Auto Scaling to build highly-reliable, highly scalable, cost-effective applications without creating or configuring the underlying Amazon Web Services infrastructure.

With CloudFormation, you declare all of your resources and dependencies in a template file. The template defines a collection of resources as a single unit called a stack. CloudFormation creates and deletes all member resources of the stack together and manages all dependencies between the resources for you.

For more information about CloudFormation, see the CloudFormation Product Page.

CloudFormation makes use of other Amazon Web Services products. If you need additional technical information about a specific Amazon Web Services product, you can find the product's technical documentation at docs.aws.amazon.com .

", + "service": "CloudFormation

CloudFormation allows you to create and manage Amazon Web Services infrastructure deployments predictably and repeatedly. You can use CloudFormation to leverage Amazon Web Services products, such as Amazon Elastic Compute Cloud, Amazon Elastic Block Store, Amazon Simple Notification Service, Elastic Load Balancing, and Auto Scaling to build highly reliable, highly scalable, cost-effective applications without creating or configuring the underlying Amazon Web Services infrastructure.

With CloudFormation, you declare all your resources and dependencies in a template file. The template defines a collection of resources as a single unit called a stack. CloudFormation creates and deletes all member resources of the stack together and manages all dependencies between the resources for you.

For more information about CloudFormation, see the CloudFormation product page.

CloudFormation makes use of other Amazon Web Services products. If you need additional technical information about a specific Amazon Web Services product, you can find the product's technical documentation at docs.aws.amazon.com .

", "operations": { "ActivateType": "

Activates a public third-party extension, making it available for use in stack templates. For more information, see Using public extensions in the CloudFormation User Guide.

Once you have activated a public third-party extension in your account and region, use SetTypeConfiguration to specify configuration properties for the extension. For more information, see Configuring extensions at the account level in the CloudFormation User Guide.

", "BatchDescribeTypeConfigurations": "

Returns configuration data for the specified CloudFormation extensions, from the CloudFormation registry for the account and region.

For more information, see Configuring extensions at the account level in the CloudFormation User Guide.

", - "CancelUpdateStack": "

Cancels an update on the specified stack. If the call completes successfully, the stack rolls back the update and reverts to the previous stack configuration.

You can cancel only stacks that are in the UPDATE_IN_PROGRESS state.

", - "ContinueUpdateRollback": "

For a specified stack that is in the UPDATE_ROLLBACK_FAILED state, continues rolling it back to the UPDATE_ROLLBACK_COMPLETE state. Depending on the cause of the failure, you can manually fix the error and continue the rollback. By continuing the rollback, you can return your stack to a working state (the UPDATE_ROLLBACK_COMPLETE state), and then try to update the stack again.

A stack goes into the UPDATE_ROLLBACK_FAILED state when CloudFormation cannot roll back all changes after a failed stack update. For example, you might have a stack that is rolling back to an old database instance that was deleted outside of CloudFormation. Because CloudFormation doesn't know the database was deleted, it assumes that the database instance still exists and attempts to roll back to it, causing the update rollback to fail.

", - "CreateChangeSet": "

Creates a list of changes that will be applied to a stack so that you can review the changes before executing them. You can create a change set for a stack that doesn't exist or an existing stack. If you create a change set for a stack that doesn't exist, the change set shows all of the resources that CloudFormation will create. If you create a change set for an existing stack, CloudFormation compares the stack's information with the information that you submit in the change set and lists the differences. Use change sets to understand which resources CloudFormation will create or change, and how it will change resources in an existing stack, before you create or update a stack.

To create a change set for a stack that doesn't exist, for the ChangeSetType parameter, specify CREATE. To create a change set for an existing stack, specify UPDATE for the ChangeSetType parameter. To create a change set for an import operation, specify IMPORT for the ChangeSetType parameter. After the CreateChangeSet call successfully completes, CloudFormation starts creating the change set. To check the status of the change set or to review it, use the DescribeChangeSet action.

When you are satisfied with the changes the change set will make, execute the change set by using the ExecuteChangeSet action. CloudFormation doesn't make changes until you execute the change set.

To create a change set for the entire stack hierachy, set IncludeNestedStacks to True.

", - "CreateStack": "

Creates a stack as specified in the template. After the call completes successfully, the stack creation starts. You can check the status of the stack via the DescribeStacks API.

", - "CreateStackInstances": "

Creates stack instances for the specified accounts, within the specified Regions. A stack instance refers to a stack in a specific account and Region. You must specify at least one value for either Accounts or DeploymentTargets, and you must specify at least one value for Regions.

", + "CancelUpdateStack": "

Cancels an update on the specified stack. If the call completes successfully, the stack rolls back the update and reverts to the previous stack configuration.

You can cancel only stacks that are in the UPDATE_IN_PROGRESS state.

", + "ContinueUpdateRollback": "

For a specified stack that's in the UPDATE_ROLLBACK_FAILED state, continues rolling it back to the UPDATE_ROLLBACK_COMPLETE state. Depending on the cause of the failure, you can manually fix the error and continue the rollback. By continuing the rollback, you can return your stack to a working state (the UPDATE_ROLLBACK_COMPLETE state), and then try to update the stack again.

A stack goes into the UPDATE_ROLLBACK_FAILED state when CloudFormation can't roll back all changes after a failed stack update. For example, you might have a stack that's rolling back to an old database instance that was deleted outside of CloudFormation. Because CloudFormation doesn't know the database was deleted, it assumes that the database instance still exists and attempts to roll back to it, causing the update rollback to fail.

", + "CreateChangeSet": "

Creates a list of changes that will be applied to a stack so that you can review the changes before executing them. You can create a change set for a stack that doesn't exist or an existing stack. If you create a change set for a stack that doesn't exist, the change set shows all of the resources that CloudFormation will create. If you create a change set for an existing stack, CloudFormation compares the stack's information with the information that you submit in the change set and lists the differences. Use change sets to understand which resources CloudFormation will create or change, and how it will change resources in an existing stack, before you create or update a stack.

To create a change set for a stack that doesn't exist, for the ChangeSetType parameter, specify CREATE. To create a change set for an existing stack, specify UPDATE for the ChangeSetType parameter. To create a change set for an import operation, specify IMPORT for the ChangeSetType parameter. After the CreateChangeSet call successfully completes, CloudFormation starts creating the change set. To check the status of the change set or to review it, use the DescribeChangeSet action.

When you are satisfied with the changes the change set will make, execute the change set by using the ExecuteChangeSet action. CloudFormation doesn't make changes until you execute the change set.

To create a change set for the entire stack hierarchy, set IncludeNestedStacks to True.

", + "CreateStack": "

Creates a stack as specified in the template. After the call completes successfully, the stack creation starts. You can check the status of the stack through the DescribeStacksoperation.

", + "CreateStackInstances": "

Creates stack instances for the specified accounts, within the specified Amazon Web Services Regions. A stack instance refers to a stack in a specific account and Region. You must specify at least one value for either Accounts or DeploymentTargets, and you must specify at least one value for Regions.

", "CreateStackSet": "

Creates a stack set.

", - "DeactivateType": "

Deactivates a public extension that was previously activated in this account and region.

Once deactivated, an extension cannot be used in any CloudFormation operation. This includes stack update operations where the stack template includes the extension, even if no updates are being made to the extension. In addition, deactivated extensions are not automatically updated if a new version of the extension is released.

", + "DeactivateType": "

Deactivates a public extension that was previously activated in this account and region.

Once deactivated, an extension can't be used in any CloudFormation operation. This includes stack update operations where the stack template includes the extension, even if no updates are being made to the extension. In addition, deactivated extensions aren't automatically updated if a new version of the extension is released.

", "DeleteChangeSet": "

Deletes the specified change set. Deleting change sets ensures that no one executes the wrong change set.

If the call successfully completes, CloudFormation successfully deleted the change set.

If IncludeNestedStacks specifies True during the creation of the nested change set, then DeleteChangeSet will delete all change sets that belong to the stacks hierarchy and will also delete all change sets for nested stacks with the status of REVIEW_IN_PROGRESS.

", - "DeleteStack": "

Deletes a specified stack. Once the call completes successfully, stack deletion starts. Deleted stacks do not show up in the DescribeStacks API if the deletion has been completed successfully.

", - "DeleteStackInstances": "

Deletes stack instances for the specified accounts, in the specified Regions.

", + "DeleteStack": "

Deletes a specified stack. Once the call completes successfully, stack deletion starts. Deleted stacks don't show up in the DescribeStacks operation if the deletion has been completed successfully.

", + "DeleteStackInstances": "

Deletes stack instances for the specified accounts, in the specified Amazon Web Services Regions.

", "DeleteStackSet": "

Deletes a stack set. Before you can delete a stack set, all of its member stack instances must be deleted. For more information about how to do this, see DeleteStackInstances.

", - "DeregisterType": "

Marks an extension or extension version as DEPRECATED in the CloudFormation registry, removing it from active use. Deprecated extensions or extension versions cannot be used in CloudFormation operations.

To deregister an entire extension, you must individually deregister all active versions of that extension. If an extension has only a single active version, deregistering that version results in the extension itself being deregistered and marked as deprecated in the registry.

You cannot deregister the default version of an extension if there are other active version of that extension. If you do deregister the default version of an extension, the textensionype itself is deregistered as well and marked as deprecated.

To view the deprecation status of an extension or extension version, use DescribeType.

", - "DescribeAccountLimits": "

Retrieves your account's CloudFormation limits, such as the maximum number of stacks that you can create in your account. For more information about account limits, see CloudFormation Limits in the CloudFormation User Guide.

", + "DeregisterType": "

Marks an extension or extension version as DEPRECATED in the CloudFormation registry, removing it from active use. Deprecated extensions or extension versions cannot be used in CloudFormation operations.

To deregister an entire extension, you must individually deregister all active versions of that extension. If an extension has only a single active version, deregistering that version results in the extension itself being deregistered and marked as deprecated in the registry.

You can't deregister the default version of an extension if there are other active version of that extension. If you do deregister the default version of an extension, the extension type itself is deregistered as well and marked as deprecated.

To view the deprecation status of an extension or extension version, use DescribeType.

", + "DescribeAccountLimits": "

Retrieves your account's CloudFormation limits, such as the maximum number of stacks that you can create in your account. For more information about account limits, see CloudFormation Quotas in the CloudFormation User Guide.

", "DescribeChangeSet": "

Returns the inputs for the change set and a list of changes that CloudFormation will make if you execute the change set. For more information, see Updating Stacks Using Change Sets in the CloudFormation User Guide.

", - "DescribePublisher": "

Returns information about a CloudFormation extension publisher.

If you do not supply a PublisherId, and you have registered as an extension publisher, DescribePublisher returns information about your own publisher account.

For more information on registering as a publisher, see:

", + "DescribeChangeSetHooks": "

Returns hook-related information for the change set and a list of changes that CloudFormation makes when you run the change set.

", + "DescribePublisher": "

Returns information about a CloudFormation extension publisher.

If you don't supply a PublisherId, and you have registered as an extension publisher, DescribePublisher returns information about your own publisher account.

For more information on registering as a publisher, see:

", "DescribeStackDriftDetectionStatus": "

Returns information about a stack drift detection operation. A stack drift detection operation detects whether a stack's actual configuration differs, or has drifted, from it's expected configuration, as defined in the stack template and any values specified as template parameters. A stack is considered to have drifted if one or more of its resources have drifted. For more information on stack and resource drift, see Detecting Unregulated Configuration Changes to Stacks and Resources.

Use DetectStackDrift to initiate a stack drift detection operation. DetectStackDrift returns a StackDriftDetectionId you can use to monitor the progress of the operation using DescribeStackDriftDetectionStatus. Once the drift detection operation has completed, use DescribeStackResourceDrifts to return drift information about the stack and its resources.

", "DescribeStackEvents": "

Returns all stack related events for a specified stack in reverse chronological order. For more information about a stack's event history, go to Stacks in the CloudFormation User Guide.

You can list events for stacks that have failed to create or have been deleted by specifying the unique stack identifier (stack ID).

", "DescribeStackInstance": "

Returns the stack instance that's associated with the specified stack set, Amazon Web Services account, and Region.

For a list of stack instances that are associated with a specific stack set, use ListStackInstances.

", "DescribeStackResource": "

Returns a description of the specified resource in the specified stack.

For deleted stacks, DescribeStackResource returns resource information for up to 90 days after the stack has been deleted.

", - "DescribeStackResourceDrifts": "

Returns drift information for the resources that have been checked for drift in the specified stack. This includes actual and expected configuration values for resources where CloudFormation detects configuration drift.

For a given stack, there will be one StackResourceDrift for each stack resource that has been checked for drift. Resources that haven't yet been checked for drift are not included. Resources that do not currently support drift detection are not checked, and so not included. For a list of resources that support drift detection, see Resources that Support Drift Detection.

Use DetectStackResourceDrift to detect drift on individual resources, or DetectStackDrift to detect drift on all supported resources for a given stack.

", + "DescribeStackResourceDrifts": "

Returns drift information for the resources that have been checked for drift in the specified stack. This includes actual and expected configuration values for resources where CloudFormation detects configuration drift.

For a given stack, there will be one StackResourceDrift for each stack resource that has been checked for drift. Resources that haven't yet been checked for drift aren't included. Resources that don't currently support drift detection aren't checked, and so not included. For a list of resources that support drift detection, see Resources that Support Drift Detection.

Use DetectStackResourceDrift to detect drift on individual resources, or DetectStackDrift to detect drift on all supported resources for a given stack.

", "DescribeStackResources": "

Returns Amazon Web Services resource descriptions for running and deleted stacks. If StackName is specified, all the associated resources that are part of the stack are returned. If PhysicalResourceId is specified, the associated resources of the stack that the resource belongs to are returned.

Only the first 100 resources will be returned. If your stack has more resources than this, you should use ListStackResources instead.

For deleted stacks, DescribeStackResources returns resource information for up to 90 days after the stack has been deleted.

You must specify either StackName or PhysicalResourceId, but not both. In addition, you can specify LogicalResourceId to filter the returned result. For more information about resources, the LogicalResourceId and PhysicalResourceId, go to the CloudFormation User Guide.

A ValidationError is returned if you specify both StackName and PhysicalResourceId in the same request.

", - "DescribeStackSet": "

Returns the description of the specified stack set.

", - "DescribeStackSetOperation": "

Returns the description of the specified stack set operation.

", - "DescribeStacks": "

Returns the description for the specified stack; if no stack name was specified, then it returns the description for all the stacks created.

If the stack does not exist, an ValidationError is returned.

", + "DescribeStackSet": "

Returns the description of the specified stack set.

", + "DescribeStackSetOperation": "

Returns the description of the specified stack set operation.

", + "DescribeStacks": "

Returns the description for the specified stack; if no stack name was specified, then it returns the description for all the stacks created.

If the stack doesn't exist, an ValidationError is returned.

", "DescribeType": "

Returns detailed information about an extension that has been registered.

If you specify a VersionId, DescribeType returns information about that specific extension version. Otherwise, it returns information about the default extension version.

", "DescribeTypeRegistration": "

Returns information about an extension's registration, including its current status and type and version identifiers.

When you initiate a registration request using RegisterType , you can then use DescribeTypeRegistration to monitor the progress of that registration request.

Once the registration request has completed, use DescribeType to return detailed information about an extension.

", - "DetectStackDrift": "

Detects whether a stack's actual configuration differs, or has drifted, from it's expected configuration, as defined in the stack template and any values specified as template parameters. For each resource in the stack that supports drift detection, CloudFormation compares the actual configuration of the resource with its expected template configuration. Only resource properties explicitly defined in the stack template are checked for drift. A stack is considered to have drifted if one or more of its resources differ from their expected template configurations. For more information, see Detecting Unregulated Configuration Changes to Stacks and Resources.

Use DetectStackDrift to detect drift on all supported resources for a given stack, or DetectStackResourceDrift to detect drift on individual resources.

For a list of stack resources that currently support drift detection, see Resources that Support Drift Detection.

DetectStackDrift can take up to several minutes, depending on the number of resources contained within the stack. Use DescribeStackDriftDetectionStatus to monitor the progress of a detect stack drift operation. Once the drift detection operation has completed, use DescribeStackResourceDrifts to return drift information about the stack and its resources.

When detecting drift on a stack, CloudFormation does not detect drift on any nested stacks belonging to that stack. Perform DetectStackDrift directly on the nested stack itself.

", - "DetectStackResourceDrift": "

Returns information about whether a resource's actual configuration differs, or has drifted, from it's expected configuration, as defined in the stack template and any values specified as template parameters. This information includes actual and expected property values for resources in which CloudFormation detects drift. Only resource properties explicitly defined in the stack template are checked for drift. For more information about stack and resource drift, see Detecting Unregulated Configuration Changes to Stacks and Resources.

Use DetectStackResourceDrift to detect drift on individual resources, or DetectStackDrift to detect drift on all resources in a given stack that support drift detection.

Resources that do not currently support drift detection cannot be checked. For a list of resources that support drift detection, see Resources that Support Drift Detection.

", - "DetectStackSetDrift": "

Detect drift on a stack set. When CloudFormation performs drift detection on a stack set, it performs drift detection on the stack associated with each stack instance in the stack set. For more information, see How CloudFormation Performs Drift Detection on a Stack Set.

DetectStackSetDrift returns the OperationId of the stack set drift detection operation. Use this operation id with DescribeStackSetOperation to monitor the progress of the drift detection operation. The drift detection operation may take some time, depending on the number of stack instances included in the stack set, as well as the number of resources included in each stack.

Once the operation has completed, use the following actions to return drift information:

For more information on performing a drift detection operation on a stack set, see Detecting Unmanaged Changes in Stack Sets.

You can only run a single drift detection operation on a given stack set at one time.

To stop a drift detection stack set operation, use StopStackSetOperation .

", + "DetectStackDrift": "

Detects whether a stack's actual configuration differs, or has drifted, from it's expected configuration, as defined in the stack template and any values specified as template parameters. For each resource in the stack that supports drift detection, CloudFormation compares the actual configuration of the resource with its expected template configuration. Only resource properties explicitly defined in the stack template are checked for drift. A stack is considered to have drifted if one or more of its resources differ from their expected template configurations. For more information, see Detecting Unregulated Configuration Changes to Stacks and Resources.

Use DetectStackDrift to detect drift on all supported resources for a given stack, or DetectStackResourceDrift to detect drift on individual resources.

For a list of stack resources that currently support drift detection, see Resources that Support Drift Detection.

DetectStackDrift can take up to several minutes, depending on the number of resources contained within the stack. Use DescribeStackDriftDetectionStatus to monitor the progress of a detect stack drift operation. Once the drift detection operation has completed, use DescribeStackResourceDrifts to return drift information about the stack and its resources.

When detecting drift on a stack, CloudFormation doesn't detect drift on any nested stacks belonging to that stack. Perform DetectStackDrift directly on the nested stack itself.

", + "DetectStackResourceDrift": "

Returns information about whether a resource's actual configuration differs, or has drifted, from it's expected configuration, as defined in the stack template and any values specified as template parameters. This information includes actual and expected property values for resources in which CloudFormation detects drift. Only resource properties explicitly defined in the stack template are checked for drift. For more information about stack and resource drift, see Detecting Unregulated Configuration Changes to Stacks and Resources.

Use DetectStackResourceDrift to detect drift on individual resources, or DetectStackDrift to detect drift on all resources in a given stack that support drift detection.

Resources that don't currently support drift detection can't be checked. For a list of resources that support drift detection, see Resources that Support Drift Detection.

", + "DetectStackSetDrift": "

Detect drift on a stack set. When CloudFormation performs drift detection on a stack set, it performs drift detection on the stack associated with each stack instance in the stack set. For more information, see How CloudFormation performs drift detection on a stack set.

DetectStackSetDrift returns the OperationId of the stack set drift detection operation. Use this operation id with DescribeStackSetOperation to monitor the progress of the drift detection operation. The drift detection operation may take some time, depending on the number of stack instances included in the stack set, in addition to the number of resources included in each stack.

Once the operation has completed, use the following actions to return drift information:

For more information on performing a drift detection operation on a stack set, see Detecting unmanaged changes in stack sets.

You can only run a single drift detection operation on a given stack set at one time.

To stop a drift detection stack set operation, use StopStackSetOperation .

", "EstimateTemplateCost": "

Returns the estimated monthly cost of a template. The return value is an Amazon Web Services Simple Monthly Calculator URL with a query string that describes the resources required to run the template.

", - "ExecuteChangeSet": "

Updates a stack using the input information that was provided when the specified change set was created. After the call successfully completes, CloudFormation starts updating the stack. Use the DescribeStacks action to view the status of the update.

When you execute a change set, CloudFormation deletes all other change sets associated with the stack because they aren't valid for the updated stack.

If a stack policy is associated with the stack, CloudFormation enforces the policy during the update. You can't specify a temporary stack policy that overrides the current policy.

To create a change set for the entire stack hierachy, IncludeNestedStacks must have been set to True.

", + "ExecuteChangeSet": "

Updates a stack using the input information that was provided when the specified change set was created. After the call successfully completes, CloudFormation starts updating the stack. Use the DescribeStacks action to view the status of the update.

When you execute a change set, CloudFormation deletes all other change sets associated with the stack because they aren't valid for the updated stack.

If a stack policy is associated with the stack, CloudFormation enforces the policy during the update. You can't specify a temporary stack policy that overrides the current policy.

To create a change set for the entire stack hierarchy, IncludeNestedStacks must have been set to True.

", "GetStackPolicy": "

Returns the stack policy for a specified stack. If a stack doesn't have a policy, a null value is returned.

", - "GetTemplate": "

Returns the template body for a specified stack. You can get the template for running or deleted stacks.

For deleted stacks, GetTemplate returns the template for up to 90 days after the stack has been deleted.

If the template does not exist, a ValidationError is returned.

", - "GetTemplateSummary": "

Returns information about a new or existing template. The GetTemplateSummary action is useful for viewing parameter information, such as default parameter values and parameter types, before you create or update a stack or stack set.

You can use the GetTemplateSummary action when you submit a template, or you can get template information for a stack set, or a running or deleted stack.

For deleted stacks, GetTemplateSummary returns the template information for up to 90 days after the stack has been deleted. If the template does not exist, a ValidationError is returned.

", - "ImportStacksToStackSet": "

Use the stack import operations for self-managed or service-managed StackSets. For self-managed StackSets, the import operation can import stacks in the administrator account or in different target accounts and Amazon Web Services Regions. For service-managed StackSets, the import operation can import any stack in the same AWS Organizations as the management account. The import operation can import up to 10 stacks using inline stack IDs or up to 10,000 stacks using an Amazon S3 object.

", + "GetTemplate": "

Returns the template body for a specified stack. You can get the template for running or deleted stacks.

For deleted stacks, GetTemplate returns the template for up to 90 days after the stack has been deleted.

If the template doesn't exist, a ValidationError is returned.

", + "GetTemplateSummary": "

Returns information about a new or existing template. The GetTemplateSummary action is useful for viewing parameter information, such as default parameter values and parameter types, before you create or update a stack or stack set.

You can use the GetTemplateSummary action when you submit a template, or you can get template information for a stack set, or a running or deleted stack.

For deleted stacks, GetTemplateSummary returns the template information for up to 90 days after the stack has been deleted. If the template doesn't exist, a ValidationError is returned.

", + "ImportStacksToStackSet": "

Import existing stacks into a new stack sets. Use the stack import operation to import up to 10 stacks into a new stack set in the same account as the source stack or in a different administrator account and Region, by specifying the stack ID of the stack you intend to import.

ImportStacksToStackSet is only supported by self-managed permissions.

", "ListChangeSets": "

Returns the ID and status of each active change set for a stack. For example, CloudFormation lists change sets that are in the CREATE_IN_PROGRESS or CREATE_PENDING state.

", - "ListExports": "

Lists all exported output values in the account and Region in which you call this action. Use this action to see the exported output values that you can import into other stacks. To import values, use the Fn::ImportValue function.

For more information, see CloudFormation Export Stack Output Values.

", + "ListExports": "

Lists all exported output values in the account and Region in which you call this action. Use this action to see the exported output values that you can import into other stacks. To import values, use the Fn::ImportValue function.

For more information, see CloudFormation export stack output values.

", "ListImports": "

Lists all stacks that are importing an exported output value. To modify or remove an exported output value, first use this action to see which stacks are using it. To see the exported output values in your account, see ListExports.

For more information about importing an exported output value, see the Fn::ImportValue function.

", "ListStackInstances": "

Returns summary information about stack instances that are associated with the specified stack set. You can filter for stack instances that are associated with a specific Amazon Web Services account name or Region, or that have a specific status.

", "ListStackResources": "

Returns descriptions of all resources of the specified stack.

For deleted stacks, ListStackResources returns resource information for up to 90 days after the stack has been deleted.

", - "ListStackSetOperationResults": "

Returns summary information about the results of a stack set operation.

", - "ListStackSetOperations": "

Returns summary information about operations performed on a stack set.

", + "ListStackSetOperationResults": "

Returns summary information about the results of a stack set operation.

", + "ListStackSetOperations": "

Returns summary information about operations performed on a stack set.

", "ListStackSets": "

Returns summary information about stack sets that are associated with the user.

", "ListStacks": "

Returns the summary information for stacks whose status matches the specified StackStatusFilter. Summary information for stacks that have been deleted is kept for 90 days after the stack is deleted. If no StackStatusFilter is specified, summary information for all stacks is returned (including existing stacks and stacks that have been deleted).

", "ListTypeRegistrations": "

Returns a list of registration tokens for the specified extension(s).

", "ListTypeVersions": "

Returns summary information about the versions of an extension.

", "ListTypes": "

Returns summary information about extension that have been registered with CloudFormation.

", "PublishType": "

Publishes the specified extension to the CloudFormation registry as a public extension in this region. Public extensions are available for use by all CloudFormation users. For more information on publishing extensions, see Publishing extensions to make them available for public use in the CloudFormation CLI User Guide.

To publish an extension, you must be registered as a publisher with CloudFormation. For more information, see RegisterPublisher.

", - "RecordHandlerProgress": "

Reports progress of a resource handler to CloudFormation.

Reserved for use by the CloudFormation CLI. Do not use this API in your code.

", + "RecordHandlerProgress": "

Reports progress of a resource handler to CloudFormation.

Reserved for use by the CloudFormation CLI. Don't use this API in your code.

", "RegisterPublisher": "

Registers your account as a publisher of public extensions in the CloudFormation registry. Public extensions are available for use by all CloudFormation users. This publisher ID applies to your account in all Amazon Web Services Regions.

For information on requirements for registering as a public extension publisher, see Registering your account to publish CloudFormation extensions in the CloudFormation CLI User Guide.

", - "RegisterType": "

Registers an extension with the CloudFormation service. Registering an extension makes it available for use in CloudFormation templates in your Amazon Web Services account, and includes:

For more information on how to develop extensions and ready them for registeration, see Creating Resource Providers in the CloudFormation CLI User Guide.

You can have a maximum of 50 resource extension versions registered at a time. This maximum is per account and per region. Use DeregisterType to deregister specific extension versions if necessary.

Once you have initiated a registration request using RegisterType , you can use DescribeTypeRegistration to monitor the progress of the registration request.

Once you have registered a private extension in your account and region, use SetTypeConfiguration to specify configuration properties for the extension. For more information, see Configuring extensions at the account level in the CloudFormation User Guide.

", - "RollbackStack": "

When specifying RollbackStack, you preserve the state of previously provisioned resources when an operation fails. You can check the status of the stack through the DescribeStacks API.

Rolls back the specified stack to the last known stable state from CREATE_FAILED or UPDATE_FAILED stack statuses.

This operation will delete a stack if it doesn't contain a last known stable state. A last known stable state includes any status in a *_COMPLETE. This includes the following stack statuses.

", + "RegisterType": "

Registers an extension with the CloudFormation service. Registering an extension makes it available for use in CloudFormation templates in your Amazon Web Services account, and includes:

For more information on how to develop extensions and ready them for registration, see Creating Resource Providers in the CloudFormation CLI User Guide.

You can have a maximum of 50 resource extension versions registered at a time. This maximum is per account and per region. Use DeregisterType to deregister specific extension versions if necessary.

Once you have initiated a registration request using RegisterType , you can use DescribeTypeRegistration to monitor the progress of the registration request.

Once you have registered a private extension in your account and region, use SetTypeConfiguration to specify configuration properties for the extension. For more information, see Configuring extensions at the account level in the CloudFormation User Guide.

", + "RollbackStack": "

When specifying RollbackStack, you preserve the state of previously provisioned resources when an operation fails. You can check the status of the stack through the DescribeStacks operation.

Rolls back the specified stack to the last known stable state from CREATE_FAILED or UPDATE_FAILED stack statuses.

This operation will delete a stack if it doesn't contain a last known stable state. A last known stable state includes any status in a *_COMPLETE. This includes the following stack statuses.

", "SetStackPolicy": "

Sets a stack policy for a specified stack.

", - "SetTypeConfiguration": "

Specifies the configuration data for a registered CloudFormation extension, in the given account and region.

To view the current configuration data for an extension, refer to the ConfigurationSchema element of DescribeType. For more information, see Configuring extensions at the account level in the CloudFormation User Guide.

It is strongly recommended that you use dynamic references to restrict sensitive configuration definitions, such as third-party credentials. For more details on dynamic references, see Using dynamic references to specify template values in the CloudFormation User Guide.

", + "SetTypeConfiguration": "

Specifies the configuration data for a registered CloudFormation extension, in the given account and region.

To view the current configuration data for an extension, refer to the ConfigurationSchema element of DescribeType. For more information, see Configuring extensions at the account level in the CloudFormation User Guide.

It's strongly recommended that you use dynamic references to restrict sensitive configuration definitions, such as third-party credentials. For more details on dynamic references, see Using dynamic references to specify template values in the CloudFormation User Guide.

", "SetTypeDefaultVersion": "

Specify the default version of an extension. The default version of an extension will be used in CloudFormation operations.

", - "SignalResource": "

Sends a signal to the specified resource with a success or failure status. You can use the SignalResource API in conjunction with a creation policy or update policy. CloudFormation doesn't proceed with a stack creation or update until resources receive the required number of signals or the timeout period is exceeded. The SignalResource API is useful in cases where you want to send signals from anywhere other than an Amazon EC2 instance.

", - "StopStackSetOperation": "

Stops an in-progress operation on a stack set and its associated stack instances.

", - "TestType": "

Tests a registered extension to make sure it meets all necessary requirements for being published in the CloudFormation registry.

For more information, see Testing your public extension prior to publishing in the CloudFormation CLI User Guide.

If you do not specify a version, CloudFormation uses the default version of the extension in your account and region for testing.

To perform testing, CloudFormation assumes the execution role specified when the type was registered. For more information, see RegisterType.

Once you've initiated testing on an extension using TestType, you can use DescribeType to monitor the current test status and test status description for the extension.

An extension must have a test status of PASSED before it can be published. For more information, see Publishing extensions to make them available for public use in the CloudFormation CLI User Guide.

", - "UpdateStack": "

Updates a stack as specified in the template. After the call completes successfully, the stack update starts. You can check the status of the stack via the DescribeStacks action.

To get a copy of the template for an existing stack, you can use the GetTemplate action.

For more information about creating an update template, updating a stack, and monitoring the progress of the update, see Updating a Stack.

", - "UpdateStackInstances": "

Updates the parameter values for stack instances for the specified accounts, within the specified Regions. A stack instance refers to a stack in a specific account and Region.

You can only update stack instances in Regions and accounts where they already exist; to create additional stack instances, use CreateStackInstances.

During stack set updates, any parameters overridden for a stack instance are not updated, but retain their overridden value.

You can only update the parameter values that are specified in the stack set; to add or delete a parameter itself, use UpdateStackSet to update the stack set template. If you add a parameter to a template, before you can override the parameter value specified in the stack set you must first use UpdateStackSet to update all stack instances with the updated template and parameter value specified in the stack set. Once a stack instance has been updated with the new parameter, you can then override the parameter value using UpdateStackInstances.

", - "UpdateStackSet": "

Updates the stack set, and associated stack instances in the specified accounts and Regions.

Even if the stack set operation created by updating the stack set fails (completely or partially, below or above a specified failure tolerance), the stack set is updated with your changes. Subsequent CreateStackInstances calls on the specified stack set use the updated stack set.

", - "UpdateTerminationProtection": "

Updates termination protection for the specified stack. If a user attempts to delete a stack with termination protection enabled, the operation fails and the stack remains unchanged. For more information, see Protecting a Stack From Being Deleted in the CloudFormation User Guide.

For nested stacks, termination protection is set on the root stack and cannot be changed directly on the nested stack.

", + "SignalResource": "

Sends a signal to the specified resource with a success or failure status. You can use the SignalResource operation in conjunction with a creation policy or update policy. CloudFormation doesn't proceed with a stack creation or update until resources receive the required number of signals or the timeout period is exceeded. The SignalResource operation is useful in cases where you want to send signals from anywhere other than an Amazon EC2 instance.

", + "StopStackSetOperation": "

Stops an in-progress operation on a stack set and its associated stack instances. StackSets will cancel all the unstarted stack instance deployments and wait for those are in-progress to complete.

", + "TestType": "

Tests a registered extension to make sure it meets all necessary requirements for being published in the CloudFormation registry.

For more information, see Testing your public extension prior to publishing in the CloudFormation CLI User Guide.

If you don't specify a version, CloudFormation uses the default version of the extension in your account and region for testing.

To perform testing, CloudFormation assumes the execution role specified when the type was registered. For more information, see RegisterType.

Once you've initiated testing on an extension using TestType, you can use DescribeType to monitor the current test status and test status description for the extension.

An extension must have a test status of PASSED before it can be published. For more information, see Publishing extensions to make them available for public use in the CloudFormation CLI User Guide.

", + "UpdateStack": "

Updates a stack as specified in the template. After the call completes successfully, the stack update starts. You can check the status of the stack through the DescribeStacks action.

To get a copy of the template for an existing stack, you can use the GetTemplate action.

For more information about creating an update template, updating a stack, and monitoring the progress of the update, see Updating a Stack.

", + "UpdateStackInstances": "

Updates the parameter values for stack instances for the specified accounts, within the specified Amazon Web Services Regions. A stack instance refers to a stack in a specific account and Region.

You can only update stack instances in Amazon Web Services Regions and accounts where they already exist; to create additional stack instances, use CreateStackInstances.

During stack set updates, any parameters overridden for a stack instance aren't updated, but retain their overridden value.

You can only update the parameter values that are specified in the stack set; to add or delete a parameter itself, use UpdateStackSet to update the stack set template. If you add a parameter to a template, before you can override the parameter value specified in the stack set you must first use UpdateStackSet to update all stack instances with the updated template and parameter value specified in the stack set. Once a stack instance has been updated with the new parameter, you can then override the parameter value using UpdateStackInstances.

", + "UpdateStackSet": "

Updates the stack set, and associated stack instances in the specified accounts and Amazon Web Services Regions.

Even if the stack set operation created by updating the stack set fails (completely or partially, below or above a specified failure tolerance), the stack set is updated with your changes. Subsequent CreateStackInstances calls on the specified stack set use the updated stack set.

", + "UpdateTerminationProtection": "

Updates termination protection for the specified stack. If a user attempts to delete a stack with termination protection enabled, the operation fails and the stack remains unchanged. For more information, see Protecting a Stack From Being Deleted in the CloudFormation User Guide.

For nested stacks, termination protection is set on the root stack and can't be changed directly on the nested stack.

", "ValidateTemplate": "

Validates a specified template. CloudFormation first checks if the template is valid JSON. If it isn't, CloudFormation checks if the template is valid YAML. If both these checks fail, CloudFormation returns a template validation error.

" }, "shapes": { @@ -89,13 +90,13 @@ "AccountGateResult": { "base": "

Structure that contains the results of the account gate function which CloudFormation invokes, if present, before proceeding with a stack set operation in an account and Region.

For each account and Region, CloudFormation lets you specify a Lambda function that encapsulates any requirements that must be met before CloudFormation can proceed with a stack set operation in that account and Region. CloudFormation invokes the function each time a stack set operation is requested for that account and Region; if the function returns FAILED, CloudFormation cancels the operation in that account and Region, and sets the stack set operation result status for that account and Region to FAILED.

For more information, see Configuring a target account gate.

", "refs": { - "StackSetOperationResultSummary$AccountGateResult": "

The results of the account gate function CloudFormation invokes, if present, before proceeding with stack set operations in an account

" + "StackSetOperationResultSummary$AccountGateResult": "

The results of the account gate function CloudFormation invokes, if present, before proceeding with stack set operations in an account.

" } }, "AccountGateStatus": { "base": null, "refs": { - "AccountGateResult$Status": "

The status of the account gate function.

" + "AccountGateResult$Status": "

The status of the account gate function.

" } }, "AccountGateStatusReason": { @@ -105,7 +106,7 @@ } }, "AccountLimit": { - "base": "

The AccountLimit data type.

CloudFormation has the following limits per account:

For more information about these account limits, and other CloudFormation limits, see CloudFormation Limits in the CloudFormation User Guide.

", + "base": "

The AccountLimit data type.

CloudFormation has the following limits per account:

For more information about these account limits, and other CloudFormation limits, see CloudFormation quotas in the CloudFormation User Guide.

", "refs": { "AccountLimitList$member": null } @@ -122,8 +123,8 @@ "CreateStackInstancesInput$Accounts": "

[Self-managed permissions] The names of one or more Amazon Web Services accounts that you want to create stack instances in the specified Region(s) for.

You can specify Accounts or DeploymentTargets, but not both.

", "DeleteStackInstancesInput$Accounts": "

[Self-managed permissions] The names of the Amazon Web Services accounts that you want to delete stack instances for.

You can specify Accounts or DeploymentTargets, but not both.

", "DeploymentTargets$Accounts": "

The names of one or more Amazon Web Services accounts for which you want to deploy stack set updates.

", - "UpdateStackInstancesInput$Accounts": "

[Self-managed permissions] The names of one or more Amazon Web Services accounts for which you want to update parameter values for stack instances. The overridden parameter values will be applied to all stack instances in the specified accounts and Regions.

You can specify Accounts or DeploymentTargets, but not both.

", - "UpdateStackSetInput$Accounts": "

[Self-managed permissions] The accounts in which to update associated stack instances. If you specify accounts, you must also specify the Regions in which to update stack set instances.

To update all the stack instances associated with this stack set, do not specify the Accounts or Regions properties.

If the stack set update includes changes to the template (that is, if the TemplateBody or TemplateURL properties are specified), or the Parameters property, CloudFormation marks all stack instances with a status of OUTDATED prior to updating the stack instances in the specified accounts and Regions. If the stack set update does not include changes to the template or parameters, CloudFormation updates the stack instances in the specified accounts and Regions, while leaving all other stack instances with their existing stack instance status.

" + "UpdateStackInstancesInput$Accounts": "

[Self-managed permissions] The names of one or more Amazon Web Services accounts for which you want to update parameter values for stack instances. The overridden parameter values will be applied to all stack instances in the specified accounts and Amazon Web Services Regions.

You can specify Accounts or DeploymentTargets, but not both.

", + "UpdateStackSetInput$Accounts": "

[Self-managed permissions] The accounts in which to update associated stack instances. If you specify accounts, you must also specify the Amazon Web Services Regions in which to update stack set instances.

To update all the stack instances associated with this stack set, don't specify the Accounts or Regions properties.

If the stack set update includes changes to the template (that is, if the TemplateBody or TemplateURL properties are specified), or the Parameters property, CloudFormation marks all stack instances with a status of OUTDATED prior to updating the stack instances in the specified accounts and Amazon Web Services Regions. If the stack set update does not include changes to the template or parameters, CloudFormation updates the stack instances in the specified accounts and Amazon Web Services Regions, while leaving all other stack instances with their existing stack instance status.

" } }, "AccountsUrl": { @@ -162,7 +163,7 @@ "Arn": { "base": null, "refs": { - "RollbackTrigger$Arn": "

The Amazon Resource Name (ARN) of the rollback trigger.

If a specified trigger is missing, the entire stack operation fails and is rolled back.

" + "RollbackTrigger$Arn": "

The Amazon Resource Name (ARN) of the rollback trigger.

If a specified trigger is missing, the entire stack operation fails and is rolled back.

" } }, "AutoDeployment": { @@ -171,7 +172,7 @@ "CreateStackSetInput$AutoDeployment": "

Describes whether StackSets automatically deploys to Organizations accounts that are added to the target organization or organizational unit (OU). Specify only if PermissionModel is SERVICE_MANAGED.

", "StackSet$AutoDeployment": "

[Service-managed permissions] Describes whether StackSets automatically deploys to Organizations accounts that are added to a target organization or organizational unit (OU).

", "StackSetSummary$AutoDeployment": "

[Service-managed permissions] Describes whether StackSets automatically deploys to Organizations accounts that are added to a target organizational unit (OU).

", - "UpdateStackSetInput$AutoDeployment": "

[Service-managed permissions] Describes whether StackSets automatically deploys to Organizations accounts that are added to a target organization or organizational unit (OU).

If you specify AutoDeployment, do not specify DeploymentTargets or Regions.

" + "UpdateStackSetInput$AutoDeployment": "

[Service-managed permissions] Describes whether StackSets automatically deploys to Organizations accounts that are added to a target organization or organizational unit (OU).

If you specify AutoDeployment, don't specify DeploymentTargets or Regions.

" } }, "AutoDeploymentNullable": { @@ -256,15 +257,15 @@ "Capabilities": { "base": null, "refs": { - "CreateChangeSetInput$Capabilities": "

In some cases, you must explicitly acknowledge that your stack template contains certain capabilities in order for CloudFormation to create the stack.

", - "CreateStackInput$Capabilities": "

In some cases, you must explicitly acknowledge that your stack template contains certain capabilities in order for CloudFormation to create the stack.

", - "CreateStackSetInput$Capabilities": "

In some cases, you must explicitly acknowledge that your stack set template contains certain capabilities in order for CloudFormation to create the stack set and related stack instances.

", + "CreateChangeSetInput$Capabilities": "

In some cases, you must explicitly acknowledge that your stack template contains certain capabilities in order for CloudFormation to create the stack.

", + "CreateStackInput$Capabilities": "

In some cases, you must explicitly acknowledge that your stack template contains certain capabilities in order for CloudFormation to create the stack.

", + "CreateStackSetInput$Capabilities": "

In some cases, you must explicitly acknowledge that your stack set template contains certain capabilities in order for CloudFormation to create the stack set and related stack instances.

", "DescribeChangeSetOutput$Capabilities": "

If you execute the change set, the list of capabilities that were explicitly acknowledged when the change set was created.

", "GetTemplateSummaryOutput$Capabilities": "

The capabilities found within the template. If your template contains IAM resources, you must specify the CAPABILITY_IAM or CAPABILITY_NAMED_IAM value for this parameter when you use the CreateStack or UpdateStack actions with your template; otherwise, those actions return an InsufficientCapabilities error.

For more information, see Acknowledging IAM Resources in CloudFormation Templates.

", "Stack$Capabilities": "

The capabilities allowed in the stack.

", "StackSet$Capabilities": "

The capabilities that are allowed in the stack set. Some stack set templates might include resources that can affect permissions in your Amazon Web Services account—for example, by creating new Identity and Access Management (IAM) users. For more information, see Acknowledging IAM Resources in CloudFormation Templates.

", - "UpdateStackInput$Capabilities": "

In some cases, you must explicitly acknowledge that your stack template contains certain capabilities in order for CloudFormation to update the stack.

", - "UpdateStackSetInput$Capabilities": "

In some cases, you must explicitly acknowledge that your stack template contains certain capabilities in order for CloudFormation to update the stack set and its associated stack instances.

", + "UpdateStackInput$Capabilities": "

In some cases, you must explicitly acknowledge that your stack template contains certain capabilities in order for CloudFormation to update the stack.

", + "UpdateStackSetInput$Capabilities": "

In some cases, you must explicitly acknowledge that your stack template contains certain capabilities in order for CloudFormation to update the stack set and its associated stack instances.

", "ValidateTemplateOutput$Capabilities": "

The capabilities found within the template. If your template contains IAM resources, you must specify the CAPABILITY_IAM or CAPABILITY_NAMED_IAM value for this parameter when you use the CreateStack or UpdateStack actions with your template; otherwise, those actions return an InsufficientCapabilities error.

For more information, see Acknowledging IAM Resources in CloudFormation Templates.

" } }, @@ -290,7 +291,7 @@ "CausingEntity": { "base": null, "refs": { - "ResourceChangeDetail$CausingEntity": "

The identity of the entity that triggered this change. This entity is a member of the group that is specified by the ChangeSource field. For example, if you modified the value of the KeyPairName parameter, the CausingEntity is the name of the parameter (KeyPairName).

If the ChangeSource value is DirectModification, no value is given for CausingEntity.

" + "ResourceChangeDetail$CausingEntity": "

The identity of the entity that triggered this change. This entity is a member of the group that's specified by the ChangeSource field. For example, if you modified the value of the KeyPairName parameter, the CausingEntity is the name of the parameter (KeyPairName).

If the ChangeSource value is DirectModification, no value is given for CausingEntity.

" } }, "Change": { @@ -302,7 +303,38 @@ "ChangeAction": { "base": null, "refs": { - "ResourceChange$Action": "

The action that CloudFormation takes on the resource, such as Add (adds a new resource), Modify (changes a resource), Remove (deletes a resource), Import (imports a resource), or Dynamic (exact action for the resource cannot be determined).

" + "ChangeSetHookResourceTargetDetails$ResourceAction": "

Specifies the action of the resource.

", + "ResourceChange$Action": "

The action that CloudFormation takes on the resource, such as Add (adds a new resource), Modify (changes a resource), Remove (deletes a resource), Import (imports a resource), or Dynamic (exact action for the resource can't be determined).

" + } + }, + "ChangeSetHook": { + "base": "

Specifies the resource, the hook, and the hook version to be invoked.

", + "refs": { + "ChangeSetHooks$member": null + } + }, + "ChangeSetHookResourceTargetDetails": { + "base": "

Specifies RESOURCE type target details for activated hooks.

", + "refs": { + "ChangeSetHookTargetDetails$ResourceTargetDetails": "

Required if TargetType is RESOURCE.

" + } + }, + "ChangeSetHookTargetDetails": { + "base": "

Specifies target details for an activated hook.

", + "refs": { + "ChangeSetHook$TargetDetails": "

Specifies details about the target that the hook will run against.

" + } + }, + "ChangeSetHooks": { + "base": null, + "refs": { + "DescribeChangeSetHooksOutput$Hooks": "

List of hook objects.

" + } + }, + "ChangeSetHooksStatus": { + "base": null, + "refs": { + "DescribeChangeSetHooksOutput$Status": "

Provides the status of the change set hook.

" } }, "ChangeSetId": { @@ -312,7 +344,8 @@ "ChangeSetSummary$ParentChangeSetId": "

The parent change set ID.

", "ChangeSetSummary$RootChangeSetId": "

The root change set ID.

", "CreateChangeSetOutput$Id": "

The Amazon Resource Name (ARN) of the change set.

", - "DescribeChangeSetOutput$ChangeSetId": "

The ARN of the change set.

", + "DescribeChangeSetHooksOutput$ChangeSetId": "

The change set identifier (stack ID).

", + "DescribeChangeSetOutput$ChangeSetId": "

The Amazon Resource Name (ARN) of the change set.

", "DescribeChangeSetOutput$ParentChangeSetId": "

Specifies the change set ID of the parent change set in the current nested change set hierarchy.

", "DescribeChangeSetOutput$RootChangeSetId": "

Specifies the change set ID of the root change set in the current nested change set hierarchy.

", "ResourceChange$ChangeSetId": "

The change set ID of the nested change set.

", @@ -323,7 +356,8 @@ "base": null, "refs": { "ChangeSetSummary$ChangeSetName": "

The name of the change set.

", - "CreateChangeSetInput$ChangeSetName": "

The name of the change set. The name must be unique among all change sets that are associated with the specified stack.

A change set name can contain only alphanumeric, case sensitive characters and hyphens. It must start with an alphabetic character and cannot exceed 128 characters.

", + "CreateChangeSetInput$ChangeSetName": "

The name of the change set. The name must be unique among all change sets that are associated with the specified stack.

A change set name can contain only alphanumeric, case sensitive characters, and hyphens. It must start with an alphabetical character and can't exceed 128 characters.

", + "DescribeChangeSetHooksOutput$ChangeSetName": "

The change set name.

", "DescribeChangeSetOutput$ChangeSetName": "

The name of the change set.

" } }, @@ -331,13 +365,14 @@ "base": null, "refs": { "DeleteChangeSetInput$ChangeSetName": "

The name or Amazon Resource Name (ARN) of the change set that you want to delete.

", + "DescribeChangeSetHooksInput$ChangeSetName": "

The name or Amazon Resource Name (ARN) of the change set that you want to describe.

", "DescribeChangeSetInput$ChangeSetName": "

The name or Amazon Resource Name (ARN) of the change set that you want to describe.

", - "ExecuteChangeSetInput$ChangeSetName": "

The name or ARN of the change set that you want use to update the specified stack.

", + "ExecuteChangeSetInput$ChangeSetName": "

The name or Amazon Resource Name (ARN) of the change set that you want use to update the specified stack.

", "GetTemplateInput$ChangeSetName": "

The name or Amazon Resource Name (ARN) of a change set for which CloudFormation returns the associated template. If you specify a name, you must also specify the StackName.

" } }, "ChangeSetNotFoundException": { - "base": "

The specified change set name or ID doesn't exit. To view valid change sets for a stack, use the ListChangeSets action.

", + "base": "

The specified change set name or ID doesn't exit. To view valid change sets for a stack, use the ListChangeSets operation.

", "refs": { } }, @@ -396,30 +431,30 @@ "refs": { "CancelUpdateStackInput$ClientRequestToken": "

A unique identifier for this CancelUpdateStack request. Specify this token if you plan to retry requests so that CloudFormation knows that you're not attempting to cancel an update on a stack with the same name. You might retry CancelUpdateStack requests to ensure that CloudFormation successfully received them.

", "ContinueUpdateRollbackInput$ClientRequestToken": "

A unique identifier for this ContinueUpdateRollback request. Specify this token if you plan to retry requests so that CloudFormationknows that you're not attempting to continue the rollback to a stack with the same name. You might retry ContinueUpdateRollback requests to ensure that CloudFormation successfully received them.

", - "CreateStackInput$ClientRequestToken": "

A unique identifier for this CreateStack request. Specify this token if you plan to retry requests so that CloudFormation knows that you're not attempting to create a stack with the same name. You might retry CreateStack requests to ensure that CloudFormation successfully received them.

All events triggered by a given stack operation are assigned the same client request token, which you can use to track operations. For example, if you execute a CreateStack operation with the token token1, then all the StackEvents generated by that operation will have ClientRequestToken set as token1.

In the console, stack operations display the client request token on the Events tab. Stack operations that are initiated from the console use the token format Console-StackOperation-ID, which helps you easily identify the stack operation . For example, if you create a stack using the console, each stack event would be assigned the same token in the following format: Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002.

", + "CreateStackInput$ClientRequestToken": "

A unique identifier for this CreateStack request. Specify this token if you plan to retry requests so that CloudFormation knows that you're not attempting to create a stack with the same name. You might retry CreateStack requests to ensure that CloudFormation successfully received them.

All events initiated by a given stack operation are assigned the same client request token, which you can use to track operations. For example, if you execute a CreateStack operation with the token token1, then all the StackEvents generated by that operation will have ClientRequestToken set as token1.

In the console, stack operations display the client request token on the Events tab. Stack operations that are initiated from the console use the token format Console-StackOperation-ID, which helps you easily identify the stack operation . For example, if you create a stack using the console, each stack event would be assigned the same token in the following format: Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002.

", "CreateStackInstancesInput$OperationId": "

The unique identifier for this stack set operation.

The operation ID also functions as an idempotency token, to ensure that CloudFormation performs the stack set operation only once, even if you retry the request multiple times. You might retry stack set operation requests to ensure that CloudFormation successfully received them.

If you don't specify an operation ID, the SDK generates one automatically.

Repeating this stack set operation with a new operation ID retries all stack instances whose status is OUTDATED.

", "CreateStackInstancesOutput$OperationId": "

The unique identifier for this stack set operation.

", "CreateStackSetInput$ClientRequestToken": "

A unique identifier for this CreateStackSet request. Specify this token if you plan to retry requests so that CloudFormation knows that you're not attempting to create another stack set with the same name. You might retry CreateStackSet requests to ensure that CloudFormation successfully received them.

If you don't specify an operation ID, the SDK generates one automatically.

", - "DeleteStackInput$ClientRequestToken": "

A unique identifier for this DeleteStack request. Specify this token if you plan to retry requests so that CloudFormation knows that you're not attempting to delete a stack with the same name. You might retry DeleteStack requests to ensure that CloudFormation successfully received them.

All events triggered by a given stack operation are assigned the same client request token, which you can use to track operations. For example, if you execute a CreateStack operation with the token token1, then all the StackEvents generated by that operation will have ClientRequestToken set as token1.

In the console, stack operations display the client request token on the Events tab. Stack operations that are initiated from the console use the token format Console-StackOperation-ID, which helps you easily identify the stack operation . For example, if you create a stack using the console, each stack event would be assigned the same token in the following format: Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002.

", + "DeleteStackInput$ClientRequestToken": "

A unique identifier for this DeleteStack request. Specify this token if you plan to retry requests so that CloudFormation knows that you're not attempting to delete a stack with the same name. You might retry DeleteStack requests to ensure that CloudFormation successfully received them.

All events initiated by a given stack operation are assigned the same client request token, which you can use to track operations. For example, if you execute a CreateStack operation with the token token1, then all the StackEvents generated by that operation will have ClientRequestToken set as token1.

In the console, stack operations display the client request token on the Events tab. Stack operations that are initiated from the console use the token format Console-StackOperation-ID, which helps you easily identify the stack operation . For example, if you create a stack using the console, each stack event would be assigned the same token in the following format: Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002.

", "DeleteStackInstancesInput$OperationId": "

The unique identifier for this stack set operation.

If you don't specify an operation ID, the SDK generates one automatically.

The operation ID also functions as an idempotency token, to ensure that CloudFormation performs the stack set operation only once, even if you retry the request multiple times. You can retry stack set operation requests to ensure that CloudFormation successfully received them.

Repeating this stack set operation with a new operation ID retries all stack instances whose status is OUTDATED.

", "DeleteStackInstancesOutput$OperationId": "

The unique identifier for this stack set operation.

", - "DescribeStackSetOperationInput$OperationId": "

The unique ID of the stack set operation.

", + "DescribeStackSetOperationInput$OperationId": "

The unique ID of the stack set operation.

", "DetectStackSetDriftInput$OperationId": "

The ID of the stack set operation.

", - "DetectStackSetDriftOutput$OperationId": "

The ID of the drift detection stack set operation.

you can use this operation id with DescribeStackSetOperation to monitor the progress of the drift detection operation.

", + "DetectStackSetDriftOutput$OperationId": "

The ID of the drift detection stack set operation.

You can use this operation ID with DescribeStackSetOperation to monitor the progress of the drift detection operation.

", "ExecuteChangeSetInput$ClientRequestToken": "

A unique identifier for this ExecuteChangeSet request. Specify this token if you plan to retry requests so that CloudFormation knows that you're not attempting to execute a change set to update a stack with the same name. You might retry ExecuteChangeSet requests to ensure that CloudFormation successfully received them.

", "ImportStacksToStackSetInput$OperationId": "

A unique, user defined, identifier for the stack set operation.

", "ImportStacksToStackSetOutput$OperationId": "

The unique identifier for the stack set operation.

", "ListStackSetOperationResultsInput$OperationId": "

The ID of the stack set operation.

", "RecordHandlerProgressInput$ClientRequestToken": "

Reserved for use by the CloudFormation CLI.

", "RollbackStackInput$ClientRequestToken": "

A unique identifier for this RollbackStack request.

", - "StackEvent$ClientRequestToken": "

The token passed to the operation that generated this event.

All events triggered by a given stack operation are assigned the same client request token, which you can use to track operations. For example, if you execute a CreateStack operation with the token token1, then all the StackEvents generated by that operation will have ClientRequestToken set as token1.

In the console, stack operations display the client request token on the Events tab. Stack operations that are initiated from the console use the token format Console-StackOperation-ID, which helps you easily identify the stack operation . For example, if you create a stack using the console, each stack event would be assigned the same token in the following format: Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002.

", + "StackEvent$ClientRequestToken": "

The token passed to the operation that generated this event.

All events triggered by a given stack operation are assigned the same client request token, which you can use to track operations. For example, if you execute a CreateStack operation with the token token1, then all the StackEvents generated by that operation will have ClientRequestToken set as token1.

In the console, stack operations display the client request token on the Events tab. Stack operations that are initiated from the console use the token format Console-StackOperation-ID, which helps you easily identify the stack operation . For example, if you create a stack using the console, each stack event would be assigned the same token in the following format: Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002.

", "StackSetOperation$OperationId": "

The unique ID of a stack set operation.

", "StackSetOperationSummary$OperationId": "

The unique ID of the stack set operation.

", - "StopStackSetOperationInput$OperationId": "

The ID of the stack operation.

", + "StopStackSetOperationInput$OperationId": "

The ID of the stack operation.

", "UpdateStackInput$ClientRequestToken": "

A unique identifier for this UpdateStack request. Specify this token if you plan to retry requests so that CloudFormation knows that you're not attempting to update a stack with the same name. You might retry UpdateStack requests to ensure that CloudFormation successfully received them.

All events triggered by a given stack operation are assigned the same client request token, which you can use to track operations. For example, if you execute a CreateStack operation with the token token1, then all the StackEvents generated by that operation will have ClientRequestToken set as token1.

In the console, stack operations display the client request token on the Events tab. Stack operations that are initiated from the console use the token format Console-StackOperation-ID, which helps you easily identify the stack operation . For example, if you create a stack using the console, each stack event would be assigned the same token in the following format: Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002.

", - "UpdateStackInstancesInput$OperationId": "

The unique identifier for this stack set operation.

The operation ID also functions as an idempotency token, to ensure that CloudFormation performs the stack set operation only once, even if you retry the request multiple times. You might retry stack set operation requests to ensure that CloudFormation successfully received them.

If you don't specify an operation ID, the SDK generates one automatically.

", - "UpdateStackInstancesOutput$OperationId": "

The unique identifier for this stack set operation.

", - "UpdateStackSetInput$OperationId": "

The unique ID for this stack set operation.

The operation ID also functions as an idempotency token, to ensure that CloudFormation performs the stack set operation only once, even if you retry the request multiple times. You might retry stack set operation requests to ensure that CloudFormation successfully received them.

If you don't specify an operation ID, CloudFormation generates one automatically.

Repeating this stack set operation with a new operation ID retries all stack instances whose status is OUTDATED.

", + "UpdateStackInstancesInput$OperationId": "

The unique identifier for this stack set operation.

The operation ID also functions as an idempotency token, to ensure that CloudFormation performs the stack set operation only once, even if you retry the request multiple times. You might retry stack set operation requests to ensure that CloudFormation successfully received them.

If you don't specify an operation ID, the SDK generates one automatically.

", + "UpdateStackInstancesOutput$OperationId": "

The unique identifier for this stack set operation.

", + "UpdateStackSetInput$OperationId": "

The unique ID for this stack set operation.

The operation ID also functions as an idempotency token, to ensure that CloudFormation performs the stack set operation only once, even if you retry the request multiple times. You might retry stack set operation requests to ensure that CloudFormation successfully received them.

If you don't specify an operation ID, CloudFormation generates one automatically.

Repeating this stack set operation with a new operation ID retries all stack instances whose status is OUTDATED.

", "UpdateStackSetOutput$OperationId": "

The unique ID for this stack set operation.

" } }, @@ -448,7 +483,7 @@ } }, "ContinueUpdateRollbackOutput": { - "base": "

The output for a ContinueUpdateRollback action.

", + "base": "

The output for a ContinueUpdateRollback operation.

", "refs": { } }, @@ -559,21 +594,21 @@ } }, "DeploymentTargets": { - "base": "

[Service-managed permissions] The Organizations accounts to which StackSets deploys. StackSets does not deploy stack instances to the organization management account, even if the organization management account is in your organization or in an OU in your organization.

For update operations, you can specify either Accounts or OrganizationalUnitIds. For create and delete operations, specify OrganizationalUnitIds.

", + "base": "

[Service-managed permissions] The Organizations accounts to which StackSets deploys. StackSets doesn't deploy stack instances to the organization management account, even if the organization management account is in your organization or in an OU in your organization.

For update operations, you can specify either Accounts or OrganizationalUnitIds. For create and delete operations, specify OrganizationalUnitIds.

", "refs": { - "CreateStackInstancesInput$DeploymentTargets": "

[Service-managed permissions] The Organizations accounts for which to create stack instances in the specified Regions.

You can specify Accounts or DeploymentTargets, but not both.

", + "CreateStackInstancesInput$DeploymentTargets": "

[Service-managed permissions] The Organizations accounts for which to create stack instances in the specified Amazon Web Services Regions.

You can specify Accounts or DeploymentTargets, but not both.

", "DeleteStackInstancesInput$DeploymentTargets": "

[Service-managed permissions] The Organizations accounts from which to delete stack instances.

You can specify Accounts or DeploymentTargets, but not both.

", "StackSetOperation$DeploymentTargets": "

[Service-managed permissions] The Organizations accounts affected by the stack operation.

", "UpdateStackInstancesInput$DeploymentTargets": "

[Service-managed permissions] The Organizations accounts for which you want to update parameter values for stack instances. If your update targets OUs, the overridden parameter values only apply to the accounts that are currently in the target OUs and their child OUs. Accounts added to the target OUs and their child OUs in the future won't use the overridden values.

You can specify Accounts or DeploymentTargets, but not both.

", - "UpdateStackSetInput$DeploymentTargets": "

[Service-managed permissions] The Organizations accounts in which to update associated stack instances.

To update all the stack instances associated with this stack set, do not specify DeploymentTargets or Regions.

If the stack set update includes changes to the template (that is, if TemplateBody or TemplateURL is specified), or the Parameters, CloudFormation marks all stack instances with a status of OUTDATED prior to updating the stack instances in the specified accounts and Regions. If the stack set update does not include changes to the template or parameters, CloudFormation updates the stack instances in the specified accounts and Regions, while leaving all other stack instances with their existing stack instance status.

" + "UpdateStackSetInput$DeploymentTargets": "

[Service-managed permissions] The Organizations accounts in which to update associated stack instances.

To update all the stack instances associated with this stack set, do not specify DeploymentTargets or Regions.

If the stack set update includes changes to the template (that is, if TemplateBody or TemplateURL is specified), or the Parameters, CloudFormation marks all stack instances with a status of OUTDATED prior to updating the stack instances in the specified accounts and Amazon Web Services Regions. If the stack set update doesn't include changes to the template or parameters, CloudFormation updates the stack instances in the specified accounts and Regions, while leaving all other stack instances with their existing stack instance status.

" } }, "DeprecatedStatus": { "base": null, "refs": { - "DescribeTypeOutput$DeprecatedStatus": "

The deprecation status of the extension version.

Valid values include:

For public third-party extensions, CloudFormation returns null.

", - "ListTypeVersionsInput$DeprecatedStatus": "

The deprecation status of the extension versions that you want to get summary information about.

Valid values include:

The default is LIVE.

", - "ListTypesInput$DeprecatedStatus": "

The deprecation status of the extension that you want to get summary information about.

Valid values include:

" + "DescribeTypeOutput$DeprecatedStatus": "

The deprecation status of the extension version.

Valid values include:

For public third-party extensions, CloudFormation returns null.

", + "ListTypeVersionsInput$DeprecatedStatus": "

The deprecation status of the extension versions that you want to get summary information about.

Valid values include:

The default is LIVE.

", + "ListTypesInput$DeprecatedStatus": "

The deprecation status of the extension that you want to get summary information about.

Valid values include:

" } }, "DeregisterTypeInput": { @@ -596,6 +631,16 @@ "refs": { } }, + "DescribeChangeSetHooksInput": { + "base": null, + "refs": { + } + }, + "DescribeChangeSetHooksOutput": { + "base": null, + "refs": { + } + }, "DescribeChangeSetInput": { "base": "

The input for the DescribeChangeSet action.

", "refs": { @@ -735,9 +780,9 @@ "DescribeChangeSetOutput$Description": "

Information about the change set.

", "DescribeTypeOutput$Description": "

The description of the extension.

", "DescribeTypeRegistrationOutput$Description": "

The description of the extension registration request.

", - "GetTemplateSummaryOutput$Description": "

The value that is defined in the Description property of the template.

", + "GetTemplateSummaryOutput$Description": "

The value that's defined in the Description property of the template.

", "Output$Description": "

User defined description associated with the output.

", - "ParameterDeclaration$Description": "

The description that is associate with the parameter.

", + "ParameterDeclaration$Description": "

The description that's associate with the parameter.

", "Stack$Description": "

A user-defined description associated with the stack.

", "StackResource$Description": "

User defined description associated with the resource.

", "StackResourceDetail$Description": "

User defined description associated with the resource.

", @@ -783,7 +828,7 @@ "DifferenceType": { "base": null, "refs": { - "PropertyDifference$DifferenceType": "

The type of property difference.

" + "PropertyDifference$DifferenceType": "

The type of property difference.

" } }, "DisableRollback": { @@ -791,21 +836,21 @@ "refs": { "CreateStackInput$DisableRollback": "

Set to true to disable rollback of the stack if stack creation failed. You can specify either DisableRollback or OnFailure, but not both.

Default: false

", "ExecuteChangeSetInput$DisableRollback": "

Preserves the state of previously provisioned resources when an operation fails.

Default: True

", - "Stack$DisableRollback": "

Boolean to enable or disable rollback on stack creation failures:

", + "Stack$DisableRollback": "

Boolean to enable or disable rollback on stack creation failures:

", "UpdateStackInput$DisableRollback": "

Preserve the state of previously provisioned resources when an operation fails.

Default: False

" } }, "DriftedStackInstancesCount": { "base": null, "refs": { - "StackSetDriftDetectionDetails$DriftedStackInstancesCount": "

The number of stack instances that have drifted from the expected template and parameter configuration of the stack set. A stack instance is considered to have drifted if one or more of the resources in the associated stack do not match their expected configuration.

" + "StackSetDriftDetectionDetails$DriftedStackInstancesCount": "

The number of stack instances that have drifted from the expected template and parameter configuration of the stack set. A stack instance is considered to have drifted if one or more of the resources in the associated stack don't match their expected configuration.

" } }, "EnableTerminationProtection": { "base": null, "refs": { - "CreateStackInput$EnableTerminationProtection": "

Whether to enable termination protection on the specified stack. If a user attempts to delete a stack with termination protection enabled, the operation fails and the stack remains unchanged. For more information, see Protecting a Stack From Being Deleted in the CloudFormation User Guide. Termination protection is disabled on stacks by default.

For nested stacks, termination protection is set on the root stack and cannot be changed directly on the nested stack.

", - "Stack$EnableTerminationProtection": "

Whether termination protection is enabled for the stack.

For nested stacks, termination protection is set on the root stack and cannot be changed directly on the nested stack. For more information, see Protecting a Stack From Being Deleted in the CloudFormation User Guide.

", + "CreateStackInput$EnableTerminationProtection": "

Whether to enable termination protection on the specified stack. If a user attempts to delete a stack with termination protection enabled, the operation fails and the stack remains unchanged. For more information, see Protecting a Stack From Being Deleted in the CloudFormation User Guide. Termination protection is deactivated on stacks by default.

For nested stacks, termination protection is set on the root stack and can't be changed directly on the nested stack.

", + "Stack$EnableTerminationProtection": "

Whether termination protection is enabled for the stack.

For nested stacks, termination protection is set on the root stack and cannot be changed directly on the nested stack. For more information, see Protecting a Stack From Being Deleted in the CloudFormation User Guide.

", "UpdateTerminationProtectionInput$EnableTerminationProtection": "

Whether to enable termination protection on the specified stack.

" } }, @@ -835,7 +880,7 @@ "EvaluationType": { "base": null, "refs": { - "ResourceChangeDetail$Evaluation": "

Indicates whether CloudFormation can determine the target value, and whether the target value will change before you execute a change set.

For Static evaluations, CloudFormation can determine that the target value will change, and its value. For example, if you directly modify the InstanceType property of an EC2 instance, CloudFormation knows that this property value will change, and its value, so this is a Static evaluation.

For Dynamic evaluations, cannot determine the target value because it depends on the result of an intrinsic function, such as a Ref or Fn::GetAtt intrinsic function, when the stack is updated. For example, if your template includes a reference to a resource that is conditionally recreated, the value of the reference (the physical ID of the resource) might change, depending on if the resource is recreated. If the resource is recreated, it will have a new physical ID, so all references to that resource will also be updated.

" + "ResourceChangeDetail$Evaluation": "

Indicates whether CloudFormation can determine the target value, and whether the target value will change before you execute a change set.

For Static evaluations, CloudFormation can determine that the target value will change, and its value. For example, if you directly modify the InstanceType property of an EC2 instance, CloudFormation knows that this property value will change, and its value, so this is a Static evaluation.

For Dynamic evaluations, can't determine the target value because it depends on the result of an intrinsic function, such as a Ref or Fn::GetAtt intrinsic function, when the stack is updated. For example, if your template includes a reference to a resource that's conditionally recreated, the value of the reference (the physical ID of the resource) might change, depending on if the resource is recreated. If the resource is recreated, it will have a new physical ID, so all references to that resource will also be updated.

" } }, "EventId": { @@ -857,17 +902,17 @@ "ExecutionRoleName": { "base": null, "refs": { - "CreateStackSetInput$ExecutionRoleName": "

The name of the IAM execution role to use to create the stack set. If you do not specify an execution role, CloudFormation uses the AWSCloudFormationStackSetExecutionRole role for the stack set operation.

Specify an IAM role only if you are using customized execution roles to control which stack resources users and groups can include in their stack sets.

", - "StackSet$ExecutionRoleName": "

The name of the IAM execution role used to create or update the stack set.

Use customized execution roles to control which stack resources users and groups can include in their stack sets.

", - "StackSetOperation$ExecutionRoleName": "

The name of the IAM execution role used to create or update the stack set.

Use customized execution roles to control which stack resources users and groups can include in their stack sets.

", - "UpdateStackSetInput$ExecutionRoleName": "

The name of the IAM execution role to use to update the stack set. If you do not specify an execution role, CloudFormation uses the AWSCloudFormationStackSetExecutionRole role for the stack set operation.

Specify an IAM role only if you are using customized execution roles to control which stack resources users and groups can include in their stack sets.

If you specify a customized execution role, CloudFormation uses that role to update the stack. If you do not specify a customized execution role, CloudFormation performs the update using the role previously associated with the stack set, so long as you have permissions to perform operations on the stack set.

" + "CreateStackSetInput$ExecutionRoleName": "

The name of the IAM execution role to use to create the stack set. If you do not specify an execution role, CloudFormation uses the AWSCloudFormationStackSetExecutionRole role for the stack set operation.

Specify an IAM role only if you are using customized execution roles to control which stack resources users and groups can include in their stack sets.

", + "StackSet$ExecutionRoleName": "

The name of the IAM execution role used to create or update the stack set.

Use customized execution roles to control which stack resources users and groups can include in their stack sets.

", + "StackSetOperation$ExecutionRoleName": "

The name of the IAM execution role used to create or update the stack set.

Use customized execution roles to control which stack resources users and groups can include in their stack sets.

", + "UpdateStackSetInput$ExecutionRoleName": "

The name of the IAM execution role to use to update the stack set. If you do not specify an execution role, CloudFormation uses the AWSCloudFormationStackSetExecutionRole role for the stack set operation.

Specify an IAM role only if you are using customized execution roles to control which stack resources users and groups can include in their stack sets.

If you specify a customized execution role, CloudFormation uses that role to update the stack. If you do not specify a customized execution role, CloudFormation performs the update using the role previously associated with the stack set, so long as you have permissions to perform operations on the stack set.

" } }, "ExecutionStatus": { "base": null, "refs": { - "ChangeSetSummary$ExecutionStatus": "

If the change set execution status is AVAILABLE, you can execute the change set. If you can’t execute the change set, the status indicates why. For example, a change set might be in an UNAVAILABLE state because CloudFormation is still creating it or in an OBSOLETE state because the stack was already updated.

", - "DescribeChangeSetOutput$ExecutionStatus": "

If the change set execution status is AVAILABLE, you can execute the change set. If you can’t execute the change set, the status indicates why. For example, a change set might be in an UNAVAILABLE state because CloudFormation is still creating it or in an OBSOLETE state because the stack was already updated.

" + "ChangeSetSummary$ExecutionStatus": "

If the change set execution status is AVAILABLE, you can execute the change set. If you can't execute the change set, the status indicates why. For example, a change set might be in an UNAVAILABLE state because CloudFormation is still creating it or in an OBSOLETE state because the stack was already updated.

", + "DescribeChangeSetOutput$ExecutionStatus": "

If the change set execution status is AVAILABLE, you can execute the change set. If you can't execute the change set, the status indicates why. For example, a change set might be in an UNAVAILABLE state because CloudFormation is still creating it or in an OBSOLETE state because the stack was already updated.

" } }, "Export": { @@ -950,6 +995,74 @@ "RecordHandlerProgressInput$ErrorCode": "

Reserved for use by the CloudFormation CLI.

" } }, + "HookFailureMode": { + "base": null, + "refs": { + "ChangeSetHook$FailureMode": "

Specify the hook failure mode for non-compliant resources in the followings ways.

", + "StackEvent$HookFailureMode": "

Specify the hook failure mode for non-compliant resources in the followings ways.

" + } + }, + "HookInvocationCount": { + "base": null, + "refs": { + "Change$HookInvocationCount": "

Is either null, if no hooks invoke for the resource, or contains the number of hooks that will invoke for the resource.

" + } + }, + "HookInvocationPoint": { + "base": null, + "refs": { + "ChangeSetHook$InvocationPoint": "

Specifies the points in provisioning logic where a hook is invoked.

", + "StackEvent$HookInvocationPoint": "

Invocation points are points in provisioning logic where hooks are initiated.

" + } + }, + "HookStatus": { + "base": null, + "refs": { + "StackEvent$HookStatus": "

Provides the status of the change set hook.

" + } + }, + "HookStatusReason": { + "base": null, + "refs": { + "StackEvent$HookStatusReason": "

Provides the reason for the hook status.

" + } + }, + "HookTargetType": { + "base": null, + "refs": { + "ChangeSetHookTargetDetails$TargetType": "

The name of the type.

" + } + }, + "HookTargetTypeName": { + "base": null, + "refs": { + "ChangeSetHookResourceTargetDetails$ResourceType": "

The type of CloudFormation resource, such as AWS::S3::Bucket.

" + } + }, + "HookType": { + "base": null, + "refs": { + "StackEvent$HookType": "

The name of the hook.

" + } + }, + "HookTypeConfigurationVersionId": { + "base": null, + "refs": { + "ChangeSetHook$TypeConfigurationVersionId": "

The version ID of the type configuration.

" + } + }, + "HookTypeName": { + "base": null, + "refs": { + "ChangeSetHook$TypeName": "

The unique name for your hook. Specifies a three-part namespace for your hook, with a recommended pattern of Organization::Service::Hook.

The following organization namespaces are reserved and can't be used in your hook type names:

" + } + }, + "HookTypeVersionId": { + "base": null, + "refs": { + "ChangeSetHook$TypeVersionId": "

The version ID of the type specified.

" + } + }, "IdentityProvider": { "base": null, "refs": { @@ -1009,7 +1122,7 @@ } }, "InvalidStateTransitionException": { - "base": "

Error reserved for use by the CloudFormation CLI. CloudFormation does not return this error to users.

", + "base": "

Error reserved for use by the CloudFormation CLI. CloudFormation doesn't return this error to users.

", "refs": { } }, @@ -1017,7 +1130,7 @@ "base": null, "refs": { "DescribeTypeOutput$IsActivated": "

Whether or not the extension is activated in the account and region.

This only applies to public third-party extensions. For all other extensions, CloudFormation returns null.

", - "TypeSummary$IsActivated": "

Whether or not the extension is activated for this account and region.

This applies only to third-party public extensions. Extensions published by Amazon are activated by default.

" + "TypeSummary$IsActivated": "

Whether or not the extension is activated for this account and region.

This applies only to third-party public extensions. Extensions published by Amazon are activated by default.

" } }, "IsDefaultConfiguration": { @@ -1030,7 +1143,7 @@ "base": null, "refs": { "DescribeTypeOutput$IsDefaultVersion": "

Whether the specified extension version is set as the default version.

This applies only to private extensions you have registered in your account, and extensions published by Amazon. For public third-party extensions, whether or not they are activated in your account, CloudFormation returns null.

", - "TypeVersionSummary$IsDefaultVersion": "

Whether the specified extension version is set as the default version.

This applies only to private extensions you have registered in your account, and extensions published by Amazon. For public third-party extensions, whether or not they are activated in your account, CloudFormation returns null.

" + "TypeVersionSummary$IsDefaultVersion": "

Whether the specified extension version is set as the default version.

This applies only to private extensions you have registered in your account, and extensions published by Amazon. For public third-party extensions, CloudFormation returns null.

" } }, "Key": { @@ -1047,7 +1160,7 @@ } }, "LimitExceededException": { - "base": "

The quota for the resource has already been reached.

For information on resource and stack limitations, see Limits in the CloudFormation User Guide.

", + "base": "

The quota for the resource has already been reached.

For information on resource and stack limitations, see CloudFormation quotas in the CloudFormation User Guide.

", "refs": { } }, @@ -1060,7 +1173,7 @@ "LimitValue": { "base": null, "refs": { - "AccountLimit$Value": "

The value that is associated with the account limit name.

" + "AccountLimit$Value": "

The value that's associated with the account limit name.

" } }, "ListChangeSetsInput": { @@ -1186,7 +1299,7 @@ "LogGroupName": { "base": null, "refs": { - "LoggingConfig$LogGroupName": "

The Amazon CloudWatch log group to which CloudFormation sends error logging information when invoking the extension's handlers.

" + "LoggingConfig$LogGroupName": "

The Amazon CloudWatch Logs group to which CloudFormation sends error logging information when invoking the extension's handlers.

" } }, "LoggingConfig": { @@ -1200,12 +1313,14 @@ "LogicalIdHierarchy": { "base": null, "refs": { - "ModuleInfo$LogicalIdHierarchy": "

A concantenated list of the logical IDs of the module or modules containing the resource. Modules are listed starting with the inner-most nested module, and separated by /.

In the following example, the resource was created from a module, moduleA, that is nested inside a parent module, moduleB.

moduleA/moduleB

For more information, see Referencing resources in a module in the CloudFormation User Guide.

" + "ModuleInfo$LogicalIdHierarchy": "

A concatenated list of the logical IDs of the module or modules containing the resource. Modules are listed starting with the inner-most nested module, and separated by /.

In the following example, the resource was created from a module, moduleA, that's nested inside a parent module, moduleB.

moduleA/moduleB

For more information, see Referencing resources in a module in the CloudFormation User Guide.

" } }, "LogicalResourceId": { "base": null, "refs": { + "ChangeSetHookResourceTargetDetails$LogicalResourceId": "

The resource's logical ID, which is defined in the stack's template.

", + "DescribeChangeSetHooksInput$LogicalResourceId": "

If specified, lists only the hooks related to the specified LogicalResourceId.

", "DescribeStackResourceInput$LogicalResourceId": "

The logical name of the resource as specified in the template.

Default: There is no default value.

", "DescribeStackResourcesInput$LogicalResourceId": "

The logical name of the resource as specified in the template.

Default: There is no default value.

", "DetectStackResourceDriftInput$LogicalResourceId": "

The logical name of the resource for which to return drift information.

", @@ -1252,7 +1367,7 @@ "MaxConcurrentCount": { "base": null, "refs": { - "StackSetOperationPreferences$MaxConcurrentCount": "

The maximum number of accounts in which to perform this operation at one time. This is dependent on the value of FailureToleranceCount. MaxConcurrentCount is at most one more than the FailureToleranceCount.

Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling.

Conditional: You must specify either MaxConcurrentCount or MaxConcurrentPercentage, but not both.

By default, 1 is specified.

" + "StackSetOperationPreferences$MaxConcurrentCount": "

The maximum number of accounts in which to perform this operation at one time. This is dependent on the value of FailureToleranceCount.MaxConcurrentCount is at most one more than the FailureToleranceCount.

Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling.

Conditional: You must specify either MaxConcurrentCount or MaxConcurrentPercentage, but not both.

By default, 1 is specified.

" } }, "MaxConcurrentPercentage": { @@ -1276,7 +1391,7 @@ "Metadata": { "base": null, "refs": { - "GetTemplateSummaryOutput$Metadata": "

The value that is defined for the Metadata property of the template.

", + "GetTemplateSummaryOutput$Metadata": "

The value that's defined for the Metadata property of the template.

", "StackResourceDetail$Metadata": "

The content of the Metadata attribute declared for the resource. For more information, see Metadata Attribute in the CloudFormation User Guide.

" } }, @@ -1293,7 +1408,7 @@ "MonitoringTimeInMinutes": { "base": null, "refs": { - "RollbackConfiguration$MonitoringTimeInMinutes": "

The amount of time, in minutes, during which CloudFormation should monitor all the rollback triggers after the stack creation or update operation deploys all necessary resources.

The default is 0 minutes.

If you specify a monitoring period but do not specify any rollback triggers, CloudFormation still waits the specified period of time before cleaning up old resources after update operations. You can use this monitoring period to perform any manual stack validation desired, and manually cancel the stack creation or update (using CancelUpdateStack, for example) as necessary.

If you specify 0 for this parameter, CloudFormation still monitors the specified rollback triggers during stack creation and update operations. Then, for update operations, it begins disposing of old resources immediately once the operation completes.

" + "RollbackConfiguration$MonitoringTimeInMinutes": "

The amount of time, in minutes, during which CloudFormation should monitor all the rollback triggers after the stack creation or update operation deploys all necessary resources.

The default is 0 minutes.

If you specify a monitoring period but don't specify any rollback triggers, CloudFormation still waits the specified period of time before cleaning up old resources after update operations. You can use this monitoring period to perform any manual stack validation desired, and manually cancel the stack creation or update (using CancelUpdateStack, for example) as necessary.

If you specify 0 for this parameter, CloudFormation still monitors the specified rollback triggers during stack creation and update operations. Then, for update operations, it begins disposing of old resources immediately once the operation completes.

" } }, "NameAlreadyExistsException": { @@ -1306,6 +1421,8 @@ "refs": { "DescribeAccountLimitsInput$NextToken": "

A string that identifies the next page of limits that you want to retrieve.

", "DescribeAccountLimitsOutput$NextToken": "

If the output exceeds 1 MB in size, a string that identifies the next page of limits. If no additional page exists, this value is null.

", + "DescribeChangeSetHooksInput$NextToken": "

A string, provided by the DescribeChangeSetHooks response output, that identifies the next page of information that you want to retrieve.

", + "DescribeChangeSetHooksOutput$NextToken": "

Pagination token, null or empty if no more results.

", "DescribeChangeSetInput$NextToken": "

A string (provided by the DescribeChangeSet response output) that identifies the next page of information that you want to retrieve.

", "DescribeChangeSetOutput$NextToken": "

If the output exceeds 1 MB, a string that identifies the next page of changes. If there is no additional page, this value is null.

", "DescribeStackEventsInput$NextToken": "

A string that identifies the next page of events that you want to retrieve.

", @@ -1315,29 +1432,29 @@ "DescribeStacksInput$NextToken": "

A string that identifies the next page of stacks that you want to retrieve.

", "DescribeStacksOutput$NextToken": "

If the output exceeds 1 MB in size, a string that identifies the next page of stacks. If no additional page exists, this value is null.

", "ListChangeSetsInput$NextToken": "

A string (provided by the ListChangeSets response output) that identifies the next page of change sets that you want to retrieve.

", - "ListChangeSetsOutput$NextToken": "

If the output exceeds 1 MB, a string that identifies the next page of change sets. If there is no additional page, this value is null.

", + "ListChangeSetsOutput$NextToken": "

If the output exceeds 1 MB, a string that identifies the next page of change sets. If there is no additional page, this value is null.

", "ListExportsInput$NextToken": "

A string (provided by the ListExports response output) that identifies the next page of exported output values that you asked to retrieve.

", "ListExportsOutput$NextToken": "

If the output exceeds 100 exported output values, a string that identifies the next page of exports. If there is no additional page, this value is null.

", "ListImportsInput$NextToken": "

A string (provided by the ListImports response output) that identifies the next page of stacks that are importing the specified exported output value.

", "ListImportsOutput$NextToken": "

A string that identifies the next page of exports. If there is no additional page, this value is null.

", "ListStackInstancesInput$NextToken": "

If the previous request didn't return all of the remaining results, the response's NextToken parameter value is set to a token. To retrieve the next set of results, call ListStackInstances again and assign that token to the request object's NextToken parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.

", - "ListStackInstancesOutput$NextToken": "

If the request doesn't return all of the remaining results, NextToken is set to a token. To retrieve the next set of results, call ListStackInstances again and assign that token to the request object's NextToken parameter. If the request returns all results, NextToken is set to null.

", + "ListStackInstancesOutput$NextToken": "

If the request doesn't return all the remaining results, NextToken is set to a token. To retrieve the next set of results, call ListStackInstances again and assign that token to the request object's NextToken parameter. If the request returns all results, NextToken is set to null.

", "ListStackResourcesInput$NextToken": "

A string that identifies the next page of stack resources that you want to retrieve.

", "ListStackResourcesOutput$NextToken": "

If the output exceeds 1 MB, a string that identifies the next page of stack resources. If no additional page exists, this value is null.

", "ListStackSetOperationResultsInput$NextToken": "

If the previous request didn't return all of the remaining results, the response object's NextToken parameter value is set to a token. To retrieve the next set of results, call ListStackSetOperationResults again and assign that token to the request object's NextToken parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.

", "ListStackSetOperationResultsOutput$NextToken": "

If the request doesn't return all results, NextToken is set to a token. To retrieve the next set of results, call ListOperationResults again and assign that token to the request object's NextToken parameter. If there are no remaining results, NextToken is set to null.

", "ListStackSetOperationsInput$NextToken": "

If the previous paginated request didn't return all of the remaining results, the response object's NextToken parameter value is set to a token. To retrieve the next set of results, call ListStackSetOperations again and assign that token to the request object's NextToken parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.

", "ListStackSetOperationsOutput$NextToken": "

If the request doesn't return all results, NextToken is set to a token. To retrieve the next set of results, call ListOperationResults again and assign that token to the request object's NextToken parameter. If there are no remaining results, NextToken is set to null.

", - "ListStackSetsInput$NextToken": "

If the previous paginated request didn't return all of the remaining results, the response object's NextToken parameter value is set to a token. To retrieve the next set of results, call ListStackSets again and assign that token to the request object's NextToken parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.

", + "ListStackSetsInput$NextToken": "

If the previous paginated request didn't return all the remaining results, the response object's NextToken parameter value is set to a token. To retrieve the next set of results, call ListStackSets again and assign that token to the request object's NextToken parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.

", "ListStackSetsOutput$NextToken": "

If the request doesn't return all of the remaining results, NextToken is set to a token. To retrieve the next set of results, call ListStackInstances again and assign that token to the request object's NextToken parameter. If the request returns all results, NextToken is set to null.

", "ListStacksInput$NextToken": "

A string that identifies the next page of stacks that you want to retrieve.

", "ListStacksOutput$NextToken": "

If the output exceeds 1 MB in size, a string that identifies the next page of stacks. If no additional page exists, this value is null.

", - "ListTypeRegistrationsInput$NextToken": "

If the previous paginated request didn't return all of the remaining results, the response object's NextToken parameter value is set to a token. To retrieve the next set of results, call this action again and assign that token to the request object's NextToken parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.

", + "ListTypeRegistrationsInput$NextToken": "

If the previous paginated request didn't return all the remaining results, the response object's NextToken parameter value is set to a token. To retrieve the next set of results, call this action again and assign that token to the request object's NextToken parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.

", "ListTypeRegistrationsOutput$NextToken": "

If the request doesn't return all of the remaining results, NextToken is set to a token. To retrieve the next set of results, call this action again and assign that token to the request object's NextToken parameter. If the request returns all results, NextToken is set to null.

", "ListTypeVersionsInput$NextToken": "

If the previous paginated request didn't return all of the remaining results, the response object's NextToken parameter value is set to a token. To retrieve the next set of results, call this action again and assign that token to the request object's NextToken parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.

", "ListTypeVersionsOutput$NextToken": "

If the request doesn't return all of the remaining results, NextToken is set to a token. To retrieve the next set of results, call this action again and assign that token to the request object's NextToken parameter. If the request returns all results, NextToken is set to null.

", "ListTypesInput$NextToken": "

If the previous paginated request didn't return all of the remaining results, the response object's NextToken parameter value is set to a token. To retrieve the next set of results, call this action again and assign that token to the request object's NextToken parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.

", - "ListTypesOutput$NextToken": "

If the request doesn't return all of the remaining results, NextToken is set to a token. To retrieve the next set of results, call this action again and assign that token to the request object's NextToken parameter. If the request returns all results, NextToken is set to null.

" + "ListTypesOutput$NextToken": "

If the request doesn't return all the remaining results, NextToken is set to a token. To retrieve the next set of results, call this action again and assign that token to the request object's NextToken parameter. If the request returns all results, NextToken is set to null.

" } }, "NoEcho": { @@ -1357,16 +1474,16 @@ "base": null, "refs": { "CreateChangeSetInput$NotificationARNs": "

The Amazon Resource Names (ARNs) of Amazon Simple Notification Service (Amazon SNS) topics that CloudFormation associates with the stack. To remove all associated notification topics, specify an empty list.

", - "CreateStackInput$NotificationARNs": "

The Simple Notification Service (SNS) topic ARNs to publish stack related events. You can find your SNS topic ARNs using the SNS console or your Command Line Interface (CLI).

", + "CreateStackInput$NotificationARNs": "

The Amazon Simple Notification Service (Amazon SNS) topic ARNs to publish stack related events. You can find your Amazon SNS topic ARNs using the Amazon SNS console or your Command Line Interface (CLI).

", "DescribeChangeSetOutput$NotificationARNs": "

The ARNs of the Amazon Simple Notification Service (Amazon SNS) topics that will be associated with the stack if you execute the change set.

", - "Stack$NotificationARNs": "

SNS topic ARNs to which stack related events are published.

", + "Stack$NotificationARNs": "

Amazon SNS topic Amazon Resource Names (ARNs) to which stack related events are published.

", "UpdateStackInput$NotificationARNs": "

Amazon Simple Notification Service topic Amazon Resource Names (ARNs) that CloudFormation associates with the stack. Specify an empty list to remove all notification topics.

" } }, "OnFailure": { "base": null, "refs": { - "CreateStackInput$OnFailure": "

Determines what action will be taken if stack creation fails. This must be one of: DO_NOTHING, ROLLBACK, or DELETE. You can specify either OnFailure or DisableRollback, but not both.

Default: ROLLBACK

" + "CreateStackInput$OnFailure": "

Determines what action will be taken if stack creation fails. This must be one of: DO_NOTHING, ROLLBACK, or DELETE. You can specify either OnFailure or DisableRollback, but not both.

Default: ROLLBACK

" } }, "OperationIdAlreadyExistsException": { @@ -1392,7 +1509,7 @@ } }, "OperationStatusCheckFailedException": { - "base": "

Error reserved for use by the CloudFormation CLI. CloudFormation does not return this error to users.

", + "base": "

Error reserved for use by the CloudFormation CLI. CloudFormation doesn't return this error to users.

", "refs": { } }, @@ -1416,7 +1533,7 @@ "base": null, "refs": { "DeploymentTargets$OrganizationalUnitIds": "

The organization root ID or organizational unit (OU) IDs to which StackSets deploys.

", - "ImportStacksToStackSetInput$OrganizationalUnitIds": "

The list of OU ID’s to which the stacks being imported has to be mapped as deployment target.

", + "ImportStacksToStackSetInput$OrganizationalUnitIds": "

The list of OU ID's to which the stacks being imported has to be mapped as deployment target.

", "StackSet$OrganizationalUnitIds": "

[Service-managed permissions] The organization root ID or organizational unit (OU) IDs that you specified for DeploymentTargets.

" } }, @@ -1471,8 +1588,8 @@ "ParameterKey": { "base": null, "refs": { - "Parameter$ParameterKey": "

The key associated with the parameter. If you don't specify a key and value for a particular parameter, CloudFormation uses the default value that is specified in your template.

", - "ParameterDeclaration$ParameterKey": "

The name that is associated with the parameter.

", + "Parameter$ParameterKey": "

The key associated with the parameter. If you don't specify a key and value for a particular parameter, CloudFormation uses the default value that's specified in your template.

", + "ParameterDeclaration$ParameterKey": "

The name that's associated with the parameter.

", "TemplateParameter$ParameterKey": "

The name associated with the parameter.

" } }, @@ -1486,7 +1603,7 @@ "base": null, "refs": { "Parameter$ParameterValue": "

The input value associated with the parameter.

", - "Parameter$ResolvedValue": "

Read-only. Read-only. The value that corresponds to a SSM parameter key. This field is returned only for SSM parameter types in the template.

", + "Parameter$ResolvedValue": "

Read-only. The value that corresponds to a SSM parameter key. This field is returned only for SSM parameter types in the template.

", "ParameterDeclaration$DefaultValue": "

The default value of the parameter.

", "TemplateParameter$DefaultValue": "

The default value associated with the parameter.

" } @@ -1496,7 +1613,7 @@ "refs": { "CreateChangeSetInput$Parameters": "

A list of Parameter structures that specify input parameters for the change set. For more information, see the Parameter data type.

", "CreateStackInput$Parameters": "

A list of Parameter structures that specify input parameters for the stack. For more information, see the Parameter data type.

", - "CreateStackInstancesInput$ParameterOverrides": "

A list of stack set parameters whose values you want to override in the selected stack instances.

Any overridden parameter values will be applied to all stack instances in the specified accounts and Regions. When specifying parameters and their values, be aware of how CloudFormation sets parameter values during stack instance operations:

During stack set updates, any parameter values overridden for a stack instance are not updated, but retain their overridden value.

You can only override the parameter values that are specified in the stack set; to add or delete a parameter itself, use UpdateStackSet to update the stack set template.

", + "CreateStackInstancesInput$ParameterOverrides": "

A list of stack set parameters whose values you want to override in the selected stack instances.

Any overridden parameter values will be applied to all stack instances in the specified accounts and Amazon Web Services Regions. When specifying parameters and their values, be aware of how CloudFormation sets parameter values during stack instance operations:

During stack set updates, any parameter values overridden for a stack instance aren't updated, but retain their overridden value.

You can only override the parameter values that are specified in the stack set; to add or delete a parameter itself, use UpdateStackSet to update the stack set template.

", "CreateStackSetInput$Parameters": "

The input parameters for the stack set template.

", "DescribeChangeSetOutput$Parameters": "

A list of Parameter structures that describes the input parameters and their values used to create the change set. For more information, see the Parameter data type.

", "EstimateTemplateCostInput$Parameters": "

A list of Parameter structures that specify input parameters.

", @@ -1504,8 +1621,8 @@ "StackInstance$ParameterOverrides": "

A list of parameters from the stack set template whose values have been overridden in this stack instance.

", "StackSet$Parameters": "

A list of input parameters for a stack set.

", "UpdateStackInput$Parameters": "

A list of Parameter structures that specify input parameters for the stack. For more information, see the Parameter data type.

", - "UpdateStackInstancesInput$ParameterOverrides": "

A list of input parameters whose values you want to update for the specified stack instances.

Any overridden parameter values will be applied to all stack instances in the specified accounts and Regions. When specifying parameters and their values, be aware of how CloudFormation sets parameter values during stack instance update operations:

During stack set updates, any parameter values overridden for a stack instance are not updated, but retain their overridden value.

You can only override the parameter values that are specified in the stack set; to add or delete a parameter itself, use UpdateStackSet to update the stack set template. If you add a parameter to a template, before you can override the parameter value specified in the stack set you must first use UpdateStackSet to update all stack instances with the updated template and parameter value specified in the stack set. Once a stack instance has been updated with the new parameter, you can then override the parameter value using UpdateStackInstances.

", - "UpdateStackSetInput$Parameters": "

A list of input parameters for the stack set template.

" + "UpdateStackInstancesInput$ParameterOverrides": "

A list of input parameters whose values you want to update for the specified stack instances.

Any overridden parameter values will be applied to all stack instances in the specified accounts and Amazon Web Services Regions. When specifying parameters and their values, be aware of how CloudFormation sets parameter values during stack instance update operations:

During stack set updates, any parameter values overridden for a stack instance aren't updated, but retain their overridden value.

You can only override the parameter values that are specified in the stack set; to add or delete a parameter itself, use UpdateStackSet to update the stack set template. If you add a parameter to a template, before you can override the parameter value specified in the stack set you must first use UpdateStackSet to update all stack instances with the updated template and parameter value specified in the stack set. Once a stack instance has been updated with the new parameter, you can then override the parameter value using UpdateStackInstances.

", + "UpdateStackSetInput$Parameters": "

A list of input parameters for the stack set template.

" } }, "PermissionModels": { @@ -1520,23 +1637,23 @@ "PhysicalResourceId": { "base": null, "refs": { - "DescribeStackResourcesInput$PhysicalResourceId": "

The name or unique identifier that corresponds to a physical instance ID of a resource supported by CloudFormation.

For example, for an Amazon Elastic Compute Cloud (EC2) instance, PhysicalResourceId corresponds to the InstanceId. You can pass the EC2 InstanceId to DescribeStackResources to find which stack the instance belongs to and what other resources are part of the stack.

Required: Conditional. If you do not specify PhysicalResourceId, you must specify StackName.

Default: There is no default value.

", + "DescribeStackResourcesInput$PhysicalResourceId": "

The name or unique identifier that corresponds to a physical instance ID of a resource supported by CloudFormation.

For example, for an Amazon Elastic Compute Cloud (EC2) instance, PhysicalResourceId corresponds to the InstanceId. You can pass the EC2 InstanceId to DescribeStackResources to find which stack the instance belongs to and what other resources are part of the stack.

Required: Conditional. If you don't specify PhysicalResourceId, you must specify StackName.

Default: There is no default value.

", "ResourceChange$PhysicalResourceId": "

The resource's physical ID (resource name). Resources that you are adding don't have physical IDs because they haven't been created.

", "StackEvent$PhysicalResourceId": "

The name or unique identifier associated with the physical instance of the resource.

", "StackResource$PhysicalResourceId": "

The name or unique identifier that corresponds to a physical instance ID of a resource supported by CloudFormation.

", "StackResourceDetail$PhysicalResourceId": "

The name or unique identifier that corresponds to a physical instance ID of a resource supported by CloudFormation.

", - "StackResourceDrift$PhysicalResourceId": "

The name or unique identifier that corresponds to a physical instance ID of a resource supported by CloudFormation.

", + "StackResourceDrift$PhysicalResourceId": "

The name or unique identifier that corresponds to a physical instance ID of a resource supported by CloudFormation.

", "StackResourceSummary$PhysicalResourceId": "

The name or unique identifier that corresponds to a physical instance ID of the resource.

" } }, "PhysicalResourceIdContext": { "base": null, "refs": { - "StackResourceDrift$PhysicalResourceIdContext": "

Context information that enables CloudFormation to uniquely identify a resource. CloudFormation uses context key-value pairs in cases where a resource's logical and physical IDs are not enough to uniquely identify that resource. Each context key-value pair specifies a unique resource that contains the targeted resource.

" + "StackResourceDrift$PhysicalResourceIdContext": "

Context information that enables CloudFormation to uniquely identify a resource. CloudFormation uses context key-value pairs in cases where a resource's logical and physical IDs aren't enough to uniquely identify that resource. Each context key-value pair specifies a unique resource that contains the targeted resource.

" } }, "PhysicalResourceIdContextKeyValuePair": { - "base": "

Context information that enables CloudFormation to uniquely identify a resource. CloudFormation uses context key-value pairs in cases where a resource's logical and physical IDs are not enough to uniquely identify that resource. Each context key-value pair specifies a resource that contains the targeted resource.

", + "base": "

Context information that enables CloudFormation to uniquely identify a resource. CloudFormation uses context key-value pairs in cases where a resource's logical and physical IDs aren't enough to uniquely identify that resource. Each context key-value pair specifies a resource that contains the targeted resource.

", "refs": { "PhysicalResourceIdContext$member": null } @@ -1554,8 +1671,8 @@ "Properties": { "base": null, "refs": { - "StackResourceDrift$ExpectedProperties": "

A JSON structure containing the expected property values of the stack resource, as defined in the stack template and any values specified as template parameters.

For resources whose StackResourceDriftStatus is DELETED, this structure will not be present.

", - "StackResourceDrift$ActualProperties": "

A JSON structure containing the actual property values of the stack resource.

For resources whose StackResourceDriftStatus is DELETED, this structure will not be present.

" + "StackResourceDrift$ExpectedProperties": "

A JSON structure containing the expected property values of the stack resource, as defined in the stack template and any values specified as template parameters.

For resources whose StackResourceDriftStatus is DELETED, this structure will not be present.

", + "StackResourceDrift$ActualProperties": "

A JSON structure containing the actual property values of the stack resource.

For resources whose StackResourceDriftStatus is DELETED, this structure will not be present.

" } }, "PropertyDifference": { @@ -1567,7 +1684,7 @@ "PropertyDifferences": { "base": null, "refs": { - "StackResourceDrift$PropertyDifferences": "

A collection of the resource properties whose actual values differ from their expected values. These will be present only for resources whose StackResourceDriftStatus is MODIFIED.

" + "StackResourceDrift$PropertyDifferences": "

A collection of the resource properties whose actual values differ from their expected values. These will be present only for resources whose StackResourceDriftStatus is MODIFIED.

" } }, "PropertyName": { @@ -1592,8 +1709,8 @@ "ProvisioningType": { "base": null, "refs": { - "DescribeTypeOutput$ProvisioningType": "

For resource type extensions, the provisioning behavior of the resource type. CloudFormation determines the provisioning type during registration, based on the types of handlers in the schema handler package submitted.

Valid values include:

", - "ListTypesInput$ProvisioningType": "

For resource types, the provisioning behavior of the resource type. CloudFormation determines the provisioning type during registration, based on the types of handlers in the schema handler package submitted.

Valid values include:

The default is FULLY_MUTABLE.

" + "DescribeTypeOutput$ProvisioningType": "

For resource type extensions, the provisioning behavior of the resource type. CloudFormation determines the provisioning type during registration, based on the types of handlers in the schema handler package submitted.

Valid values include:

", + "ListTypesInput$ProvisioningType": "

For resource types, the provisioning behavior of the resource type. CloudFormation determines the provisioning type during registration, based on the types of handlers in the schema handler package submitted.

Valid values include:

The default is FULLY_MUTABLE.

" } }, "PublicVersionNumber": { @@ -1601,11 +1718,11 @@ "refs": { "DescribeTypeInput$PublicVersionNumber": "

The version number of a public third-party extension.

", "DescribeTypeOutput$PublicVersionNumber": "

The version number of a public third-party extension.

This applies only if you specify a public extension you have activated in your account, or specify a public extension without specifying a version. For all other extensions, CloudFormation returns null.

", - "DescribeTypeOutput$LatestPublicVersion": "

The latest version of a public extension that is available for use.

This only applies if you specify a public extension, and you do not specify a version. For all other requests, CloudFormation returns null.

", - "PublishTypeInput$PublicVersionNumber": "

The version number to assign to this version of the extension.

Use the following format, and adhere to semantic versioning when assigning a version number to your extension:

MAJOR.MINOR.PATCH

For more information, see Semantic Versioning 2.0.0.

If you do not specify a version number, CloudFormation increments the version number by one minor version release.

You cannot specify a version number the first time you publish a type. CloudFormation automatically sets the first version number to be 1.0.0.

", - "TypeSummary$PublicVersionNumber": "

For public extensions that have been activated for this account and region, the version of the public extension to be used for CloudFormation operations in this account and region.

How you specified AutoUpdate when enabling the extension affects whether CloudFormation automatically updates the extention in this account and region when a new version is released. For more information, see Setting CloudFormation to automatically use new versions of extensions in the CloudFormation User Guide.

", - "TypeSummary$LatestPublicVersion": "

For public extensions that have been activated for this account and region, the latest version of the public extension that is available. For any extensions other than activated third-arty extensions, CloudFormation returns null.

How you specified AutoUpdate when enabling the extension affects whether CloudFormation automatically updates the extention in this account and region when a new version is released. For more information, see Setting CloudFormation to automatically use new versions of extensions in the CloudFormation User Guide.

", - "TypeVersionSummary$PublicVersionNumber": "

For public extensions that have been activated for this account and region, the version of the public extension to be used for CloudFormation operations in this account and region. For any extensions other than activated third-arty extensions, CloudFormation returns null.

How you specified AutoUpdate when enabling the extension affects whether CloudFormation automatically updates the extention in this account and region when a new version is released. For more information, see Setting CloudFormation to automatically use new versions of extensions in the CloudFormation User Guide.

" + "DescribeTypeOutput$LatestPublicVersion": "

The latest version of a public extension that is available for use.

This only applies if you specify a public extension, and you don't specify a version. For all other requests, CloudFormation returns null.

", + "PublishTypeInput$PublicVersionNumber": "

The version number to assign to this version of the extension.

Use the following format, and adhere to semantic versioning when assigning a version number to your extension:

MAJOR.MINOR.PATCH

For more information, see Semantic Versioning 2.0.0.

If you don't specify a version number, CloudFormation increments the version number by one minor version release.

You cannot specify a version number the first time you publish a type. CloudFormation automatically sets the first version number to be 1.0.0.

", + "TypeSummary$PublicVersionNumber": "

For public extensions that have been activated for this account and region, the version of the public extension to be used for CloudFormation operations in this account and Region.

How you specified AutoUpdate when enabling the extension affects whether CloudFormation automatically updates the extension in this account and region when a new version is released. For more information, see Setting CloudFormation to automatically use new versions of extensions in the CloudFormation User Guide.

", + "TypeSummary$LatestPublicVersion": "

For public extensions that have been activated for this account and region, the latest version of the public extension that is available. For any extensions other than activated third-arty extensions, CloudFormation returns null.

How you specified AutoUpdate when enabling the extension affects whether CloudFormation automatically updates the extension in this account and region when a new version is released. For more information, see Setting CloudFormation to automatically use new versions of extensions in the CloudFormation User Guide.

", + "TypeVersionSummary$PublicVersionNumber": "

For public extensions that have been activated for this account and region, the version of the public extension to be used for CloudFormation operations in this account and region. For any extensions other than activated third-arty extensions, CloudFormation returns null.

How you specified AutoUpdate when enabling the extension affects whether CloudFormation automatically updates the extension in this account and region when a new version is released. For more information, see Setting CloudFormation to automatically use new versions of extensions in the CloudFormation User Guide.

" } }, "PublishTypeInput": { @@ -1622,15 +1739,15 @@ "base": null, "refs": { "ActivateTypeInput$PublisherId": "

The ID of the extension publisher.

Conditional: You must specify PublicTypeArn, or TypeName, Type, and PublisherId.

", - "DescribePublisherInput$PublisherId": "

The ID of the extension publisher.

If you do not supply a PublisherId, and you have registered as an extension publisher, DescribePublisher returns information about your own publisher account.

", + "DescribePublisherInput$PublisherId": "

The ID of the extension publisher.

If you don't supply a PublisherId, and you have registered as an extension publisher, DescribePublisher returns information about your own publisher account.

", "DescribePublisherOutput$PublisherId": "

The ID of the extension publisher.

", "DescribeTypeInput$PublisherId": "

The publisher ID of the extension publisher.

Extensions provided by Amazon are not assigned a publisher ID.

", - "DescribeTypeOutput$PublisherId": "

The publisher ID of the extension publisher.

This applies only to public third-party extensions. For private registered extensions, and extensions provided by Amazon, CloudFormation returns null.

", - "ListTypeVersionsInput$PublisherId": "

The publisher ID of the extension publisher.

Extensions published by Amazon are not assigned a publisher ID.

", + "DescribeTypeOutput$PublisherId": "

The publisher ID of the extension publisher.

This applies only to public third-party extensions. For private registered extensions, and extensions provided by Amazon Web Services, CloudFormation returns null.

", + "ListTypeVersionsInput$PublisherId": "

The publisher ID of the extension publisher.

Extensions published by Amazon aren't assigned a publisher ID.

", "RegisterPublisherOutput$PublisherId": "

The ID assigned this account by CloudFormation for publishing extensions.

", "RequiredActivatedType$PublisherId": "

The publisher ID of the extension publisher.

", - "TypeFilters$PublisherId": "

The id of the publisher of the extension.

Extensions published by Amazon are not assigned a publisher ID. Use the AWS_TYPE category to specify a list of types published by Amazon.

", - "TypeSummary$PublisherId": "

The ID of the extension publisher, if the extension is published by a third party. Extensions published by Amazon do not return a publisher ID.

" + "TypeFilters$PublisherId": "

The id of the publisher of the extension.

Extensions published by Amazon aren't assigned a publisher ID. Use the AWS_TYPES category to specify a list of types published by Amazon.

", + "TypeSummary$PublisherId": "

The ID of the extension publisher, if the extension is published by a third party. Extensions published by Amazon don't return a publisher ID.

" } }, "PublisherName": { @@ -1654,7 +1771,7 @@ "Reason": { "base": null, "refs": { - "StackInstance$StatusReason": "

The explanation for the specific status code that is assigned to this stack instance.

", + "StackInstance$StatusReason": "

The explanation for the specific status code that's assigned to this stack instance.

", "StackInstanceSummary$StatusReason": "

The explanation for the specific status code assigned to this stack instance.

", "StackSetOperationResultSummary$StatusReason": "

The reason for the assigned result status.

" } @@ -1673,7 +1790,7 @@ "base": null, "refs": { "DescribeStackInstanceInput$StackInstanceRegion": "

The name of a Region that's associated with this stack instance.

", - "ListStackInstancesInput$StackInstanceRegion": "

The name of the Region where you want to list stack instances.

", + "ListStackInstancesInput$StackInstanceRegion": "

The name of the Region where you want to list stack instances.

", "RegionList$member": null, "StackInstance$Region": "

The name of the Amazon Web Services Region that the stack instance is associated with.

", "StackInstanceSummary$Region": "

The name of the Amazon Web Services Region that the stack instance is associated with.

", @@ -1689,11 +1806,11 @@ "RegionList": { "base": null, "refs": { - "CreateStackInstancesInput$Regions": "

The names of one or more Regions where you want to create stack instances using the specified Amazon Web Services accounts.

", - "DeleteStackInstancesInput$Regions": "

The Regions where you want to delete stack set instances.

", + "CreateStackInstancesInput$Regions": "

The names of one or more Amazon Web Services Regions where you want to create stack instances using the specified Amazon Web Services accounts.

", + "DeleteStackInstancesInput$Regions": "

The Amazon Web Services Regions where you want to delete stack set instances.

", "StackSetOperationPreferences$RegionOrder": "

The order of the Regions in where you want to perform the stack operation.

", - "UpdateStackInstancesInput$Regions": "

The names of one or more Regions in which you want to update parameter values for stack instances. The overridden parameter values will be applied to all stack instances in the specified accounts and Regions.

", - "UpdateStackSetInput$Regions": "

The Regions in which to update associated stack instances. If you specify Regions, you must also specify accounts in which to update stack set instances.

To update all the stack instances associated with this stack set, do not specify the Accounts or Regions properties.

If the stack set update includes changes to the template (that is, if the TemplateBody or TemplateURL properties are specified), or the Parameters property, CloudFormation marks all stack instances with a status of OUTDATED prior to updating the stack instances in the specified accounts and Regions. If the stack set update does not include changes to the template or parameters, CloudFormation updates the stack instances in the specified accounts and Regions, while leaving all other stack instances with their existing stack instance status.

" + "UpdateStackInstancesInput$Regions": "

The names of one or more Amazon Web Services Regions in which you want to update parameter values for stack instances. The overridden parameter values will be applied to all stack instances in the specified accounts and Amazon Web Services Regions.

", + "UpdateStackSetInput$Regions": "

The Amazon Web Services Regions in which to update associated stack instances. If you specify Regions, you must also specify accounts in which to update stack set instances.

To update all the stack instances associated with this stack set, do not specify the Accounts or Regions properties.

If the stack set update includes changes to the template (that is, if the TemplateBody or TemplateURL properties are specified), or the Parameters property, CloudFormation marks all stack instances with a status of OUTDATED prior to updating the stack instances in the specified accounts and Regions. If the stack set update does not include changes to the template or parameters, CloudFormation updates the stack instances in the specified accounts and Regions, while leaving all other stack instances with their existing stack instance status.

" } }, "RegisterPublisherInput": { @@ -1727,22 +1844,22 @@ "base": null, "refs": { "DescribeTypeRegistrationInput$RegistrationToken": "

The identifier for this registration request.

This registration token is generated by CloudFormation when you initiate a registration request using RegisterType .

", - "RegisterTypeOutput$RegistrationToken": "

The identifier for this registration request.

Use this registration token when calling DescribeTypeRegistration , which returns information about the status and IDs of the extension registration.

", + "RegisterTypeOutput$RegistrationToken": "

The identifier for this registration request.

Use this registration token when calling DescribeTypeRegistration , which returns information about the status and IDs of the extension registration.

", "RegistrationTokenList$member": null } }, "RegistrationTokenList": { "base": null, "refs": { - "ListTypeRegistrationsOutput$RegistrationTokenList": "

A list of extension registration tokens.

Use DescribeTypeRegistration to return detailed information about a type registration request.

" + "ListTypeRegistrationsOutput$RegistrationTokenList": "

A list of extension registration tokens.

Use DescribeTypeRegistration to return detailed information about a type registration request.

" } }, "RegistryType": { "base": null, "refs": { "DeregisterTypeInput$Type": "

The kind of extension.

Conditional: You must specify either TypeName and Type, or Arn.

", - "DescribeTypeInput$Type": "

The kind of extension.

Conditional: You must specify either TypeName and Type, or Arn.

", - "DescribeTypeOutput$Type": "

The kind of extension.

", + "DescribeTypeInput$Type": "

The kind of extension.

Conditional: You must specify either TypeName and Type, or Arn.

", + "DescribeTypeOutput$Type": "

The kind of extension.

", "ListTypeRegistrationsInput$Type": "

The kind of extension.

Conditional: You must specify either TypeName and Type, or Arn.

", "ListTypeVersionsInput$Type": "

The kind of the extension.

Conditional: You must specify either TypeName and Type, or Arn.

", "ListTypesInput$Type": "

The type of extension.

", @@ -1761,7 +1878,7 @@ "RequestToken": { "base": null, "refs": { - "RegisterTypeInput$ClientRequestToken": "

A unique identifier that acts as an idempotency key for this registration request. Specifying a client request token prevents CloudFormation from generating more than one version of an extension from the same registeration request, even if the request is submitted multiple times.

" + "RegisterTypeInput$ClientRequestToken": "

A unique identifier that acts as an idempotency key for this registration request. Specifying a client request token prevents CloudFormation from generating more than one version of an extension from the same registration request, even if the request is submitted multiple times.

" } }, "RequiredActivatedType": { @@ -1804,7 +1921,7 @@ "ResourceChangeDetails": { "base": null, "refs": { - "ResourceChange$Details": "

For the Modify action, a list of ResourceChangeDetail structures that describes the changes that CloudFormation will make to the resource.

" + "ResourceChange$Details": "

For the Modify action, a list of ResourceChangeDetail structures that describes the changes that CloudFormation will make to the resource.

" } }, "ResourceIdentifierProperties": { @@ -1912,8 +2029,8 @@ "ResourceToImport$ResourceType": "

The type of resource to import into your stack, such as AWS::S3::Bucket. For a list of supported resource types, see Resources that support import operations in the CloudFormation User Guide.

", "ResourceTypes$member": null, "StackEvent$ResourceType": "

Type of resource. (For more information, go to Amazon Web Services Resource Types Reference in the CloudFormation User Guide.)

", - "StackResource$ResourceType": "

Type of resource. (For more information, go to Amazon Web Services Resource Types Reference in the CloudFormation User Guide.)

", - "StackResourceDetail$ResourceType": "

Type of resource. ((For more information, go to Amazon Web Services Resource Types Reference in the CloudFormation User Guide.)

", + "StackResource$ResourceType": "

Type of resource. For more information, go to Amazon Web Services Resource Types Reference in the CloudFormation User Guide.

", + "StackResourceDetail$ResourceType": "

Type of resource. For more information, go to Amazon Web Services Resource Types Reference in the CloudFormation User Guide.

", "StackResourceDrift$ResourceType": "

The type of the resource.

", "StackResourceSummary$ResourceType": "

Type of resource. (For more information, go to Amazon Web Services Resource Types Reference in the CloudFormation User Guide.)

" } @@ -1921,7 +2038,7 @@ "ResourceTypes": { "base": null, "refs": { - "CreateChangeSetInput$ResourceTypes": "

The template resource types that you have permissions to work with if you execute this change set, such as AWS::EC2::Instance, AWS::EC2::*, or Custom::MyCustomInstance.

If the list of resource types doesn't include a resource type that you're updating, the stack update fails. By default, CloudFormation grants permissions to all resource types. Identity and Access Management (IAM) uses this parameter for condition keys in IAM policies for CloudFormation. For more information, see Controlling Access with Identity and Access Management in the CloudFormation User Guide.

", + "CreateChangeSetInput$ResourceTypes": "

The template resource types that you have permissions to work with if you execute this change set, such as AWS::EC2::Instance, AWS::EC2::*, or Custom::MyCustomInstance.

If the list of resource types doesn't include a resource type that you're updating, the stack update fails. By default, CloudFormation grants permissions to all resource types. Identity and Access Management (IAM) uses this parameter for condition keys in IAM policies for CloudFormation. For more information, see Controlling access with Identity and Access Management in the CloudFormation User Guide.

", "CreateStackInput$ResourceTypes": "

The template resource types that you have permissions to work with for this create stack action, such as AWS::EC2::Instance, AWS::EC2::*, or Custom::MyCustomInstance. Use the following syntax to describe template resource types: AWS::* (for all Amazon Web Services resources), Custom::* (for all custom resources), Custom::logical_ID (for a specific custom resource), AWS::service_name::* (for all resources of a particular Amazon Web Services service), and AWS::service_name::resource_logical_ID (for a specific Amazon Web Services resource).

If the list of resource types doesn't include a resource that you're creating, the stack creation fails. By default, CloudFormation grants permissions to all resource types. Identity and Access Management (IAM) uses this parameter for CloudFormation-specific condition keys in IAM policies. For more information, see Controlling Access with Identity and Access Management.

", "GetTemplateSummaryOutput$ResourceTypes": "

A list of all the template resource types that are defined in the template, such as AWS::EC2::Instance, AWS::Dynamo::Table, and Custom::MyCustomInstance.

", "UpdateStackInput$ResourceTypes": "

The template resource types that you have permissions to work with for this update stack action, such as AWS::EC2::Instance, AWS::EC2::*, or Custom::MyCustomInstance.

If the list of resource types doesn't include a resource that you're updating, the stack update fails. By default, CloudFormation grants permissions to all resource types. Identity and Access Management (IAM) uses this parameter for CloudFormation-specific condition keys in IAM policies. For more information, see Controlling Access with Identity and Access Management.

" @@ -1936,13 +2053,13 @@ "ResourcesToSkip": { "base": null, "refs": { - "ContinueUpdateRollbackInput$ResourcesToSkip": "

A list of the logical IDs of the resources that CloudFormation skips during the continue update rollback operation. You can specify only resources that are in the UPDATE_FAILED state because a rollback failed. You can't specify resources that are in the UPDATE_FAILED state for other reasons, for example, because an update was cancelled. To check why a resource update failed, use the DescribeStackResources action, and view the resource status reason.

Specify this property to skip rolling back resources that CloudFormation can't successfully roll back. We recommend that you troubleshoot resources before skipping them. CloudFormation sets the status of the specified resources to UPDATE_COMPLETE and continues to roll back the stack. After the rollback is complete, the state of the skipped resources will be inconsistent with the state of the resources in the stack template. Before performing another stack update, you must update the stack or resources to be consistent with each other. If you don't, subsequent stack updates might fail, and the stack will become unrecoverable.

Specify the minimum number of resources required to successfully roll back your stack. For example, a failed resource update might cause dependent resources to fail. In this case, it might not be necessary to skip the dependent resources.

To skip resources that are part of nested stacks, use the following format: NestedStackName.ResourceLogicalID. If you want to specify the logical ID of a stack resource (Type: AWS::CloudFormation::Stack) in the ResourcesToSkip list, then its corresponding embedded stack must be in one of the following states: DELETE_IN_PROGRESS, DELETE_COMPLETE, or DELETE_FAILED.

Don't confuse a child stack's name with its corresponding logical ID defined in the parent stack. For an example of a continue update rollback operation with nested stacks, see Using ResourcesToSkip to recover a nested stacks hierarchy.

" + "ContinueUpdateRollbackInput$ResourcesToSkip": "

A list of the logical IDs of the resources that CloudFormation skips during the continue update rollback operation. You can specify only resources that are in the UPDATE_FAILED state because a rollback failed. You can't specify resources that are in the UPDATE_FAILED state for other reasons, for example, because an update was canceled. To check why a resource update failed, use the DescribeStackResources action, and view the resource status reason.

Specify this property to skip rolling back resources that CloudFormation can't successfully roll back. We recommend that you troubleshoot resources before skipping them. CloudFormation sets the status of the specified resources to UPDATE_COMPLETE and continues to roll back the stack. After the rollback is complete, the state of the skipped resources will be inconsistent with the state of the resources in the stack template. Before performing another stack update, you must update the stack or resources to be consistent with each other. If you don't, subsequent stack updates might fail, and the stack will become unrecoverable.

Specify the minimum number of resources required to successfully roll back your stack. For example, a failed resource update might cause dependent resources to fail. In this case, it might not be necessary to skip the dependent resources.

To skip resources that are part of nested stacks, use the following format: NestedStackName.ResourceLogicalID. If you want to specify the logical ID of a stack resource (Type: AWS::CloudFormation::Stack) in the ResourcesToSkip list, then its corresponding embedded stack must be in one of the following states: DELETE_IN_PROGRESS, DELETE_COMPLETE, or DELETE_FAILED.

Don't confuse a child stack's name with its corresponding logical ID defined in the parent stack. For an example of a continue update rollback operation with nested stacks, see Using ResourcesToSkip to recover a nested stacks hierarchy.

" } }, "RetainResources": { "base": null, "refs": { - "DeleteStackInput$RetainResources": "

For stacks in the DELETE_FAILED state, a list of resource logical IDs that are associated with the resources you want to retain. During deletion, CloudFormation deletes the stack but does not delete the retained resources.

Retaining resources is useful when you cannot delete a resource, such as a non-empty S3 bucket, but you want to delete the stack.

" + "DeleteStackInput$RetainResources": "

For stacks in the DELETE_FAILED state, a list of resource logical IDs that are associated with the resources you want to retain. During deletion, CloudFormation deletes the stack but doesn't delete the retained resources.

Retaining resources is useful when you can't delete a resource, such as a non-empty S3 bucket, but you want to delete the stack.

" } }, "RetainStacks": { @@ -1954,7 +2071,7 @@ "RetainStacksNullable": { "base": null, "refs": { - "StackSetOperation$RetainStacks": "

For stack set operations of action type DELETE, specifies whether to remove the stack instances from the specified stack set, but doesn't delete the stacks. You can't reassociate a retained stack, or add an existing, saved stack to a new stack set.

" + "StackSetOperation$RetainStacks": "

For stack set operations of action type DELETE, specifies whether to remove the stack instances from the specified stack set, but doesn't delete the stacks. You can't re-associate a retained stack, or add an existing, saved stack to a new stack set.

" } }, "RetainStacksOnAccountRemovalNullable": { @@ -1966,16 +2083,16 @@ "RoleARN": { "base": null, "refs": { - "ContinueUpdateRollbackInput$RoleARN": "

The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that CloudFormation assumes to roll back the stack. CloudFormation uses the role's credentials to make calls on your behalf. CloudFormation always uses this role for all future operations on the stack. As long as users have permission to operate on the stack, CloudFormation uses this role even if the users don't have permission to pass it. Ensure that the role grants least privilege.

If you don't specify a value, CloudFormation uses the role that was previously associated with the stack. If no role is available, CloudFormation uses a temporary session that is generated from your user credentials.

", - "CreateChangeSetInput$RoleARN": "

The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that CloudFormation assumes when executing the change set. CloudFormation uses the role's credentials to make calls on your behalf. CloudFormation uses this role for all future operations on the stack. As long as users have permission to operate on the stack, CloudFormation uses this role even if the users don't have permission to pass it. Ensure that the role grants least privilege.

If you don't specify a value, CloudFormation uses the role that was previously associated with the stack. If no role is available, CloudFormation uses a temporary session that is generated from your user credentials.

", - "CreateStackInput$RoleARN": "

The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that CloudFormation assumes to create the stack. CloudFormation uses the role's credentials to make calls on your behalf. CloudFormation always uses this role for all future operations on the stack. As long as users have permission to operate on the stack, CloudFormation uses this role even if the users don't have permission to pass it. Ensure that the role grants least privilege.

If you don't specify a value, CloudFormation uses the role that was previously associated with the stack. If no role is available, CloudFormation uses a temporary session that is generated from your user credentials.

", - "CreateStackSetInput$AdministrationRoleARN": "

The Amazon Resource Number (ARN) of the IAM role to use to create this stack set.

Specify an IAM role only if you are using customized administrator roles to control which users or groups can manage specific stack sets within the same administrator account. For more information, see Prerequisites: Granting Permissions for Stack Set Operations in the CloudFormation User Guide.

", - "DeleteStackInput$RoleARN": "

The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that CloudFormation assumes to delete the stack. CloudFormation uses the role's credentials to make calls on your behalf.

If you don't specify a value, CloudFormation uses the role that was previously associated with the stack. If no role is available, CloudFormation uses a temporary session that is generated from your user credentials.

", + "ContinueUpdateRollbackInput$RoleARN": "

The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that CloudFormation assumes to roll back the stack. CloudFormation uses the role's credentials to make calls on your behalf. CloudFormation always uses this role for all future operations on the stack. Provided that users have permission to operate on the stack, CloudFormation uses this role even if the users don't have permission to pass it. Ensure that the role grants least permission.

If you don't specify a value, CloudFormation uses the role that was previously associated with the stack. If no role is available, CloudFormation uses a temporary session that's generated from your user credentials.

", + "CreateChangeSetInput$RoleARN": "

The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that CloudFormation assumes when executing the change set. CloudFormation uses the role's credentials to make calls on your behalf. CloudFormation uses this role for all future operations on the stack. Provided that users have permission to operate on the stack, CloudFormation uses this role even if the users don't have permission to pass it. Ensure that the role grants least permission.

If you don't specify a value, CloudFormation uses the role that was previously associated with the stack. If no role is available, CloudFormation uses a temporary session that is generated from your user credentials.

", + "CreateStackInput$RoleARN": "

The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that CloudFormation assumes to create the stack. CloudFormation uses the role's credentials to make calls on your behalf. CloudFormation always uses this role for all future operations on the stack. Provided that users have permission to operate on the stack, CloudFormation uses this role even if the users don't have permission to pass it. Ensure that the role grants least privilege.

If you don't specify a value, CloudFormation uses the role that was previously associated with the stack. If no role is available, CloudFormation uses a temporary session that's generated from your user credentials.

", + "CreateStackSetInput$AdministrationRoleARN": "

The Amazon Resource Number (ARN) of the IAM role to use to create this stack set.

Specify an IAM role only if you are using customized administrator roles to control which users or groups can manage specific stack sets within the same administrator account. For more information, see Prerequisites: Granting Permissions for Stack Set Operations in the CloudFormation User Guide.

", + "DeleteStackInput$RoleARN": "

The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that CloudFormation assumes to delete the stack. CloudFormation uses the role's credentials to make calls on your behalf.

If you don't specify a value, CloudFormation uses the role that was previously associated with the stack. If no role is available, CloudFormation uses a temporary session that's generated from your user credentials.

", "RollbackStackInput$RoleARN": "

The Amazon Resource Name (ARN) of an Identity and Access Management role that CloudFormation assumes to rollback the stack.

", - "Stack$RoleARN": "

The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that is associated with the stack. During a stack operation, CloudFormation uses this role's credentials to make calls on your behalf.

", + "Stack$RoleARN": "

The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that's associated with the stack. During a stack operation, CloudFormation uses this role's credentials to make calls on your behalf.

", "StackSet$AdministrationRoleARN": "

The Amazon Resource Number (ARN) of the IAM role used to create or update the stack set.

Use customized administrator roles to control which users or groups can manage specific stack sets within the same administrator account. For more information, see Prerequisites: Granting Permissions for Stack Set Operations in the CloudFormation User Guide.

", - "StackSetOperation$AdministrationRoleARN": "

The Amazon Resource Number (ARN) of the IAM role used to perform this stack set operation.

Use customized administrator roles to control which users or groups can manage specific stack sets within the same administrator account. For more information, see Define Permissions for Multiple Administrators in the CloudFormation User Guide.

", - "UpdateStackInput$RoleARN": "

The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that CloudFormation assumes to update the stack. CloudFormation uses the role's credentials to make calls on your behalf. CloudFormation always uses this role for all future operations on the stack. As long as users have permission to operate on the stack, CloudFormation uses this role even if the users don't have permission to pass it. Ensure that the role grants least privilege.

If you don't specify a value, CloudFormation uses the role that was previously associated with the stack. If no role is available, CloudFormation uses a temporary session that is generated from your user credentials.

", + "StackSetOperation$AdministrationRoleARN": "

The Amazon Resource Number (ARN) of the IAM role used to perform this stack set operation.

Use customized administrator roles to control which users or groups can manage specific stack sets within the same administrator account. For more information, see Define Permissions for Multiple Administrators in the CloudFormation User Guide.

", + "UpdateStackInput$RoleARN": "

The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that CloudFormation assumes to update the stack. CloudFormation uses the role's credentials to make calls on your behalf. CloudFormation always uses this role for all future operations on the stack. Provided that users have permission to operate on the stack, CloudFormation uses this role even if the users don't have permission to pass it. Ensure that the role grants least privilege.

If you don't specify a value, CloudFormation uses the role that was previously associated with the stack. If no role is available, CloudFormation uses a temporary session that is generated from your user credentials.

", "UpdateStackSetInput$AdministrationRoleARN": "

The Amazon Resource Number (ARN) of the IAM role to use to update this stack set.

Specify an IAM role only if you are using customized administrator roles to control which users or groups can manage specific stack sets within the same administrator account. For more information, see Granting Permissions for Stack Set Operations in the CloudFormation User Guide.

If you specified a customized administrator role when you created the stack set, you must specify a customized administrator role, even if it is the same customized administrator role used with this stack set previously.

" } }, @@ -1984,7 +2101,7 @@ "refs": { "ActivateTypeInput$ExecutionRoleArn": "

The name of the IAM execution role to use to activate the extension.

", "DescribeTypeOutput$ExecutionRoleArn": "

The Amazon Resource Name (ARN) of the IAM execution role used to register the extension. This applies only to private extensions you have registered in your account. For more information, see RegisterType.

If the registered extension calls any Amazon Web Services APIs, you must create an IAM execution role that includes the necessary permissions to call those Amazon Web Services APIs, and provision that execution role in your account. CloudFormation then assumes that execution role to provide your extension with the appropriate credentials.

", - "LoggingConfig$LogRoleArn": "

The ARN of the role that CloudFormation should assume when sending log entries to CloudWatch logs.

", + "LoggingConfig$LogRoleArn": "

The Amazon Resource Name (ARN) of the role that CloudFormation should assume when sending log entries to CloudWatch Logs.

", "RegisterTypeInput$ExecutionRoleArn": "

The Amazon Resource Name (ARN) of the IAM role for CloudFormation to assume when invoking the extension.

For CloudFormation to assume the specified execution role, the role must contain a trust relationship with the CloudFormation service principle (resources.cloudformation.amazonaws.com). For more information on adding trust relationships, see Modifying a role trust policy in the Identity and Access Management User Guide.

If your extension calls Amazon Web Services APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those Amazon Web Services APIs, and provision that execution role in your account. When CloudFormation needs to invoke the resource type handler, CloudFormation assumes this execution role to create a temporary session token, which it then passes to the resource type handler, thereby supplying your resource type with the appropriate credentials.

" } }, @@ -2009,7 +2126,7 @@ } }, "RollbackTrigger": { - "base": "

A rollback trigger CloudFormation monitors during creation and updating of stacks. If any of the alarms you specify goes to ALARM state during the stack operation or within the specified monitoring period afterwards, CloudFormation rolls back the entire stack operation.

", + "base": "

A rollback trigger CloudFormation monitors during creation and updating of stacks. If any of the alarms you specify goes to ALARM state during the stack operation or within the specified monitoring period afterwards, CloudFormation rolls back the entire stack operation.

", "refs": { "RollbackTriggers$member": null } @@ -2017,19 +2134,19 @@ "RollbackTriggers": { "base": null, "refs": { - "RollbackConfiguration$RollbackTriggers": "

The triggers to monitor during stack creation or update actions.

By default, CloudFormation saves the rollback triggers specified for a stack and applies them to any subsequent update operations for the stack, unless you specify otherwise. If you do specify rollback triggers for this parameter, those triggers replace any list of triggers previously specified for the stack. This means:

If a specified trigger is missing, the entire stack operation fails and is rolled back.

" + "RollbackConfiguration$RollbackTriggers": "

The triggers to monitor during stack creation or update actions.

By default, CloudFormation saves the rollback triggers specified for a stack and applies them to any subsequent update operations for the stack, unless you specify otherwise. If you do specify rollback triggers for this parameter, those triggers replace any list of triggers previously specified for the stack. This means:

If a specified trigger is missing, the entire stack operation fails and is rolled back.

" } }, "S3Bucket": { "base": null, "refs": { - "TestTypeInput$LogDeliveryBucket": "

The S3 bucket to which CloudFormation delivers the contract test execution logs.

CloudFormation delivers the logs by the time contract testing has completed and the extension has been assigned a test type status of PASSED or FAILED.

The user calling TestType must be able to access items in the specified S3 bucket. Specifically, the user needs the following permissions:

For more information, see Actions, Resources, and Condition Keys for Amazon S3 in the Amazon Web Services Identity and Access Management User Guide.

" + "TestTypeInput$LogDeliveryBucket": "

The S3 bucket to which CloudFormation delivers the contract test execution logs.

CloudFormation delivers the logs by the time contract testing has completed and the extension has been assigned a test type status of PASSED or FAILED.

The user calling TestType must be able to access items in the specified S3 bucket. Specifically, the user needs the following permissions:

For more information, see Actions, Resources, and Condition Keys for Amazon S3 in the Amazon Web Services Identity and Access Management User Guide.

" } }, "S3Url": { "base": null, "refs": { - "RegisterTypeInput$SchemaHandlerPackage": "

A url to the S3 bucket containing the extension project package that contains the neccessary files for the extension you want to register.

For information on generating a schema handler package for the extension you want to register, see submit in the CloudFormation CLI User Guide.

The user registering the extension must be able to access the package in the S3 bucket. That is, the user needs to have GetObject permissions for the schema handler package. For more information, see Actions, Resources, and Condition Keys for Amazon S3 in the Identity and Access Management User Guide.

" + "RegisterTypeInput$SchemaHandlerPackage": "

A URL to the S3 bucket containing the extension project package that contains the necessary files for the extension you want to register.

For information on generating a schema handler package for the extension you want to register, see submit in the CloudFormation CLI User Guide.

The user registering the extension must be able to access the package in the S3 bucket. That's, the user needs to have GetObject permissions for the schema handler package. For more information, see Actions, Resources, and Condition Keys for Amazon S3 in the Identity and Access Management User Guide.

" } }, "Scope": { @@ -2085,7 +2202,7 @@ "StackDriftDetectionStatus": { "base": null, "refs": { - "DescribeStackDriftDetectionStatusOutput$DetectionStatus": "

The status of the stack drift detection operation.

" + "DescribeStackDriftDetectionStatusOutput$DetectionStatus": "

The status of the stack drift detection operation.

" } }, "StackDriftDetectionStatusReason": { @@ -2109,12 +2226,12 @@ "StackDriftStatus": { "base": null, "refs": { - "DescribeStackDriftDetectionStatusOutput$StackDriftStatus": "

Status of the stack's actual configuration compared to its expected configuration.

", - "StackDriftInformation$StackDriftStatus": "

Status of the stack's actual configuration compared to its expected template configuration.

", - "StackDriftInformationSummary$StackDriftStatus": "

Status of the stack's actual configuration compared to its expected template configuration.

", - "StackInstance$DriftStatus": "

Status of the stack instance's actual configuration compared to the expected template and parameter configuration of the stack set to which it belongs.

", - "StackInstanceSummary$DriftStatus": "

Status of the stack instance's actual configuration compared to the expected template and parameter configuration of the stack set to which it belongs.

", - "StackSetSummary$DriftStatus": "

Status of the stack set's actual configuration compared to its expected template and parameter configuration. A stack set is considered to have drifted if one or more of its stack instances have drifted from their expected template and parameter configuration.

" + "DescribeStackDriftDetectionStatusOutput$StackDriftStatus": "

Status of the stack's actual configuration compared to its expected configuration.

", + "StackDriftInformation$StackDriftStatus": "

Status of the stack's actual configuration compared to its expected template configuration.

", + "StackDriftInformationSummary$StackDriftStatus": "

Status of the stack's actual configuration compared to its expected template configuration.

", + "StackInstance$DriftStatus": "

Status of the stack instance's actual configuration compared to the expected template and parameter configuration of the stack set to which it belongs.

", + "StackInstanceSummary$DriftStatus": "

Status of the stack instance's actual configuration compared to the expected template and parameter configuration of the stack set to which it belongs.

", + "StackSetSummary$DriftStatus": "

Status of the stack set's actual configuration compared to its expected template and parameter configuration. A stack set is considered to have drifted if one or more of its stack instances have drifted from their expected template and parameter configuration.

" } }, "StackEvent": { @@ -2136,7 +2253,8 @@ "CreateChangeSetOutput$StackId": "

The unique ID of the stack.

", "CreateStackOutput$StackId": "

Unique identifier of the stack.

", "CreateStackSetInput$StackId": "

The stack ID you are importing into a new stack set. Specify the Amazon Resource Number (ARN) of the stack.

", - "DescribeChangeSetOutput$StackId": "

The ARN of the stack that is associated with the change set.

", + "DescribeChangeSetHooksOutput$StackId": "

The stack identifier (stack ID).

", + "DescribeChangeSetOutput$StackId": "

The Amazon Resource Name (ARN) of the stack that's associated with the change set.

", "DescribeStackDriftDetectionStatusOutput$StackId": "

The ID of the stack.

", "Export$ExportingStackId": "

The stack that contains the exported output name and value.

", "RollbackStackOutput$StackId": "

Unique identifier of the stack.

", @@ -2170,7 +2288,7 @@ } }, "StackInstance": { - "base": "

An CloudFormation stack, in a specific account and Region, that's part of a stack set operation. A stack instance is a reference to an attempted or actual stack in a given account within a given Region. A stack instance can exist without a stack—for example, if the stack couldn't be created for some reason. A stack instance is associated with only one stack set. Each stack instance contains the ID of its associated stack set, as well as the ID of the actual stack and the stack status.

", + "base": "

An CloudFormation stack, in a specific account and Region, that's part of a stack set operation. A stack instance is a reference to an attempted or actual stack in a given account within a given Region. A stack instance can exist without a stack—for example, if the stack couldn't be created for some reason. A stack instance is associated with only one stack set. Each stack instance contains the ID of its associated stack set, in addition to the ID of the actual stack and the stack status.

", "refs": { "DescribeStackInstanceOutput$StackInstance": "

The stack instance that matches the specified request parameters.

" } @@ -2185,7 +2303,7 @@ "StackInstanceDetailedStatus": { "base": null, "refs": { - "StackInstanceComprehensiveStatus$DetailedStatus": "" + "StackInstanceComprehensiveStatus$DetailedStatus": "" } }, "StackInstanceFilter": { @@ -2220,8 +2338,8 @@ "StackInstanceStatus": { "base": null, "refs": { - "StackInstance$Status": "

The status of the stack instance, in terms of its synchronization with its associated stack set.

", - "StackInstanceSummary$Status": "

The status of the stack instance, in terms of its synchronization with its associated stack set.

" + "StackInstance$Status": "

The status of the stack instance, in terms of its synchronization with its associated stack set.

", + "StackInstanceSummary$Status": "

The status of the stack instance, in terms of its synchronization with its associated stack set.

" } }, "StackInstanceSummaries": { @@ -2239,19 +2357,20 @@ "StackName": { "base": null, "refs": { - "CancelUpdateStackInput$StackName": "

The name or the unique stack ID that is associated with the stack.

", + "CancelUpdateStackInput$StackName": "

The name or the unique stack ID that's associated with the stack.

", "ChangeSetSummary$StackName": "

The name of the stack with which the change set is associated.

", - "CreateStackInput$StackName": "

The name that is associated with the stack. The name must be unique in the Region in which you are creating the stack.

A stack name can contain only alphanumeric characters (case sensitive) and hyphens. It must start with an alphabetical character and cannot be longer than 128 characters.

", - "DeleteStackInput$StackName": "

The name or the unique stack ID that is associated with the stack.

", - "DescribeChangeSetOutput$StackName": "

The name of the stack that is associated with the change set.

", - "DescribeStackEventsInput$StackName": "

The name or the unique stack ID that is associated with the stack, which are not always interchangeable:

Default: There is no default value.

", - "DescribeStackResourceInput$StackName": "

The name or the unique stack ID that is associated with the stack, which are not always interchangeable:

Default: There is no default value.

", - "DescribeStackResourcesInput$StackName": "

The name or the unique stack ID that is associated with the stack, which are not always interchangeable:

Default: There is no default value.

Required: Conditional. If you do not specify StackName, you must specify PhysicalResourceId.

", - "DescribeStacksInput$StackName": "

The name or the unique stack ID that is associated with the stack, which are not always interchangeable:

Default: There is no default value.

", - "GetStackPolicyInput$StackName": "

The name or unique stack ID that is associated with the stack whose policy you want to get.

", - "GetTemplateInput$StackName": "

The name or the unique stack ID that is associated with the stack, which are not always interchangeable:

Default: There is no default value.

", + "CreateStackInput$StackName": "

The name that's associated with the stack. The name must be unique in the Region in which you are creating the stack.

A stack name can contain only alphanumeric characters (case sensitive) and hyphens. It must start with an alphabetical character and can't be longer than 128 characters.

", + "DeleteStackInput$StackName": "

The name or the unique stack ID that's associated with the stack.

", + "DescribeChangeSetHooksOutput$StackName": "

The stack name.

", + "DescribeChangeSetOutput$StackName": "

The name of the stack that's associated with the change set.

", + "DescribeStackEventsInput$StackName": "

The name or the unique stack ID that's associated with the stack, which aren't always interchangeable:

Default: There is no default value.

", + "DescribeStackResourceInput$StackName": "

The name or the unique stack ID that's associated with the stack, which aren't always interchangeable:

Default: There is no default value.

", + "DescribeStackResourcesInput$StackName": "

The name or the unique stack ID that is associated with the stack, which aren't always interchangeable:

Default: There is no default value.

Required: Conditional. If you don't specify StackName, you must specify PhysicalResourceId.

", + "DescribeStacksInput$StackName": "

The name or the unique stack ID that's associated with the stack, which aren't always interchangeable:

Default: There is no default value.

", + "GetStackPolicyInput$StackName": "

The name or unique stack ID that's associated with the stack whose policy you want to get.

", + "GetTemplateInput$StackName": "

The name or the unique stack ID that's associated with the stack, which aren't always interchangeable:

Default: There is no default value.

", "Imports$member": null, - "ListStackResourcesInput$StackName": "

The name or the unique stack ID that is associated with the stack, which are not always interchangeable:

Default: There is no default value.

", + "ListStackResourcesInput$StackName": "

The name or the unique stack ID that is associated with the stack, which aren't always interchangeable:

Default: There is no default value.

", "SetStackPolicyInput$StackName": "

The name or unique stack ID that you want to associate a policy with.

", "Stack$StackName": "

The name associated with the stack.

", "StackEvent$StackName": "

The name associated with a stack.

", @@ -2266,21 +2385,22 @@ "refs": { "ContinueUpdateRollbackInput$StackName": "

The name or the unique ID of the stack that you want to continue rolling back.

Don't specify the name of a nested stack (a stack that was created by using the AWS::CloudFormation::Stack resource). Instead, use this operation on the parent stack (the stack that contains the AWS::CloudFormation::Stack resource).

", "CreateChangeSetInput$StackName": "

The name or the unique ID of the stack for which you are creating a change set. CloudFormation generates the change set by comparing this stack's information with the information that you submit, such as a modified template or different parameter input values.

", - "DeleteChangeSetInput$StackName": "

If you specified the name of a change set to delete, specify the stack name or ID (ARN) that is associated with it.

", + "DeleteChangeSetInput$StackName": "

If you specified the name of a change set to delete, specify the stack name or Amazon Resource Name (ARN) that's associated with it.

", + "DescribeChangeSetHooksInput$StackName": "

If you specified the name of a change set, specify the stack name or stack ID (ARN) of the change set you want to describe.

", "DescribeChangeSetInput$StackName": "

If you specified the name of a change set, specify the stack name or ID (ARN) of the change set you want to describe.

", "DescribeStackResourceDriftsInput$StackName": "

The name of the stack for which you want drift information.

", "DetectStackDriftInput$StackName": "

The name of the stack for which you want to detect drift.

", "DetectStackResourceDriftInput$StackName": "

The name of the stack to which the resource belongs.

", - "ExecuteChangeSetInput$StackName": "

If you specified the name of a change set, specify the stack name or ID (ARN) that is associated with the change set you want to execute.

", - "GetTemplateSummaryInput$StackName": "

The name or the stack ID that is associated with the stack, which are not always interchangeable. For running stacks, you can specify either the stack's name or its unique stack ID. For deleted stack, you must specify the unique stack ID.

Conditional: You must specify only one of the following parameters: StackName, StackSetName, TemplateBody, or TemplateURL.

", + "ExecuteChangeSetInput$StackName": "

If you specified the name of a change set, specify the stack name or Amazon Resource Name (ARN) that's associated with the change set you want to execute.

", + "GetTemplateSummaryInput$StackName": "

The name or the stack ID that's associated with the stack, which aren't always interchangeable. For running stacks, you can specify either the stack's name or its unique stack ID. For deleted stack, you must specify the unique stack ID.

Conditional: You must specify only one of the following parameters: StackName, StackSetName, TemplateBody, or TemplateURL.

", "ListChangeSetsInput$StackName": "

The name or the Amazon Resource Name (ARN) of the stack for which you want to list change sets.

", - "RollbackStackInput$StackName": "

The name that is associated with the stack.

", + "RollbackStackInput$StackName": "

The name that's associated with the stack.

", "SignalResourceInput$StackName": "

The stack name or unique stack ID that includes the resource that you want to signal.

", "UpdateTerminationProtectionInput$StackName": "

The name or unique ID of the stack for which you want to set termination protection.

" } }, "StackNotFoundException": { - "base": "

The specified stack ARN doesn’t exist or stack doesn’t exist corresponding to the ARN in input.

", + "base": "

The specified stack ARN doesn't exist or stack doesn't exist corresponding to the ARN in input.

", "refs": { } }, @@ -2289,8 +2409,8 @@ "refs": { "CreateStackInput$StackPolicyBody": "

Structure containing the stack policy body. For more information, go to Prevent Updates to Stack Resources in the CloudFormation User Guide. You can specify either the StackPolicyBody or the StackPolicyURL parameter, but not both.

", "GetStackPolicyOutput$StackPolicyBody": "

Structure containing the stack policy body. (For more information, go to Prevent Updates to Stack Resources in the CloudFormation User Guide.)

", - "SetStackPolicyInput$StackPolicyBody": "

Structure containing the stack policy body. For more information, go to Prevent Updates to Stack Resources in the CloudFormation User Guide. You can specify either the StackPolicyBody or the StackPolicyURL parameter, but not both.

", - "UpdateStackInput$StackPolicyBody": "

Structure containing a new stack policy body. You can specify either the StackPolicyBody or the StackPolicyURL parameter, but not both.

You might update the stack policy, for example, in order to protect a new resource that you created during a stack update. If you do not specify a stack policy, the current policy that is associated with the stack is unchanged.

" + "SetStackPolicyInput$StackPolicyBody": "

Structure containing the stack policy body. For more information, go to Prevent updates to stack resources in the CloudFormation User Guide. You can specify either the StackPolicyBody or the StackPolicyURL parameter, but not both.

", + "UpdateStackInput$StackPolicyBody": "

Structure containing a new stack policy body. You can specify either the StackPolicyBody or the StackPolicyURL parameter, but not both.

You might update the stack policy, for example, in order to protect a new resource that you created during a stack update. If you don't specify a stack policy, the current policy that is associated with the stack is unchanged.

" } }, "StackPolicyDuringUpdateBody": { @@ -2309,8 +2429,8 @@ "base": null, "refs": { "CreateStackInput$StackPolicyURL": "

Location of a file containing the stack policy. The URL must point to a policy (maximum size: 16 KB) located in an S3 bucket in the same Region as the stack. You can specify either the StackPolicyBody or the StackPolicyURL parameter, but not both.

", - "SetStackPolicyInput$StackPolicyURL": "

Location of a file containing the stack policy. The URL must point to a policy (maximum size: 16 KB) located in an S3 bucket in the same Region as the stack. You can specify either the StackPolicyBody or the StackPolicyURL parameter, but not both.

", - "UpdateStackInput$StackPolicyURL": "

Location of a file containing the updated stack policy. The URL must point to a policy (max size: 16KB) located in an S3 bucket in the same Region as the stack. You can specify either the StackPolicyBody or the StackPolicyURL parameter, but not both.

You might update the stack policy, for example, in order to protect a new resource that you created during a stack update. If you do not specify a stack policy, the current policy that is associated with the stack is unchanged.

" + "SetStackPolicyInput$StackPolicyURL": "

Location of a file containing the stack policy. The URL must point to a policy (maximum size: 16 KB) located in an Amazon S3 bucket in the same Amazon Web Services Region as the stack. You can specify either the StackPolicyBody or the StackPolicyURL parameter, but not both.

", + "UpdateStackInput$StackPolicyURL": "

Location of a file containing the updated stack policy. The URL must point to a policy (max size: 16KB) located in an S3 bucket in the same Region as the stack. You can specify either the StackPolicyBody or the StackPolicyURL parameter, but not both.

You might update the stack policy, for example, in order to protect a new resource that you created during a stack update. If you don't specify a stack policy, the current policy that is associated with the stack is unchanged.

" } }, "StackResource": { @@ -2326,7 +2446,7 @@ } }, "StackResourceDrift": { - "base": "

Contains the drift information for a resource that has been checked for drift. This includes actual and expected property values for resources in which CloudFormation has detected drift. Only resource properties explicitly defined in the stack template are checked for drift. For more information, see Detecting Unregulated Configuration Changes to Stacks and Resources.

Resources that do not currently support drift detection cannot be checked. For a list of resources that support drift detection, see Resources that Support Drift Detection.

Use DetectStackResourceDrift to detect drift on individual resources, or DetectStackDrift to detect drift on all resources in a given stack that support drift detection.

", + "base": "

Contains the drift information for a resource that has been checked for drift. This includes actual and expected property values for resources in which CloudFormation has detected drift. Only resource properties explicitly defined in the stack template are checked for drift. For more information, see Detecting Unregulated Configuration Changes to Stacks and Resources.

Resources that don't currently support drift detection can't be checked. For a list of resources that support drift detection, see Resources that Support Drift Detection.

Use DetectStackResourceDrift to detect drift on individual resources, or DetectStackDrift to detect drift on all resources in a given stack that support drift detection.

", "refs": { "DetectStackResourceDriftOutput$StackResourceDrift": "

Information about whether the resource's actual configuration has drifted from its expected template configuration, including actual and expected property values and any differences detected.

", "StackResourceDrifts$member": null @@ -2348,22 +2468,22 @@ "StackResourceDriftStatus": { "base": null, "refs": { - "StackResourceDrift$StackResourceDriftStatus": "

Status of the resource's actual configuration compared to its expected configuration

", - "StackResourceDriftInformation$StackResourceDriftStatus": "

Status of the resource's actual configuration compared to its expected configuration

", - "StackResourceDriftInformationSummary$StackResourceDriftStatus": "

Status of the resource's actual configuration compared to its expected configuration

", + "StackResourceDrift$StackResourceDriftStatus": "

Status of the resource's actual configuration compared to its expected configuration.

", + "StackResourceDriftInformation$StackResourceDriftStatus": "

Status of the resource's actual configuration compared to its expected configuration

", + "StackResourceDriftInformationSummary$StackResourceDriftStatus": "

Status of the resource's actual configuration compared to its expected configuration.

", "StackResourceDriftStatusFilters$member": null } }, "StackResourceDriftStatusFilters": { "base": null, "refs": { - "DescribeStackResourceDriftsInput$StackResourceDriftStatusFilters": "

The resource drift status values to use as filters for the resource drift results returned.

" + "DescribeStackResourceDriftsInput$StackResourceDriftStatusFilters": "

The resource drift status values to use as filters for the resource drift results returned.

" } }, "StackResourceDrifts": { "base": null, "refs": { - "DescribeStackResourceDriftsOutput$StackResourceDrifts": "

Drift information for the resources that have been checked for drift in the specified stack. This includes actual and expected configuration values for resources where CloudFormation detects drift.

For a given stack, there will be one StackResourceDrift for each stack resource that has been checked for drift. Resources that have not yet been checked for drift are not included. Resources that do not currently support drift detection are not checked, and so not included. For a list of resources that support drift detection, see Resources that Support Drift Detection.

" + "DescribeStackResourceDriftsOutput$StackResourceDrifts": "

Drift information for the resources that have been checked for drift in the specified stack. This includes actual and expected configuration values for resources where CloudFormation detects drift.

For a given stack, there will be one StackResourceDrift for each stack resource that has been checked for drift. Resources that haven't yet been checked for drift aren't included. Resources that do not currently support drift detection aren't checked, and so not included. For a list of resources that support drift detection, see Resources that Support Drift Detection.

" } }, "StackResourceSummaries": { @@ -2385,7 +2505,7 @@ } }, "StackSet": { - "base": "

A structure that contains information about a stack set. A stack set enables you to provision stacks into Amazon Web Services accounts and across Regions by using a single CloudFormation template. In the stack set, you specify the template to use, as well as any parameters and capabilities that the template requires.

", + "base": "

A structure that contains information about a stack set. A stack set enables you to provision stacks into Amazon Web Services accounts and across Regions by using a single CloudFormation template. In the stack set, you specify the template to use, in addition to any parameters and capabilities that the template requires.

", "refs": { "DescribeStackSetOutput$StackSet": "

The specified stack set.

" } @@ -2397,22 +2517,22 @@ } }, "StackSetDriftDetectionDetails": { - "base": "

Detailed information about the drift status of the stack set.

For stack sets, contains information about the last completed drift operation performed on the stack set. Information about drift operations in-progress is not included.

For stack set operations, includes information about drift operations currently being performed on the stack set.

For more information, see Detecting Unmanaged Changes in Stack Sets in the CloudFormation User Guide.

", + "base": "

Detailed information about the drift status of the stack set.

For stack sets, contains information about the last completed drift operation performed on the stack set. Information about drift operations in-progress isn't included.

For stack set operations, includes information about drift operations currently being performed on the stack set.

For more information, see Detecting unmanaged changes in stack sets in the CloudFormation User Guide.

", "refs": { - "StackSet$StackSetDriftDetectionDetails": "

Detailed information about the drift status of the stack set.

For stack sets, contains information about the last completed drift operation performed on the stack set. Information about drift operations currently in progress is not included.

", - "StackSetOperation$StackSetDriftDetectionDetails": "

Detailed information about the drift status of the stack set. This includes information about drift operations currently being performed on the stack set.

this information will only be present for stack set operations whose Action type is DETECT_DRIFT.

For more information, see Detecting Unmanaged Changes in Stack Sets in the CloudFormation User Guide.

" + "StackSet$StackSetDriftDetectionDetails": "

Detailed information about the drift status of the stack set.

For stack sets, contains information about the last completed drift operation performed on the stack set. Information about drift operations currently in progress isn't included.

", + "StackSetOperation$StackSetDriftDetectionDetails": "

Detailed information about the drift status of the stack set. This includes information about drift operations currently being performed on the stack set.

This information will only be present for stack set operations whose Action type is DETECT_DRIFT.

For more information, see Detecting Unmanaged Changes in Stack Sets in the CloudFormation User Guide.

" } }, "StackSetDriftDetectionStatus": { "base": null, "refs": { - "StackSetDriftDetectionDetails$DriftDetectionStatus": "

The status of the stack set drift detection operation.

" + "StackSetDriftDetectionDetails$DriftDetectionStatus": "

The status of the stack set drift detection operation.

" } }, "StackSetDriftStatus": { "base": null, "refs": { - "StackSetDriftDetectionDetails$DriftStatus": "

Status of the stack set's actual configuration compared to its expected template and parameter configuration. A stack set is considered to have drifted if one or more of its stack instances have drifted from their expected template and parameter configuration.

" + "StackSetDriftDetectionDetails$DriftStatus": "

Status of the stack set's actual configuration compared to its expected template and parameter configuration. A stack set is considered to have drifted if one or more of its stack instances have drifted from their expected template and parameter configuration.

" } }, "StackSetId": { @@ -2465,7 +2585,7 @@ } }, "StackSetOperation": { - "base": "

The structure that contains information about a stack set operation.

", + "base": "

The structure that contains information about a stack set operation.

", "refs": { "DescribeStackSetOperationOutput$StackSetOperation": "

The specified stack set operation.

" } @@ -2473,12 +2593,12 @@ "StackSetOperationAction": { "base": null, "refs": { - "StackSetOperation$Action": "

The type of stack set operation: CREATE, UPDATE, or DELETE. Create and delete operations affect only the specified stack set instances that are associated with the specified stack set. Update operations affect both the stack set itself, as well as all associated stack set instances.

", - "StackSetOperationSummary$Action": "

The type of operation: CREATE, UPDATE, or DELETE. Create and delete operations affect only the specified stack instances that are associated with the specified stack set. Update operations affect both the stack set itself as well as all associated stack set instances.

" + "StackSetOperation$Action": "

The type of stack set operation: CREATE, UPDATE, or DELETE. Create and delete operations affect only the specified stack set instances that are associated with the specified stack set. Update operations affect both the stack set itself, in addition to all associated stack set instances.

", + "StackSetOperationSummary$Action": "

The type of operation: CREATE, UPDATE, or DELETE. Create and delete operations affect only the specified stack instances that are associated with the specified stack set. Update operations affect both the stack set itself and all associated stack set instances.

" } }, "StackSetOperationPreferences": { - "base": "

The user-specified preferences for how CloudFormation performs a stack set operation.

For more information on maximum concurrent accounts and failure tolerance, see Stack set operation options.

", + "base": "

The user-specified preferences for how CloudFormation performs a stack set operation.

For more information on maximum concurrent accounts and failure tolerance, see Stack set operation options.

", "refs": { "CreateStackInstancesInput$OperationPreferences": "

Preferences for how CloudFormation performs this stack set operation.

", "DeleteStackInstancesInput$OperationPreferences": "

Preferences for how CloudFormation performs this stack set operation.

", @@ -2492,13 +2612,13 @@ "StackSetOperationResultStatus": { "base": null, "refs": { - "StackSetOperationResultSummary$Status": "

The result status of the stack set operation for the given account in the given Region.

" + "StackSetOperationResultSummary$Status": "

The result status of the stack set operation for the given account in the given Region.

" } }, "StackSetOperationResultSummaries": { "base": null, "refs": { - "ListStackSetOperationResultsOutput$Summaries": "

A list of StackSetOperationResultSummary structures that contain information about the specified operation results, for accounts and Regions that are included in the operation.

" + "ListStackSetOperationResultsOutput$Summaries": "

A list of StackSetOperationResultSummary structures that contain information about the specified operation results, for accounts and Amazon Web Services Regions that are included in the operation.

" } }, "StackSetOperationResultSummary": { @@ -2510,8 +2630,8 @@ "StackSetOperationStatus": { "base": null, "refs": { - "StackSetOperation$Status": "

The status of the operation.

", - "StackSetOperationSummary$Status": "

The overall status of the operation.

" + "StackSetOperation$Status": "

The status of the operation.

", + "StackSetOperationSummary$Status": "

The overall status of the operation.

" } }, "StackSetOperationSummaries": { @@ -2592,7 +2712,7 @@ } }, "StaleRequestException": { - "base": "

Another operation has been performed on this stack set since the specified operation was performed.

", + "base": "

Another operation has been performed on this stack set since the specified operation was performed.

", "refs": { } }, @@ -2652,18 +2772,18 @@ "Stack$Tags": "

A list of Tags that specify information about the stack.

", "StackSet$Tags": "

A list of tags that specify information about the stack set. A maximum number of 50 tags can be specified.

", "UpdateStackInput$Tags": "

Key-value pairs to associate with this stack. CloudFormation also propagates these tags to supported resources in the stack. You can specify a maximum number of 50 tags.

If you don't specify this parameter, CloudFormation doesn't modify the stack's tags. If you specify an empty value, CloudFormation removes all associated tags.

", - "UpdateStackSetInput$Tags": "

The key-value pairs to associate with this stack set and the stacks created from it. CloudFormation also propagates these tags to supported resources that are created in the stacks. You can specify a maximum number of 50 tags.

If you specify tags for this parameter, those tags replace any list of tags that are currently associated with this stack set. This means:

If you specify new tags as part of an UpdateStackSet action, CloudFormation checks to see if you have the required IAM permission to tag resources. If you omit tags that are currently associated with the stack set from the list of tags you specify, CloudFormation assumes that you want to remove those tags from the stack set, and checks to see if you have permission to untag resources. If you don't have the necessary permission(s), the entire UpdateStackSet action fails with an access denied error, and the stack set is not updated.

" + "UpdateStackSetInput$Tags": "

The key-value pairs to associate with this stack set and the stacks created from it. CloudFormation also propagates these tags to supported resources that are created in the stacks. You can specify a maximum number of 50 tags.

If you specify tags for this parameter, those tags replace any list of tags that are currently associated with this stack set. This means:

If you specify new tags as part of an UpdateStackSet action, CloudFormation checks to see if you have the required IAM permission to tag resources. If you omit tags that are currently associated with the stack set from the list of tags you specify, CloudFormation assumes that you want to remove those tags from the stack set, and checks to see if you have permission to untag resources. If you don't have the necessary permission(s), the entire UpdateStackSet action fails with an access denied error, and the stack set is not updated.

" } }, "TemplateBody": { "base": null, "refs": { "CreateChangeSetInput$TemplateBody": "

A structure that contains the body of the revised template, with a minimum length of 1 byte and a maximum length of 51,200 bytes. CloudFormation generates the change set by comparing this template with the template of the stack that you specified.

Conditional: You must specify only TemplateBody or TemplateURL.

", - "CreateStackInput$TemplateBody": "

Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes. For more information, go to Template Anatomy in the CloudFormation User Guide.

Conditional: You must specify either the TemplateBody or the TemplateURL parameter, but not both.

", + "CreateStackInput$TemplateBody": "

Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes. For more information, go to Template anatomy in the CloudFormation User Guide.

Conditional: You must specify either the TemplateBody or the TemplateURL parameter, but not both.

", "CreateStackSetInput$TemplateBody": "

The structure that contains the template body, with a minimum length of 1 byte and a maximum length of 51,200 bytes. For more information, see Template Anatomy in the CloudFormation User Guide.

Conditional: You must specify either the TemplateBody or the TemplateURL parameter, but not both.

", "EstimateTemplateCostInput$TemplateBody": "

Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes. (For more information, go to Template Anatomy in the CloudFormation User Guide.)

Conditional: You must pass TemplateBody or TemplateURL. If both are passed, only TemplateBody is used.

", "GetTemplateOutput$TemplateBody": "

Structure containing the template body. (For more information, go to Template Anatomy in the CloudFormation User Guide.)

CloudFormation returns the same template that was used when the stack was created.

", - "GetTemplateSummaryInput$TemplateBody": "

Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes. For more information about templates, see Template Anatomy in the CloudFormation User Guide.

Conditional: You must specify only one of the following parameters: StackName, StackSetName, TemplateBody, or TemplateURL.

", + "GetTemplateSummaryInput$TemplateBody": "

Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes. For more information about templates, see Template anatomy in the CloudFormation User Guide.

Conditional: You must specify only one of the following parameters: StackName, StackSetName, TemplateBody, or TemplateURL.

", "StackSet$TemplateBody": "

The structure that contains the body of the template that was used to create or update the stack set.

", "UpdateStackInput$TemplateBody": "

Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes. (For more information, go to Template Anatomy in the CloudFormation User Guide.)

Conditional: You must specify only one of the following parameters: TemplateBody, TemplateURL, or set the UsePreviousTemplate to true.

", "UpdateStackSetInput$TemplateBody": "

The structure that contains the template body, with a minimum length of 1 byte and a maximum length of 51,200 bytes. For more information, see Template Anatomy in the CloudFormation User Guide.

Conditional: You must specify only one of the following parameters: TemplateBody or TemplateURL—or set UsePreviousTemplate to true.

", @@ -2698,13 +2818,13 @@ "TemplateURL": { "base": null, "refs": { - "CreateChangeSetInput$TemplateURL": "

The location of the file that contains the revised template. The URL must point to a template (max size: 460,800 bytes) that is located in an S3 bucket or a Systems Manager document. CloudFormation generates the change set by comparing this template with the stack that you specified.

Conditional: You must specify only TemplateBody or TemplateURL.

", - "CreateStackInput$TemplateURL": "

Location of file containing the template body. The URL must point to a template (max size: 460,800 bytes) that is located in an Amazon S3 bucket or a Systems Manager document. For more information, go to the Template Anatomy in the CloudFormation User Guide.

Conditional: You must specify either the TemplateBody or the TemplateURL parameter, but not both.

", + "CreateChangeSetInput$TemplateURL": "

The location of the file that contains the revised template. The URL must point to a template (max size: 460,800 bytes) that's located in an Amazon S3 bucket or a Systems Manager document. CloudFormation generates the change set by comparing this template with the stack that you specified.

Conditional: You must specify only TemplateBody or TemplateURL.

", + "CreateStackInput$TemplateURL": "

Location of file containing the template body. The URL must point to a template (max size: 460,800 bytes) that's located in an Amazon S3 bucket or a Systems Manager document. For more information, go to the Template anatomy in the CloudFormation User Guide.

Conditional: You must specify either the TemplateBody or the TemplateURL parameter, but not both.

", "CreateStackSetInput$TemplateURL": "

The location of the file that contains the template body. The URL must point to a template (maximum size: 460,800 bytes) that's located in an Amazon S3 bucket or a Systems Manager document. For more information, see Template Anatomy in the CloudFormation User Guide.

Conditional: You must specify either the TemplateBody or the TemplateURL parameter, but not both.

", - "EstimateTemplateCostInput$TemplateURL": "

Location of file containing the template body. The URL must point to a template that is located in an Amazon S3 bucket or a Systems Manager document. For more information, go to Template Anatomy in the CloudFormation User Guide.

Conditional: You must pass TemplateURL or TemplateBody. If both are passed, only TemplateBody is used.

", - "GetTemplateSummaryInput$TemplateURL": "

Location of file containing the template body. The URL must point to a template (max size: 460,800 bytes) that is located in an Amazon S3 bucket or a Systems Manager document. For more information about templates, see Template Anatomy in the CloudFormation User Guide.

Conditional: You must specify only one of the following parameters: StackName, StackSetName, TemplateBody, or TemplateURL.

", - "UpdateStackInput$TemplateURL": "

Location of file containing the template body. The URL must point to a template that is located in an Amazon S3 bucket or a Systems Manager document. For more information, go to Template Anatomy in the CloudFormation User Guide.

Conditional: You must specify only one of the following parameters: TemplateBody, TemplateURL, or set the UsePreviousTemplate to true.

", - "UpdateStackSetInput$TemplateURL": "

The location of the file that contains the template body. The URL must point to a template (maximum size: 460,800 bytes) that is located in an Amazon S3 bucket or a Systems Manager document. For more information, see Template Anatomy in the CloudFormation User Guide.

Conditional: You must specify only one of the following parameters: TemplateBody or TemplateURL—or set UsePreviousTemplate to true.

", + "EstimateTemplateCostInput$TemplateURL": "

Location of file containing the template body. The URL must point to a template that's located in an Amazon S3 bucket or a Systems Manager document. For more information, go to Template Anatomy in the CloudFormation User Guide.

Conditional: You must pass TemplateURL or TemplateBody. If both are passed, only TemplateBody is used.

", + "GetTemplateSummaryInput$TemplateURL": "

Location of file containing the template body. The URL must point to a template (max size: 460,800 bytes) that's located in an Amazon S3 bucket or a Systems Manager document. For more information about templates, see Template anatomy in the CloudFormation User Guide.

Conditional: You must specify only one of the following parameters: StackName, StackSetName, TemplateBody, or TemplateURL.

", + "UpdateStackInput$TemplateURL": "

Location of file containing the template body. The URL must point to a template that's located in an Amazon S3 bucket or a Systems Manager document. For more information, go to Template Anatomy in the CloudFormation User Guide.

Conditional: You must specify only one of the following parameters: TemplateBody, TemplateURL, or set the UsePreviousTemplate to true.

", + "UpdateStackSetInput$TemplateURL": "

The location of the file that contains the template body. The URL must point to a template (maximum size: 460,800 bytes) that is located in an Amazon S3 bucket or a Systems Manager document. For more information, see Template Anatomy in the CloudFormation User Guide.

Conditional: You must specify only one of the following parameters: TemplateBody or TemplateURL—or set UsePreviousTemplate to true.

", "ValidateTemplateInput$TemplateURL": "

Location of file containing the template body. The URL must point to a template (max size: 460,800 bytes) that is located in an Amazon S3 bucket or a Systems Manager document. For more information, go to Template Anatomy in the CloudFormation User Guide.

Conditional: You must pass TemplateURL or TemplateBody. If both are passed, only TemplateBody is used.

" } }, @@ -2747,25 +2867,25 @@ "refs": { "DescribeStackDriftDetectionStatusOutput$Timestamp": "

Time at which the stack drift detection operation was initiated.

", "DescribeTypeOutput$LastUpdated": "

When the specified extension version was registered. This applies only to:

", - "DescribeTypeOutput$TimeCreated": "

When the specified private extension version was registered or activated in your account.

", + "DescribeTypeOutput$TimeCreated": "

When the specified private extension version was registered or activated in your account.

", "StackDriftInformation$LastCheckTimestamp": "

Most recent time when a drift detection operation was initiated on the stack, or any of its individual resources that support drift detection.

", "StackDriftInformationSummary$LastCheckTimestamp": "

Most recent time when a drift detection operation was initiated on the stack, or any of its individual resources that support drift detection.

", "StackEvent$Timestamp": "

Time the status was updated.

", - "StackInstance$LastDriftCheckTimestamp": "

Most recent time when CloudFormation performed a drift detection operation on the stack instance. This value will be NULL for any stack instance on which drift detection has not yet been performed.

", - "StackInstanceSummary$LastDriftCheckTimestamp": "

Most recent time when CloudFormation performed a drift detection operation on the stack instance. This value will be NULL for any stack instance on which drift detection has not yet been performed.

", + "StackInstance$LastDriftCheckTimestamp": "

Most recent time when CloudFormation performed a drift detection operation on the stack instance. This value will be NULL for any stack instance on which drift detection hasn't yet been performed.

", + "StackInstanceSummary$LastDriftCheckTimestamp": "

Most recent time when CloudFormation performed a drift detection operation on the stack instance. This value will be NULL for any stack instance on which drift detection hasn't yet been performed.

", "StackResource$Timestamp": "

Time the status was updated.

", "StackResourceDetail$LastUpdatedTimestamp": "

Time the status was updated.

", "StackResourceDrift$Timestamp": "

Time at which CloudFormation performed drift detection on the stack resource.

", "StackResourceDriftInformation$LastCheckTimestamp": "

When CloudFormation last checked if the resource had drifted from its expected configuration.

", "StackResourceDriftInformationSummary$LastCheckTimestamp": "

When CloudFormation last checked if the resource had drifted from its expected configuration.

", "StackResourceSummary$LastUpdatedTimestamp": "

Time the status was updated.

", - "StackSetDriftDetectionDetails$LastDriftCheckTimestamp": "

Most recent time when CloudFormation performed a drift detection operation on the stack set. This value will be NULL for any stack set on which drift detection has not yet been performed.

", + "StackSetDriftDetectionDetails$LastDriftCheckTimestamp": "

Most recent time when CloudFormation performed a drift detection operation on the stack set. This value will be NULL for any stack set on which drift detection hasn't yet been performed.

", "StackSetOperation$CreationTimestamp": "

The time at which the operation was initiated. Note that the creation times for the stack set operation might differ from the creation time of the individual stacks themselves. This is because CloudFormation needs to perform preparatory work for the operation, such as dispatching the work to the requested Regions, before actually creating the first stacks.

", "StackSetOperation$EndTimestamp": "

The time at which the stack set operation ended, across all accounts and Regions specified. Note that this doesn't necessarily mean that the stack set operation was successful, or even attempted, in each account or Region.

", "StackSetOperationSummary$CreationTimestamp": "

The time at which the operation was initiated. Note that the creation times for the stack set operation might differ from the creation time of the individual stacks themselves. This is because CloudFormation needs to perform preparatory work for the operation, such as dispatching the work to the requested Regions, before actually creating the first stacks.

", "StackSetOperationSummary$EndTimestamp": "

The time at which the stack set operation ended, across all accounts and Regions specified. Note that this doesn't necessarily mean that the stack set operation was successful, or even attempted, in each account or Region.

", - "StackSetSummary$LastDriftCheckTimestamp": "

Most recent time when CloudFormation performed a drift detection operation on the stack set. This value will be NULL for any stack set on which drift detection has not yet been performed.

", - "TypeConfigurationDetails$LastUpdated": "

When the configuration data was last updated for this extension.

If a configuration has not been set for a specified extension, CloudFormation returns null.

", + "StackSetSummary$LastDriftCheckTimestamp": "

Most recent time when CloudFormation performed a drift detection operation on the stack set. This value will be NULL for any stack set on which drift detection hasn't yet been performed.

", + "TypeConfigurationDetails$LastUpdated": "

When the configuration data was last updated for this extension.

If a configuration hasn't been set for a specified extension, CloudFormation returns null.

", "TypeSummary$LastUpdated": "

When the specified extension version was registered. This applies only to:

For all other extension types, CloudFormation returns null.

", "TypeVersionSummary$TimeCreated": "

When the version was registered.

" } @@ -2778,7 +2898,7 @@ "TotalStackInstancesCount": { "base": null, "refs": { - "StackSetDriftDetectionDetails$TotalStackInstancesCount": "

The total number of stack instances belonging to this stack set.

The total number of stack instances is equal to the total of:

" + "StackSetDriftDetectionDetails$TotalStackInstancesCount": "

The total number of stack instances belonging to this stack set.

The total number of stack instances is equal to the total of:

" } }, "TransformName": { @@ -2811,11 +2931,11 @@ "ListTypeRegistrationsInput$TypeArn": "

The Amazon Resource Name (ARN) of the extension.

Conditional: You must specify either TypeName and Type, or Arn.

", "ListTypeVersionsInput$Arn": "

The Amazon Resource Name (ARN) of the extension for which you want version summary information.

Conditional: You must specify either TypeName and Type, or Arn.

", "PublishTypeOutput$PublicTypeArn": "

The Amazon Resource Number (ARN) assigned to the public extension upon publication.

", - "SetTypeConfigurationInput$TypeArn": "

The Amazon Resource Name (ARN) for the extension, in this account and region.

For public extensions, this will be the ARN assigned when you activate the type in this account and region. For private extensions, this will be the ARN assigned when you register the type in this account and region.

Do not include the extension versions suffix at the end of the ARN. You can set the configuration for an extension, but not for a specific extension version.

", - "TestTypeInput$Arn": "

The Amazon Resource Number (ARN) of the extension.

Conditional: You must specify Arn, or TypeName and Type.

", - "TestTypeOutput$TypeVersionArn": "

The Amazon Resource Number (ARN) of the extension.

", - "TypeConfigurationDetails$TypeArn": "

The Amazon Resource Name (ARN) for the extension, in this account and region.

For public extensions, this will be the ARN assigned when you activate the type in this account and region. For private extensions, this will be the ARN assigned when you register the type in this account and region.

", - "TypeConfigurationIdentifier$TypeArn": "

The Amazon Resource Name (ARN) for the extension, in this account and region.

For public extensions, this will be the ARN assigned when you activate the type in this account and region. For private extensions, this will be the ARN assigned when you register the type in this account and region.

", + "SetTypeConfigurationInput$TypeArn": "

The Amazon Resource Name (ARN) for the extension, in this account and region.

For public extensions, this will be the ARN assigned when you activate the type in this account and region. For private extensions, this will be the ARN assigned when you register the type in this account and region.

Do not include the extension versions suffix at the end of the ARN. You can set the configuration for an extension, but not for a specific extension version.

", + "TestTypeInput$Arn": "

The Amazon Resource Name (ARN) of the extension.

Conditional: You must specify Arn, or TypeName and Type.

", + "TestTypeOutput$TypeVersionArn": "

The Amazon Resource Name (ARN) of the extension.

", + "TypeConfigurationDetails$TypeArn": "

The Amazon Resource Name (ARN) for the extension, in this account and region.

For public extensions, this will be the ARN assigned when you activate the type in this account and region. For private extensions, this will be the ARN assigned when you register the type in this account and region.

", + "TypeConfigurationIdentifier$TypeArn": "

The Amazon Resource Name (ARN) for the extension, in this account and region.

For public extensions, this will be the ARN assigned when you activate the type in this account and region. For private extensions, this will be the ARN assigned when you register the type in this account and region.

", "TypeSummary$TypeArn": "

The Amazon Resource Name (ARN) of the extension.

", "TypeVersionSummary$Arn": "

The Amazon Resource Name (ARN) of the extension version.

" } @@ -2823,8 +2943,8 @@ "TypeConfiguration": { "base": null, "refs": { - "SetTypeConfigurationInput$Configuration": "

The configuration data for the extension, in this account and region.

The configuration data must be formatted as JSON, and validate against the schema returned in the ConfigurationSchema response element of API_DescribeType. For more information, see Defining account-level configuration data for an extension in the CloudFormation CLI User Guide.

", - "TypeConfigurationDetails$Configuration": "

A JSON string specifying the configuration data for the extension, in this account and region.

If a configuration has not been set for a specified extension, CloudFormation returns {}.

" + "SetTypeConfigurationInput$Configuration": "

The configuration data for the extension, in this account and region.

The configuration data must be formatted as JSON, and validate against the schema returned in the ConfigurationSchema response element of API_DescribeType. For more information, see Defining account-level configuration data for an extension in the CloudFormation CLI User Guide.

", + "TypeConfigurationDetails$Configuration": "

A JSON string specifying the configuration data for the extension, in this account and region.

If a configuration hasn't been set for a specified extension, CloudFormation returns {}.

" } }, "TypeConfigurationAlias": { @@ -2870,7 +2990,7 @@ } }, "TypeConfigurationNotFoundException": { - "base": "

The specified extension configuration cannot be found.

", + "base": "

The specified extension configuration can't be found.

", "refs": { } }, @@ -2883,7 +3003,7 @@ "TypeHierarchy": { "base": null, "refs": { - "ModuleInfo$TypeHierarchy": "

A concantenated list of the the module type or types containing the resource. Module types are listed starting with the inner-most nested module, and separated by /.

In the following example, the resource was created from a module of type AWS::First::Example::MODULE, that is nested inside a parent module of type AWS::Second::Example::MODULE.

AWS::First::Example::MODULE/AWS::Second::Example::MODULE

" + "ModuleInfo$TypeHierarchy": "

A concatenated list of the module type or types containing the resource. Module types are listed starting with the inner-most nested module, and separated by /.

In the following example, the resource was created from a module of type AWS::First::Example::MODULE, that's nested inside a parent module of type AWS::Second::Example::MODULE.

AWS::First::Example::MODULE/AWS::Second::Example::MODULE

" } }, "TypeName": { @@ -2899,7 +3019,7 @@ "ListTypeRegistrationsInput$TypeName": "

The name of the extension.

Conditional: You must specify either TypeName and Type, or Arn.

", "ListTypeVersionsInput$TypeName": "

The name of the extension for which you want version summary information.

Conditional: You must specify either TypeName and Type, or Arn.

", "PublishTypeInput$TypeName": "

The name of the extension.

Conditional: You must specify Arn, or TypeName and Type.

", - "RegisterTypeInput$TypeName": "

The name of the extension being registered.

We recommend that extension names adhere to the following patterns:

The following organization namespaces are reserved and cannot be used in your extension names:

", + "RegisterTypeInput$TypeName": "

The name of the extension being registered.

We recommend that extension names adhere to the following patterns:

The following organization namespaces are reserved and can't be used in your extension names:

", "RequiredActivatedType$TypeNameAlias": "

An alias assigned to the public extension, in this account and region. If you specify an alias for the extension, CloudFormation treats the alias as the extension type name within this account and region. You must use the alias to refer to the extension in your templates, API calls, and CloudFormation console.

", "RequiredActivatedType$OriginalTypeName": "

The type name of the public extension.

If you specified a TypeNameAlias when enabling the extension in this account and region, CloudFormation treats that alias as the extension's type name within the account and region, not the type name of the public extension. For more information, see Specifying aliases to refer to extensions in the CloudFormation User Guide.

", "SetTypeConfigurationInput$TypeName": "

The name of the extension.

Conditional: You must specify ConfigurationArn, or Type and TypeName.

", @@ -2919,7 +3039,7 @@ } }, "TypeNotFoundException": { - "base": "

The specified extension does not exist in the CloudFormation registry.

", + "base": "

The specified extension doesn't exist in the CloudFormation registry.

", "refs": { } }, @@ -2944,13 +3064,13 @@ "TypeTestsStatus": { "base": null, "refs": { - "DescribeTypeOutput$TypeTestsStatus": "

The contract test status of the registered extension version. To return the extension test status of a specifc extension version, you must specify VersionId.

This applies only to registered private extension versions. CloudFormation does not return this information for public extensions, whether or not they are activated in your account.

" + "DescribeTypeOutput$TypeTestsStatus": "

The contract test status of the registered extension version. To return the extension test status of a specific extension version, you must specify VersionId.

This applies only to registered private extension versions. CloudFormation doesn't return this information for public extensions, whether or not they are activated in your account.

" } }, "TypeTestsStatusDescription": { "base": null, "refs": { - "DescribeTypeOutput$TypeTestsStatusDescription": "

The description of the test status. To return the extension test status of a specifc extension version, you must specify VersionId.

This applies only to registered private extension versions. CloudFormation does not return this information for public extensions, whether or not they are activated in your account.

" + "DescribeTypeOutput$TypeTestsStatusDescription": "

The description of the test status. To return the extension test status of a specific extension version, you must specify VersionId.

This applies only to registered private extension versions. CloudFormation doesn't return this information for public extensions, whether or not they are activated in your account.

" } }, "TypeVersionId": { @@ -2958,11 +3078,11 @@ "refs": { "DeregisterTypeInput$VersionId": "

The ID of a specific version of the extension. The version ID is the value at the end of the Amazon Resource Name (ARN) assigned to the extension version when it is registered.

", "DescribeTypeInput$VersionId": "

The ID of a specific version of the extension. The version ID is the value at the end of the Amazon Resource Name (ARN) assigned to the extension version when it is registered.

If you specify a VersionId, DescribeType returns information about that specific extension version. Otherwise, it returns information about the default extension version.

", - "DescribeTypeOutput$DefaultVersionId": "

The ID of the default version of the extension. The default version is used when the extension version is not specified.

This applies only to private extensions you have registered in your account. For public extensions, both those provided by Amazon and published by third parties, CloudFormation returns null. For more information, see RegisterType.

To set the default version of an extension, use SetTypeDefaultVersion .

", + "DescribeTypeOutput$DefaultVersionId": "

The ID of the default version of the extension. The default version is used when the extension version isn't specified.

This applies only to private extensions you have registered in your account. For public extensions, both those provided by Amazon and published by third parties, CloudFormation returns null. For more information, see RegisterType.

To set the default version of an extension, use SetTypeDefaultVersion .

", "SetTypeDefaultVersionInput$VersionId": "

The ID of a specific version of the extension. The version ID is the value at the end of the Amazon Resource Name (ARN) assigned to the extension version when it is registered.

", - "TestTypeInput$VersionId": "

The version of the extension to test.

You can specify the version id with either Arn, or with TypeName and Type.

If you do not specify a version, CloudFormation uses the default version of the extension in this account and region for testing.

", - "TypeSummary$DefaultVersionId": "

The ID of the default version of the extension. The default version is used when the extension version is not specified.

This applies only to private extensions you have registered in your account. For public extensions, both those provided by Amazon and published by third parties, CloudFormation returns null. For more information, see RegisterType.

To set the default version of an extension, use SetTypeDefaultVersion .

", - "TypeVersionSummary$VersionId": "

The ID of a specific version of the extension. The version ID is the value at the end of the Amazon Resource Name (ARN) assigned to the extension version when it is registered.

" + "TestTypeInput$VersionId": "

The version of the extension to test.

You can specify the version id with either Arn, or with TypeName and Type.

If you don't specify a version, CloudFormation uses the default version of the extension in this account and region for testing.

", + "TypeSummary$DefaultVersionId": "

The ID of the default version of the extension. The default version is used when the extension version isn't specified.

This applies only to private extensions you have registered in your account. For public extensions, both those provided by Amazon and published by third parties, CloudFormation returns null. For more information, see RegisterType.

To set the default version of an extension, use SetTypeDefaultVersion .

", + "TypeVersionSummary$VersionId": "

The ID of a specific version of the extension. The version ID is the value at the end of the Amazon Resource Name (ARN) assigned to the extension version when it's registered.

" } }, "TypeVersionSummaries": { @@ -3032,9 +3152,9 @@ "UsePreviousTemplate": { "base": null, "refs": { - "CreateChangeSetInput$UsePreviousTemplate": "

Whether to reuse the template that is associated with the stack to create the change set.

", + "CreateChangeSetInput$UsePreviousTemplate": "

Whether to reuse the template that's associated with the stack to create the change set.

", "UpdateStackInput$UsePreviousTemplate": "

Reuse the existing template that is associated with the stack that you are updating.

Conditional: You must specify only one of the following parameters: TemplateBody, TemplateURL, or set the UsePreviousTemplate to true.

", - "UpdateStackSetInput$UsePreviousTemplate": "

Use the existing template that's associated with the stack set that you're updating.

Conditional: You must specify only one of the following parameters: TemplateBody or TemplateURL—or set UsePreviousTemplate to true.

" + "UpdateStackSetInput$UsePreviousTemplate": "

Use the existing template that's associated with the stack set that you're updating.

Conditional: You must specify only one of the following parameters: TemplateBody or TemplateURL—or set UsePreviousTemplate to true.

" } }, "UsePreviousValue": { @@ -3074,7 +3194,7 @@ "Visibility": { "base": null, "refs": { - "DescribeTypeOutput$Visibility": "

The scope at which the extension is visible and usable in CloudFormation operations.

Valid values include:

", + "DescribeTypeOutput$Visibility": "

The scope at which the extension is visible and usable in CloudFormation operations.

Valid values include:

", "ListTypesInput$Visibility": "

The scope at which the extensions are visible and usable in CloudFormation operations.

Valid values include:

The default is PRIVATE.

" } } diff --git a/service/cloudformation/api.go b/service/cloudformation/api.go index 5c8435d5798..e697b4aee89 100644 --- a/service/cloudformation/api.go +++ b/service/cloudformation/api.go @@ -79,7 +79,7 @@ func (c *CloudFormation) ActivateTypeRequest(input *ActivateTypeInput) (req *req // An error occurred during a CloudFormation registry operation. // // * ErrCodeTypeNotFoundException "TypeNotFoundException" -// The specified extension does not exist in the CloudFormation registry. +// The specified extension doesn't exist in the CloudFormation registry. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ActivateType func (c *CloudFormation) ActivateType(input *ActivateTypeInput) (*ActivateTypeOutput, error) { @@ -162,7 +162,7 @@ func (c *CloudFormation) BatchDescribeTypeConfigurationsRequest(input *BatchDesc // // Returned Error Codes: // * ErrCodeTypeConfigurationNotFoundException "TypeConfigurationNotFoundException" -// The specified extension configuration cannot be found. +// The specified extension configuration can't be found. // // * ErrCodeCFNRegistryException "CFNRegistryException" // An error occurred during a CloudFormation registry operation. @@ -317,16 +317,16 @@ func (c *CloudFormation) ContinueUpdateRollbackRequest(input *ContinueUpdateRoll // ContinueUpdateRollback API operation for AWS CloudFormation. // -// For a specified stack that is in the UPDATE_ROLLBACK_FAILED state, continues +// For a specified stack that's in the UPDATE_ROLLBACK_FAILED state, continues // rolling it back to the UPDATE_ROLLBACK_COMPLETE state. Depending on the cause // of the failure, you can manually fix the error (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/troubleshooting.html#troubleshooting-errors-update-rollback-failed) // and continue the rollback. By continuing the rollback, you can return your // stack to a working state (the UPDATE_ROLLBACK_COMPLETE state), and then try // to update the stack again. // -// A stack goes into the UPDATE_ROLLBACK_FAILED state when CloudFormation cannot +// A stack goes into the UPDATE_ROLLBACK_FAILED state when CloudFormation can't // roll back all changes after a failed stack update. For example, you might -// have a stack that is rolling back to an old database instance that was deleted +// have a stack that's rolling back to an old database instance that was deleted // outside of CloudFormation. Because CloudFormation doesn't know the database // was deleted, it assumes that the database instance still exists and attempts // to roll back to it, causing the update rollback to fail. @@ -431,7 +431,7 @@ func (c *CloudFormation) CreateChangeSetRequest(input *CreateChangeSetInput) (re // the change set by using the ExecuteChangeSet action. CloudFormation doesn't // make changes until you execute the change set. // -// To create a change set for the entire stack hierachy, set IncludeNestedStacks +// To create a change set for the entire stack hierarchy, set IncludeNestedStacks // to True. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions @@ -452,7 +452,8 @@ func (c *CloudFormation) CreateChangeSetRequest(input *CreateChangeSetInput) (re // * ErrCodeLimitExceededException "LimitExceededException" // The quota for the resource has already been reached. // -// For information on resource and stack limitations, see Limits (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html) +// For information on resource and stack limitations, see CloudFormation quotas +// (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html) // in the CloudFormation User Guide. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet @@ -522,8 +523,8 @@ func (c *CloudFormation) CreateStackRequest(input *CreateStackInput) (req *reque // CreateStack API operation for AWS CloudFormation. // // Creates a stack as specified in the template. After the call completes successfully, -// the stack creation starts. You can check the status of the stack via the -// DescribeStacks API. +// the stack creation starts. You can check the status of the stack through +// the DescribeStacksoperation. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -536,7 +537,8 @@ func (c *CloudFormation) CreateStackRequest(input *CreateStackInput) (req *reque // * ErrCodeLimitExceededException "LimitExceededException" // The quota for the resource has already been reached. // -// For information on resource and stack limitations, see Limits (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html) +// For information on resource and stack limitations, see CloudFormation quotas +// (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html) // in the CloudFormation User Guide. // // * ErrCodeAlreadyExistsException "AlreadyExistsException" @@ -616,9 +618,9 @@ func (c *CloudFormation) CreateStackInstancesRequest(input *CreateStackInstances // CreateStackInstances API operation for AWS CloudFormation. // // Creates stack instances for the specified accounts, within the specified -// Regions. A stack instance refers to a stack in a specific account and Region. -// You must specify at least one value for either Accounts or DeploymentTargets, -// and you must specify at least one value for Regions. +// Amazon Web Services Regions. A stack instance refers to a stack in a specific +// account and Region. You must specify at least one value for either Accounts +// or DeploymentTargets, and you must specify at least one value for Regions. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -648,7 +650,8 @@ func (c *CloudFormation) CreateStackInstancesRequest(input *CreateStackInstances // * ErrCodeLimitExceededException "LimitExceededException" // The quota for the resource has already been reached. // -// For information on resource and stack limitations, see Limits (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html) +// For information on resource and stack limitations, see CloudFormation quotas +// (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html) // in the CloudFormation User Guide. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStackInstances @@ -736,7 +739,8 @@ func (c *CloudFormation) CreateStackSetRequest(input *CreateStackSetInput) (req // * ErrCodeLimitExceededException "LimitExceededException" // The quota for the resource has already been reached. // -// For information on resource and stack limitations, see Limits (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html) +// For information on resource and stack limitations, see CloudFormation quotas +// (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html) // in the CloudFormation User Guide. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStackSet @@ -809,11 +813,11 @@ func (c *CloudFormation) DeactivateTypeRequest(input *DeactivateTypeInput) (req // Deactivates a public extension that was previously activated in this account // and region. // -// Once deactivated, an extension cannot be used in any CloudFormation operation. +// Once deactivated, an extension can't be used in any CloudFormation operation. // This includes stack update operations where the stack template includes the // extension, even if no updates are being made to the extension. In addition, -// deactivated extensions are not automatically updated if a new version of -// the extension is released. +// deactivated extensions aren't automatically updated if a new version of the +// extension is released. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -827,7 +831,7 @@ func (c *CloudFormation) DeactivateTypeRequest(input *DeactivateTypeInput) (req // An error occurred during a CloudFormation registry operation. // // * ErrCodeTypeNotFoundException "TypeNotFoundException" -// The specified extension does not exist in the CloudFormation registry. +// The specified extension doesn't exist in the CloudFormation registry. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeactivateType func (c *CloudFormation) DeactivateType(input *DeactivateTypeInput) (*DeactivateTypeOutput, error) { @@ -988,8 +992,8 @@ func (c *CloudFormation) DeleteStackRequest(input *DeleteStackInput) (req *reque // DeleteStack API operation for AWS CloudFormation. // // Deletes a specified stack. Once the call completes successfully, stack deletion -// starts. Deleted stacks do not show up in the DescribeStacks API if the deletion -// has been completed successfully. +// starts. Deleted stacks don't show up in the DescribeStacks operation if the +// deletion has been completed successfully. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -1068,7 +1072,8 @@ func (c *CloudFormation) DeleteStackInstancesRequest(input *DeleteStackInstances // DeleteStackInstances API operation for AWS CloudFormation. // -// Deletes stack instances for the specified accounts, in the specified Regions. +// Deletes stack instances for the specified accounts, in the specified Amazon +// Web Services Regions. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -1259,9 +1264,9 @@ func (c *CloudFormation) DeregisterTypeRequest(input *DeregisterTypeInput) (req // deregistering that version results in the extension itself being deregistered // and marked as deprecated in the registry. // -// You cannot deregister the default version of an extension if there are other +// You can't deregister the default version of an extension if there are other // active version of that extension. If you do deregister the default version -// of an extension, the textensionype itself is deregistered as well and marked +// of an extension, the extension type itself is deregistered as well and marked // as deprecated. // // To view the deprecation status of an extension or extension version, use @@ -1279,7 +1284,7 @@ func (c *CloudFormation) DeregisterTypeRequest(input *DeregisterTypeInput) (req // An error occurred during a CloudFormation registry operation. // // * ErrCodeTypeNotFoundException "TypeNotFoundException" -// The specified extension does not exist in the CloudFormation registry. +// The specified extension doesn't exist in the CloudFormation registry. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeregisterType func (c *CloudFormation) DeregisterType(input *DeregisterTypeInput) (*DeregisterTypeOutput, error) { @@ -1355,7 +1360,7 @@ func (c *CloudFormation) DescribeAccountLimitsRequest(input *DescribeAccountLimi // // Retrieves your account's CloudFormation limits, such as the maximum number // of stacks that you can create in your account. For more information about -// account limits, see CloudFormation Limits (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html) +// account limits, see CloudFormation Quotas (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html) // in the CloudFormation User Guide. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions @@ -1497,7 +1502,7 @@ func (c *CloudFormation) DescribeChangeSetRequest(input *DescribeChangeSetInput) // Returned Error Codes: // * ErrCodeChangeSetNotFoundException "ChangeSetNotFound" // The specified change set name or ID doesn't exit. To view valid change sets -// for a stack, use the ListChangeSets action. +// for a stack, use the ListChangeSets operation. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeChangeSet func (c *CloudFormation) DescribeChangeSet(input *DescribeChangeSetInput) (*DescribeChangeSetOutput, error) { @@ -1521,6 +1526,87 @@ func (c *CloudFormation) DescribeChangeSetWithContext(ctx aws.Context, input *De return out, req.Send() } +const opDescribeChangeSetHooks = "DescribeChangeSetHooks" + +// DescribeChangeSetHooksRequest generates a "aws/request.Request" representing the +// client's request for the DescribeChangeSetHooks operation. The "output" return +// value will be populated with the request's response once the request completes +// successfully. +// +// Use "Send" method on the returned Request to send the API call to the service. +// the "output" return value is not valid until after Send returns without error. +// +// See DescribeChangeSetHooks for more information on using the DescribeChangeSetHooks +// API call, and error handling. +// +// This method is useful when you want to inject custom logic or configuration +// into the SDK's request lifecycle. Such as custom headers, or retry logic. +// +// +// // Example sending a request using the DescribeChangeSetHooksRequest method. +// req, resp := client.DescribeChangeSetHooksRequest(params) +// +// err := req.Send() +// if err == nil { // resp is now filled +// fmt.Println(resp) +// } +// +// See also, https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeChangeSetHooks +func (c *CloudFormation) DescribeChangeSetHooksRequest(input *DescribeChangeSetHooksInput) (req *request.Request, output *DescribeChangeSetHooksOutput) { + op := &request.Operation{ + Name: opDescribeChangeSetHooks, + HTTPMethod: "POST", + HTTPPath: "/", + } + + if input == nil { + input = &DescribeChangeSetHooksInput{} + } + + output = &DescribeChangeSetHooksOutput{} + req = c.newRequest(op, input, output) + return +} + +// DescribeChangeSetHooks API operation for AWS CloudFormation. +// +// Returns hook-related information for the change set and a list of changes +// that CloudFormation makes when you run the change set. +// +// Returns awserr.Error for service API and SDK errors. Use runtime type assertions +// with awserr.Error's Code and Message methods to get detailed information about +// the error. +// +// See the AWS API reference guide for AWS CloudFormation's +// API operation DescribeChangeSetHooks for usage and error information. +// +// Returned Error Codes: +// * ErrCodeChangeSetNotFoundException "ChangeSetNotFound" +// The specified change set name or ID doesn't exit. To view valid change sets +// for a stack, use the ListChangeSets operation. +// +// See also, https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeChangeSetHooks +func (c *CloudFormation) DescribeChangeSetHooks(input *DescribeChangeSetHooksInput) (*DescribeChangeSetHooksOutput, error) { + req, out := c.DescribeChangeSetHooksRequest(input) + return out, req.Send() +} + +// DescribeChangeSetHooksWithContext is the same as DescribeChangeSetHooks with the addition of +// the ability to pass a context and additional request options. +// +// See DescribeChangeSetHooks for details on how to use this API operation. +// +// The context must be non-nil and will be used for request cancellation. If +// the context is nil a panic will occur. In the future the SDK may create +// sub-contexts for http.Requests. See https://golang.org/pkg/context/ +// for more information on using Contexts. +func (c *CloudFormation) DescribeChangeSetHooksWithContext(ctx aws.Context, input *DescribeChangeSetHooksInput, opts ...request.Option) (*DescribeChangeSetHooksOutput, error) { + req, out := c.DescribeChangeSetHooksRequest(input) + req.SetContext(ctx) + req.ApplyOptions(opts...) + return out, req.Send() +} + const opDescribePublisher = "DescribePublisher" // DescribePublisherRequest generates a "aws/request.Request" representing the @@ -1567,7 +1653,7 @@ func (c *CloudFormation) DescribePublisherRequest(input *DescribePublisherInput) // // Returns information about a CloudFormation extension publisher. // -// If you do not supply a PublisherId, and you have registered as an extension +// If you don't supply a PublisherId, and you have registered as an extension // publisher, DescribePublisher returns information about your own publisher // account. // @@ -2053,9 +2139,9 @@ func (c *CloudFormation) DescribeStackResourceDriftsRequest(input *DescribeStack // // For a given stack, there will be one StackResourceDrift for each stack resource // that has been checked for drift. Resources that haven't yet been checked -// for drift are not included. Resources that do not currently support drift -// detection are not checked, and so not included. For a list of resources that -// support drift detection, see Resources that Support Drift Detection (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift-resource-list.html). +// for drift aren't included. Resources that don't currently support drift detection +// aren't checked, and so not included. For a list of resources that support +// drift detection, see Resources that Support Drift Detection (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift-resource-list.html). // // Use DetectStackResourceDrift to detect drift on individual resources, or // DetectStackDrift to detect drift on all supported resources for a given stack. @@ -2445,7 +2531,7 @@ func (c *CloudFormation) DescribeStacksRequest(input *DescribeStacksInput) (req // Returns the description for the specified stack; if no stack name was specified, // then it returns the description for all the stacks created. // -// If the stack does not exist, an ValidationError is returned. +// If the stack doesn't exist, an ValidationError is returned. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -2589,7 +2675,7 @@ func (c *CloudFormation) DescribeTypeRequest(input *DescribeTypeInput) (req *req // An error occurred during a CloudFormation registry operation. // // * ErrCodeTypeNotFoundException "TypeNotFoundException" -// The specified extension does not exist in the CloudFormation registry. +// The specified extension doesn't exist in the CloudFormation registry. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeType func (c *CloudFormation) DescribeType(input *DescribeTypeInput) (*DescribeTypeOutput, error) { @@ -2766,8 +2852,8 @@ func (c *CloudFormation) DetectStackDriftRequest(input *DetectStackDriftInput) ( // detection operation has completed, use DescribeStackResourceDrifts to return // drift information about the stack and its resources. // -// When detecting drift on a stack, CloudFormation does not detect drift on -// any nested stacks belonging to that stack. Perform DetectStackDrift directly +// When detecting drift on a stack, CloudFormation doesn't detect drift on any +// nested stacks belonging to that stack. Perform DetectStackDrift directly // on the nested stack itself. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions @@ -2854,7 +2940,7 @@ func (c *CloudFormation) DetectStackResourceDriftRequest(input *DetectStackResou // DetectStackDrift to detect drift on all resources in a given stack that support // drift detection. // -// Resources that do not currently support drift detection cannot be checked. +// Resources that don't currently support drift detection can't be checked. // For a list of resources that support drift detection, see Resources that // Support Drift Detection (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift-resource-list.html). // @@ -2933,13 +3019,13 @@ func (c *CloudFormation) DetectStackSetDriftRequest(input *DetectStackSetDriftIn // Detect drift on a stack set. When CloudFormation performs drift detection // on a stack set, it performs drift detection on the stack associated with // each stack instance in the stack set. For more information, see How CloudFormation -// Performs Drift Detection on a Stack Set (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-drift.html). +// performs drift detection on a stack set (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-drift.html). // // DetectStackSetDrift returns the OperationId of the stack set drift detection // operation. Use this operation id with DescribeStackSetOperation to monitor // the progress of the drift detection operation. The drift detection operation // may take some time, depending on the number of stack instances included in -// the stack set, as well as the number of resources included in each stack. +// the stack set, in addition to the number of resources included in each stack. // // Once the operation has completed, use the following actions to return drift // information: @@ -2947,7 +3033,7 @@ func (c *CloudFormation) DetectStackSetDriftRequest(input *DetectStackSetDriftIn // * Use DescribeStackSet to return detailed information about the stack // set, including detailed information about the last completed drift operation // performed on the stack set. (Information about drift operations that are -// in progress is not included.) +// in progress isn't included.) // // * Use ListStackInstances to return a list of stack instances belonging // to the stack set, including the drift status and last drift time checked @@ -2957,7 +3043,7 @@ func (c *CloudFormation) DetectStackSetDriftRequest(input *DetectStackSetDriftIn // stack instance, including its drift status and last drift time checked. // // For more information on performing a drift detection operation on a stack -// set, see Detecting Unmanaged Changes in Stack Sets (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-drift.html). +// set, see Detecting unmanaged changes in stack sets (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-drift.html). // // You can only run a single drift detection operation on a given stack set // at one time. @@ -3137,7 +3223,7 @@ func (c *CloudFormation) ExecuteChangeSetRequest(input *ExecuteChangeSetInput) ( // policy during the update. You can't specify a temporary stack policy that // overrides the current policy. // -// To create a change set for the entire stack hierachy, IncludeNestedStacks +// To create a change set for the entire stack hierarchy, IncludeNestedStacks // must have been set to True. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions @@ -3155,7 +3241,7 @@ func (c *CloudFormation) ExecuteChangeSetRequest(input *ExecuteChangeSetInput) ( // // * ErrCodeChangeSetNotFoundException "ChangeSetNotFound" // The specified change set name or ID doesn't exit. To view valid change sets -// for a stack, use the ListChangeSets action. +// for a stack, use the ListChangeSets operation. // // * ErrCodeInsufficientCapabilitiesException "InsufficientCapabilitiesException" // The template contains resources with capabilities that weren't specified @@ -3311,7 +3397,7 @@ func (c *CloudFormation) GetTemplateRequest(input *GetTemplateInput) (req *reque // For deleted stacks, GetTemplate returns the template for up to 90 days after // the stack has been deleted. // -// If the template does not exist, a ValidationError is returned. +// If the template doesn't exist, a ValidationError is returned. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -3323,7 +3409,7 @@ func (c *CloudFormation) GetTemplateRequest(input *GetTemplateInput) (req *reque // Returned Error Codes: // * ErrCodeChangeSetNotFoundException "ChangeSetNotFound" // The specified change set name or ID doesn't exit. To view valid change sets -// for a stack, use the ListChangeSets action. +// for a stack, use the ListChangeSets operation. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetTemplate func (c *CloudFormation) GetTemplate(input *GetTemplateInput) (*GetTemplateOutput, error) { @@ -3401,8 +3487,8 @@ func (c *CloudFormation) GetTemplateSummaryRequest(input *GetTemplateSummaryInpu // stack. // // For deleted stacks, GetTemplateSummary returns the template information for -// up to 90 days after the stack has been deleted. If the template does not -// exist, a ValidationError is returned. +// up to 90 days after the stack has been deleted. If the template doesn't exist, +// a ValidationError is returned. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -3481,13 +3567,12 @@ func (c *CloudFormation) ImportStacksToStackSetRequest(input *ImportStacksToStac // ImportStacksToStackSet API operation for AWS CloudFormation. // -// Use the stack import operations for self-managed or service-managed StackSets. -// For self-managed StackSets, the import operation can import stacks in the -// administrator account or in different target accounts and Amazon Web Services -// Regions. For service-managed StackSets, the import operation can import any -// stack in the same AWS Organizations as the management account. The import -// operation can import up to 10 stacks using inline stack IDs or up to 10,000 -// stacks using an Amazon S3 object. +// Import existing stacks into a new stack sets. Use the stack import operation +// to import up to 10 stacks into a new stack set in the same account as the +// source stack or in a different administrator account and Region, by specifying +// the stack ID of the stack you intend to import. +// +// ImportStacksToStackSet is only supported by self-managed permissions. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -3500,7 +3585,8 @@ func (c *CloudFormation) ImportStacksToStackSetRequest(input *ImportStacksToStac // * ErrCodeLimitExceededException "LimitExceededException" // The quota for the resource has already been reached. // -// For information on resource and stack limitations, see Limits (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html) +// For information on resource and stack limitations, see CloudFormation quotas +// (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html) // in the CloudFormation User Guide. // // * ErrCodeStackSetNotFoundException "StackSetNotFoundException" @@ -3517,7 +3603,7 @@ func (c *CloudFormation) ImportStacksToStackSetRequest(input *ImportStacksToStac // The specified operation ID already exists. // // * ErrCodeStackNotFoundException "StackNotFoundException" -// The specified stack ARN doesn’t exist or stack doesn’t exist corresponding +// The specified stack ARN doesn't exist or stack doesn't exist corresponding // to the ARN in input. // // * ErrCodeStaleRequestException "StaleRequestException" @@ -3735,7 +3821,7 @@ func (c *CloudFormation) ListExportsRequest(input *ListExportsInput) (req *reque // import into other stacks. To import values, use the Fn::ImportValue (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-importvalue.html) // function. // -// For more information, see CloudFormation Export Stack Output Values (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-exports.html). +// For more information, see CloudFormation export stack output values (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-exports.html). // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -5265,7 +5351,7 @@ func (c *CloudFormation) PublishTypeRequest(input *PublishTypeInput) (req *reque // An error occurred during a CloudFormation registry operation. // // * ErrCodeTypeNotFoundException "TypeNotFoundException" -// The specified extension does not exist in the CloudFormation registry. +// The specified extension doesn't exist in the CloudFormation registry. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/PublishType func (c *CloudFormation) PublishType(input *PublishTypeInput) (*PublishTypeOutput, error) { @@ -5337,7 +5423,7 @@ func (c *CloudFormation) RecordHandlerProgressRequest(input *RecordHandlerProgre // Reports progress of a resource handler to CloudFormation. // // Reserved for use by the CloudFormation CLI (https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/what-is-cloudformation-cli.html). -// Do not use this API in your code. +// Don't use this API in your code. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -5349,11 +5435,11 @@ func (c *CloudFormation) RecordHandlerProgressRequest(input *RecordHandlerProgre // Returned Error Codes: // * ErrCodeInvalidStateTransitionException "InvalidStateTransition" // Error reserved for use by the CloudFormation CLI (https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/what-is-cloudformation-cli.html). -// CloudFormation does not return this error to users. +// CloudFormation doesn't return this error to users. // // * ErrCodeOperationStatusCheckFailedException "ConditionalCheckFailed" // Error reserved for use by the CloudFormation CLI (https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/what-is-cloudformation-cli.html). -// CloudFormation does not return this error to users. +// CloudFormation doesn't return this error to users. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RecordHandlerProgress func (c *CloudFormation) RecordHandlerProgress(input *RecordHandlerProgressInput) (*RecordHandlerProgressOutput, error) { @@ -5510,13 +5596,13 @@ func (c *CloudFormation) RegisterTypeRequest(input *RegisterTypeInput) (req *req // makes it available for use in CloudFormation templates in your Amazon Web // Services account, and includes: // -// * Validating the extension schema +// * Validating the extension schema. // -// * Determining which handlers, if any, have been specified for the extension +// * Determining which handlers, if any, have been specified for the extension. // -// * Making the extension available for use in your account +// * Making the extension available for use in your account. // -// For more information on how to develop extensions and ready them for registeration, +// For more information on how to develop extensions and ready them for registration, // see Creating Resource Providers (https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-types.html) // in the CloudFormation CLI User Guide. // @@ -5613,7 +5699,7 @@ func (c *CloudFormation) RollbackStackRequest(input *RollbackStackInput) (req *r // // When specifying RollbackStack, you preserve the state of previously provisioned // resources when an operation fails. You can check the status of the stack -// through the DescribeStacks API. +// through the DescribeStacks operation. // // Rolls back the specified stack to the last known stable state from CREATE_FAILED // or UPDATE_FAILED stack statuses. @@ -5792,7 +5878,7 @@ func (c *CloudFormation) SetTypeConfigurationRequest(input *SetTypeConfiguration // For more information, see Configuring extensions at the account level (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-register.html#registry-set-configuration) // in the CloudFormation User Guide. // -// It is strongly recommended that you use dynamic references to restrict sensitive +// It's strongly recommended that you use dynamic references to restrict sensitive // configuration definitions, such as third-party credentials. For more details // on dynamic references, see Using dynamic references to specify template values // (https://docs.aws.amazon.com/) in the CloudFormation User Guide. @@ -5809,7 +5895,7 @@ func (c *CloudFormation) SetTypeConfigurationRequest(input *SetTypeConfiguration // An error occurred during a CloudFormation registry operation. // // * ErrCodeTypeNotFoundException "TypeNotFoundException" -// The specified extension does not exist in the CloudFormation registry. +// The specified extension doesn't exist in the CloudFormation registry. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/SetTypeConfiguration func (c *CloudFormation) SetTypeConfiguration(input *SetTypeConfigurationInput) (*SetTypeConfigurationOutput, error) { @@ -5893,7 +5979,7 @@ func (c *CloudFormation) SetTypeDefaultVersionRequest(input *SetTypeDefaultVersi // An error occurred during a CloudFormation registry operation. // // * ErrCodeTypeNotFoundException "TypeNotFoundException" -// The specified extension does not exist in the CloudFormation registry. +// The specified extension doesn't exist in the CloudFormation registry. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/SetTypeDefaultVersion func (c *CloudFormation) SetTypeDefaultVersion(input *SetTypeDefaultVersionInput) (*SetTypeDefaultVersionOutput, error) { @@ -5963,11 +6049,11 @@ func (c *CloudFormation) SignalResourceRequest(input *SignalResourceInput) (req // SignalResource API operation for AWS CloudFormation. // // Sends a signal to the specified resource with a success or failure status. -// You can use the SignalResource API in conjunction with a creation policy +// You can use the SignalResource operation in conjunction with a creation policy // or update policy. CloudFormation doesn't proceed with a stack creation or // update until resources receive the required number of signals or the timeout -// period is exceeded. The SignalResource API is useful in cases where you want -// to send signals from anywhere other than an Amazon EC2 instance. +// period is exceeded. The SignalResource operation is useful in cases where +// you want to send signals from anywhere other than an Amazon EC2 instance. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -6043,6 +6129,8 @@ func (c *CloudFormation) StopStackSetOperationRequest(input *StopStackSetOperati // StopStackSetOperation API operation for AWS CloudFormation. // // Stops an in-progress operation on a stack set and its associated stack instances. +// StackSets will cancel all the unstarted stack instance deployments and wait +// for those are in-progress to complete. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -6140,8 +6228,8 @@ func (c *CloudFormation) TestTypeRequest(input *TestTypeInput) (req *request.Req // (https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html#publish-extension-testing) // in the CloudFormation CLI User Guide. // -// If you do not specify a version, CloudFormation uses the default version -// of the extension in your account and region for testing. +// If you don't specify a version, CloudFormation uses the default version of +// the extension in your account and region for testing. // // To perform testing, CloudFormation assumes the execution role specified when // the type was registered. For more information, see RegisterType (AWSCloudFormation/latest/APIReference/API_RegisterType.html). @@ -6167,7 +6255,7 @@ func (c *CloudFormation) TestTypeRequest(input *TestTypeInput) (req *request.Req // An error occurred during a CloudFormation registry operation. // // * ErrCodeTypeNotFoundException "TypeNotFoundException" -// The specified extension does not exist in the CloudFormation registry. +// The specified extension doesn't exist in the CloudFormation registry. // // See also, https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/TestType func (c *CloudFormation) TestType(input *TestTypeInput) (*TestTypeOutput, error) { @@ -6236,8 +6324,8 @@ func (c *CloudFormation) UpdateStackRequest(input *UpdateStackInput) (req *reque // UpdateStack API operation for AWS CloudFormation. // // Updates a stack as specified in the template. After the call completes successfully, -// the stack update starts. You can check the status of the stack via the DescribeStacks -// action. +// the stack update starts. You can check the status of the stack through the +// DescribeStacks action. // // To get a copy of the template for an existing stack, you can use the GetTemplate // action. @@ -6327,14 +6415,15 @@ func (c *CloudFormation) UpdateStackInstancesRequest(input *UpdateStackInstances // UpdateStackInstances API operation for AWS CloudFormation. // // Updates the parameter values for stack instances for the specified accounts, -// within the specified Regions. A stack instance refers to a stack in a specific -// account and Region. +// within the specified Amazon Web Services Regions. A stack instance refers +// to a stack in a specific account and Region. // -// You can only update stack instances in Regions and accounts where they already -// exist; to create additional stack instances, use CreateStackInstances (https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateStackInstances.html). +// You can only update stack instances in Amazon Web Services Regions and accounts +// where they already exist; to create additional stack instances, use CreateStackInstances +// (https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateStackInstances.html). // // During stack set updates, any parameters overridden for a stack instance -// are not updated, but retain their overridden value. +// aren't updated, but retain their overridden value. // // You can only update the parameter values that are specified in the stack // set; to add or delete a parameter itself, use UpdateStackSet (https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_UpdateStackSet.html) @@ -6440,7 +6529,7 @@ func (c *CloudFormation) UpdateStackSetRequest(input *UpdateStackSetInput) (req // UpdateStackSet API operation for AWS CloudFormation. // // Updates the stack set, and associated stack instances in the specified accounts -// and Regions. +// and Amazon Web Services Regions. // // Even if the stack set operation created by updating the stack set fails (completely // or partially, below or above a specified failure tolerance), the stack set @@ -6548,7 +6637,7 @@ func (c *CloudFormation) UpdateTerminationProtectionRequest(input *UpdateTermina // in the CloudFormation User Guide. // // For nested stacks (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html), -// termination protection is set on the root stack and cannot be changed directly +// termination protection is set on the root stack and can't be changed directly // on the nested stack. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions @@ -6679,16 +6768,16 @@ type AccountGateResult struct { // CloudFormation proceeds with the stack operation in that account and Region. // // * FAILED: The account gate function has determined that the account and - // Region does not meet the requirements for a stack set operation to occur. - // AWS CloudFormation cancels the stack set operation in that account and - // Region, and sets the stack set operation result status for that account - // and Region to FAILED. + // Region doesn't meet the requirements for a stack set operation to occur. + // CloudFormation cancels the stack set operation in that account and Region, + // and sets the stack set operation result status for that account and Region + // to FAILED. // // * SKIPPED: CloudFormation has skipped calling the account gate function // for this account and Region, for one of the following reasons: An account - // gate function has not been specified for the account and Region. CloudFormation + // gate function hasn't been specified for the account and Region. CloudFormation // proceeds with the stack set operation in this account and Region. The - // AWSCloudFormationStackSetExecutionRole of the stack set adminstration + // AWSCloudFormationStackSetExecutionRole of the stack set administration // account lacks permissions to invoke the function. CloudFormation proceeds // with the stack set operation in this account and Region. Either no action // is necessary, or no action is possible, on the stack. CloudFormation skips @@ -6741,7 +6830,7 @@ func (s *AccountGateResult) SetStatusReason(v string) *AccountGateResult { // * Number of stack outputs // // For more information about these account limits, and other CloudFormation -// limits, see CloudFormation Limits (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html) +// limits, see CloudFormation quotas (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html) // in the CloudFormation User Guide. type AccountLimit struct { _ struct{} `type:"structure"` @@ -6751,7 +6840,7 @@ type AccountLimit struct { // Values: ConcurrentResourcesLimit | StackLimit | StackOutputsLimit Name *string `type:"string"` - // The value that is associated with the account limit name. + // The value that's associated with the account limit name. Value *int64 `type:"integer"` } @@ -7212,7 +7301,7 @@ type CancelUpdateStackInput struct { // them. ClientRequestToken *string `min:"1" type:"string"` - // The name or the unique stack ID that is associated with the stack. + // The name or the unique stack ID that's associated with the stack. // // StackName is a required field StackName *string `type:"string" required:"true"` @@ -7291,6 +7380,10 @@ func (s CancelUpdateStackOutput) GoString() string { type Change struct { _ struct{} `type:"structure"` + // Is either null, if no hooks invoke for the resource, or contains the number + // of hooks that will invoke for the resource. + HookInvocationCount *int64 `min:"1" type:"integer"` + // A ResourceChange structure that describes the resource and action that CloudFormation // will perform. ResourceChange *ResourceChange `type:"structure"` @@ -7318,6 +7411,12 @@ func (s Change) GoString() string { return s.String() } +// SetHookInvocationCount sets the HookInvocationCount field's value. +func (s *Change) SetHookInvocationCount(v int64) *Change { + s.HookInvocationCount = &v + return s +} + // SetResourceChange sets the ResourceChange field's value. func (s *Change) SetResourceChange(v *ResourceChange) *Change { s.ResourceChange = v @@ -7330,6 +7429,197 @@ func (s *Change) SetType(v string) *Change { return s } +// Specifies the resource, the hook, and the hook version to be invoked. +type ChangeSetHook struct { + _ struct{} `type:"structure"` + + // Specify the hook failure mode for non-compliant resources in the followings + // ways. + // + // * FAIL Stops provisioning resources. + // + // * WARN Allows provisioning to continue with a warning message. + FailureMode *string `type:"string" enum:"HookFailureMode"` + + // Specifies the points in provisioning logic where a hook is invoked. + InvocationPoint *string `type:"string" enum:"HookInvocationPoint"` + + // Specifies details about the target that the hook will run against. + TargetDetails *ChangeSetHookTargetDetails `type:"structure"` + + // The version ID of the type configuration. + TypeConfigurationVersionId *string `min:"1" type:"string"` + + // The unique name for your hook. Specifies a three-part namespace for your + // hook, with a recommended pattern of Organization::Service::Hook. + // + // The following organization namespaces are reserved and can't be used in your + // hook type names: + // + // * Alexa + // + // * AMZN + // + // * Amazon + // + // * ASK + // + // * AWS + // + // * Custom + // + // * Dev + TypeName *string `min:"10" type:"string"` + + // The version ID of the type specified. + TypeVersionId *string `min:"1" type:"string"` +} + +// String returns the string representation. +// +// API parameter values that are decorated as "sensitive" in the API will not +// be included in the string output. The member name will be present, but the +// value will be replaced with "sensitive". +func (s ChangeSetHook) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation. +// +// API parameter values that are decorated as "sensitive" in the API will not +// be included in the string output. The member name will be present, but the +// value will be replaced with "sensitive". +func (s ChangeSetHook) GoString() string { + return s.String() +} + +// SetFailureMode sets the FailureMode field's value. +func (s *ChangeSetHook) SetFailureMode(v string) *ChangeSetHook { + s.FailureMode = &v + return s +} + +// SetInvocationPoint sets the InvocationPoint field's value. +func (s *ChangeSetHook) SetInvocationPoint(v string) *ChangeSetHook { + s.InvocationPoint = &v + return s +} + +// SetTargetDetails sets the TargetDetails field's value. +func (s *ChangeSetHook) SetTargetDetails(v *ChangeSetHookTargetDetails) *ChangeSetHook { + s.TargetDetails = v + return s +} + +// SetTypeConfigurationVersionId sets the TypeConfigurationVersionId field's value. +func (s *ChangeSetHook) SetTypeConfigurationVersionId(v string) *ChangeSetHook { + s.TypeConfigurationVersionId = &v + return s +} + +// SetTypeName sets the TypeName field's value. +func (s *ChangeSetHook) SetTypeName(v string) *ChangeSetHook { + s.TypeName = &v + return s +} + +// SetTypeVersionId sets the TypeVersionId field's value. +func (s *ChangeSetHook) SetTypeVersionId(v string) *ChangeSetHook { + s.TypeVersionId = &v + return s +} + +// Specifies RESOURCE type target details for activated hooks. +type ChangeSetHookResourceTargetDetails struct { + _ struct{} `type:"structure"` + + // The resource's logical ID, which is defined in the stack's template. + LogicalResourceId *string `type:"string"` + + // Specifies the action of the resource. + ResourceAction *string `type:"string" enum:"ChangeAction"` + + // The type of CloudFormation resource, such as AWS::S3::Bucket. + ResourceType *string `min:"1" type:"string"` +} + +// String returns the string representation. +// +// API parameter values that are decorated as "sensitive" in the API will not +// be included in the string output. The member name will be present, but the +// value will be replaced with "sensitive". +func (s ChangeSetHookResourceTargetDetails) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation. +// +// API parameter values that are decorated as "sensitive" in the API will not +// be included in the string output. The member name will be present, but the +// value will be replaced with "sensitive". +func (s ChangeSetHookResourceTargetDetails) GoString() string { + return s.String() +} + +// SetLogicalResourceId sets the LogicalResourceId field's value. +func (s *ChangeSetHookResourceTargetDetails) SetLogicalResourceId(v string) *ChangeSetHookResourceTargetDetails { + s.LogicalResourceId = &v + return s +} + +// SetResourceAction sets the ResourceAction field's value. +func (s *ChangeSetHookResourceTargetDetails) SetResourceAction(v string) *ChangeSetHookResourceTargetDetails { + s.ResourceAction = &v + return s +} + +// SetResourceType sets the ResourceType field's value. +func (s *ChangeSetHookResourceTargetDetails) SetResourceType(v string) *ChangeSetHookResourceTargetDetails { + s.ResourceType = &v + return s +} + +// Specifies target details for an activated hook. +type ChangeSetHookTargetDetails struct { + _ struct{} `type:"structure"` + + // Required if TargetType is RESOURCE. + ResourceTargetDetails *ChangeSetHookResourceTargetDetails `type:"structure"` + + // The name of the type. + TargetType *string `type:"string" enum:"HookTargetType"` +} + +// String returns the string representation. +// +// API parameter values that are decorated as "sensitive" in the API will not +// be included in the string output. The member name will be present, but the +// value will be replaced with "sensitive". +func (s ChangeSetHookTargetDetails) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation. +// +// API parameter values that are decorated as "sensitive" in the API will not +// be included in the string output. The member name will be present, but the +// value will be replaced with "sensitive". +func (s ChangeSetHookTargetDetails) GoString() string { + return s.String() +} + +// SetResourceTargetDetails sets the ResourceTargetDetails field's value. +func (s *ChangeSetHookTargetDetails) SetResourceTargetDetails(v *ChangeSetHookResourceTargetDetails) *ChangeSetHookTargetDetails { + s.ResourceTargetDetails = v + return s +} + +// SetTargetType sets the TargetType field's value. +func (s *ChangeSetHookTargetDetails) SetTargetType(v string) *ChangeSetHookTargetDetails { + s.TargetType = &v + return s +} + // The ChangeSetSummary structure describes a change set, its status, and the // stack with which it's associated. type ChangeSetSummary struct { @@ -7348,10 +7638,9 @@ type ChangeSetSummary struct { Description *string `min:"1" type:"string"` // If the change set execution status is AVAILABLE, you can execute the change - // set. If you can’t execute the change set, the status indicates why. For - // example, a change set might be in an UNAVAILABLE state because CloudFormation - // is still creating it or in an OBSOLETE state because the stack was already - // updated. + // set. If you can't execute the change set, the status indicates why. For example, + // a change set might be in an UNAVAILABLE state because CloudFormation is still + // creating it or in an OBSOLETE state because the stack was already updated. ExecutionStatus *string `type:"string" enum:"ExecutionStatus"` // Specifies the current setting of IncludeNestedStacks for the change set. @@ -7483,7 +7772,7 @@ type ContinueUpdateRollbackInput struct { // the continue update rollback operation. You can specify only resources that // are in the UPDATE_FAILED state because a rollback failed. You can't specify // resources that are in the UPDATE_FAILED state for other reasons, for example, - // because an update was cancelled. To check why a resource update failed, use + // because an update was canceled. To check why a resource update failed, use // the DescribeStackResources action, and view the resource status reason. // // Specify this property to skip rolling back resources that CloudFormation @@ -7515,14 +7804,14 @@ type ContinueUpdateRollbackInput struct { // The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) // role that CloudFormation assumes to roll back the stack. CloudFormation uses // the role's credentials to make calls on your behalf. CloudFormation always - // uses this role for all future operations on the stack. As long as users have - // permission to operate on the stack, CloudFormation uses this role even if - // the users don't have permission to pass it. Ensure that the role grants least - // privilege. + // uses this role for all future operations on the stack. Provided that users + // have permission to operate on the stack, CloudFormation uses this role even + // if the users don't have permission to pass it. Ensure that the role grants + // least permission. // // If you don't specify a value, CloudFormation uses the role that was previously // associated with the stack. If no role is available, CloudFormation uses a - // temporary session that is generated from your user credentials. + // temporary session that's generated from your user credentials. RoleARN *string `min:"20" type:"string"` // The name or the unique ID of the stack that you want to continue rolling @@ -7601,7 +7890,7 @@ func (s *ContinueUpdateRollbackInput) SetStackName(v string) *ContinueUpdateRoll return s } -// The output for a ContinueUpdateRollback action. +// The output for a ContinueUpdateRollback operation. type ContinueUpdateRollbackOutput struct { _ struct{} `type:"structure"` } @@ -7649,8 +7938,8 @@ type CreateChangeSetInput struct { // AWS::IAM::Role (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html) // AWS::IAM::User (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html) // AWS::IAM::UserToGroupAddition (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html) - // For more information, see Acknowledging IAM Resources in CloudFormation - // Templates (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities). + // For more information, see Acknowledging IAM resources in CloudFormation + // templates (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities). // // * CAPABILITY_AUTO_EXPAND Some template contain macros. Macros perform // custom processing on templates; this can include simple actions like find-and-replace @@ -7662,21 +7951,21 @@ type CreateChangeSetInput struct { // template, without first reviewing the resulting changes in a change set, // you must acknowledge this capability. This includes the AWS::Include (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html) // and AWS::Serverless (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html) - // transforms, which are macros hosted by CloudFormation. This capacity does - // not apply to creating change sets, and specifying it when creating change + // transforms, which are macros hosted by CloudFormation. This capacity doesn't + // apply to creating change sets, and specifying it when creating change // sets has no effect. If you want to create a stack from a stack template // that contains macros and nested stacks, you must create or update the // stack directly from the template using the CreateStack or UpdateStack // action, and specifying this capability. For more information on macros, - // see Using CloudFormation Macros to Perform Custom Processing on Templates + // see Using CloudFormation macros to perform custom processing on templates // (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html). Capabilities []*string `type:"list"` // The name of the change set. The name must be unique among all change sets // that are associated with the specified stack. // - // A change set name can contain only alphanumeric, case sensitive characters - // and hyphens. It must start with an alphabetic character and cannot exceed + // A change set name can contain only alphanumeric, case sensitive characters, + // and hyphens. It must start with an alphabetical character and can't exceed // 128 characters. // // ChangeSetName is a required field @@ -7727,7 +8016,7 @@ type CreateChangeSetInput struct { // updating, the stack update fails. By default, CloudFormation grants permissions // to all resource types. Identity and Access Management (IAM) uses this parameter // for condition keys in IAM policies for CloudFormation. For more information, - // see Controlling Access with Identity and Access Management (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html) + // see Controlling access with Identity and Access Management (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html) // in the CloudFormation User Guide. ResourceTypes []*string `type:"list"` @@ -7737,10 +8026,10 @@ type CreateChangeSetInput struct { // The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) // role that CloudFormation assumes when executing the change set. CloudFormation // uses the role's credentials to make calls on your behalf. CloudFormation - // uses this role for all future operations on the stack. As long as users have - // permission to operate on the stack, CloudFormation uses this role even if - // the users don't have permission to pass it. Ensure that the role grants least - // privilege. + // uses this role for all future operations on the stack. Provided that users + // have permission to operate on the stack, CloudFormation uses this role even + // if the users don't have permission to pass it. Ensure that the role grants + // least permission. // // If you don't specify a value, CloudFormation uses the role that was previously // associated with the stack. If no role is available, CloudFormation uses a @@ -7772,14 +8061,14 @@ type CreateChangeSetInput struct { TemplateBody *string `min:"1" type:"string"` // The location of the file that contains the revised template. The URL must - // point to a template (max size: 460,800 bytes) that is located in an S3 bucket - // or a Systems Manager document. CloudFormation generates the change set by - // comparing this template with the stack that you specified. + // point to a template (max size: 460,800 bytes) that's located in an Amazon + // S3 bucket or a Systems Manager document. CloudFormation generates the change + // set by comparing this template with the stack that you specified. // // Conditional: You must specify only TemplateBody or TemplateURL. TemplateURL *string `min:"1" type:"string"` - // Whether to reuse the template that is associated with the stack to create + // Whether to reuse the template that's associated with the stack to create // the change set. UsePreviousTemplate *bool `type:"boolean"` } @@ -8053,7 +8342,7 @@ type CreateStackInput struct { // on an underlying Lambda service function for processing stack templates. // Be aware that the Lambda function owner can update the function operation // without CloudFormation being notified. For more information, see Using - // CloudFormation Macros to Perform Custom Processing on Templates (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html). + // CloudFormation macros to perform custom processing on templates (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html). Capabilities []*string `type:"list"` // A unique identifier for this CreateStack request. Specify this token if you @@ -8061,7 +8350,7 @@ type CreateStackInput struct { // to create a stack with the same name. You might retry CreateStack requests // to ensure that CloudFormation successfully received them. // - // All events triggered by a given stack operation are assigned the same client + // All events initiated by a given stack operation are assigned the same client // request token, which you can use to track operations. For example, if you // execute a CreateStack operation with the token token1, then all the StackEvents // generated by that operation will have ClientRequestToken set as token1. @@ -8083,17 +8372,17 @@ type CreateStackInput struct { // attempts to delete a stack with termination protection enabled, the operation // fails and the stack remains unchanged. For more information, see Protecting // a Stack From Being Deleted (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-protect-stacks.html) - // in the CloudFormation User Guide. Termination protection is disabled on stacks - // by default. + // in the CloudFormation User Guide. Termination protection is deactivated on + // stacks by default. // // For nested stacks (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html), - // termination protection is set on the root stack and cannot be changed directly + // termination protection is set on the root stack and can't be changed directly // on the nested stack. EnableTerminationProtection *bool `type:"boolean"` - // The Simple Notification Service (SNS) topic ARNs to publish stack related - // events. You can find your SNS topic ARNs using the SNS console or your Command - // Line Interface (CLI). + // The Amazon Simple Notification Service (Amazon SNS) topic ARNs to publish + // stack related events. You can find your Amazon SNS topic ARNs using the Amazon + // SNS console or your Command Line Interface (CLI). NotificationARNs []*string `type:"list"` // Determines what action will be taken if stack creation fails. This must be @@ -8126,25 +8415,25 @@ type CreateStackInput struct { // The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) // role that CloudFormation assumes to create the stack. CloudFormation uses // the role's credentials to make calls on your behalf. CloudFormation always - // uses this role for all future operations on the stack. As long as users have - // permission to operate on the stack, CloudFormation uses this role even if - // the users don't have permission to pass it. Ensure that the role grants least - // privilege. + // uses this role for all future operations on the stack. Provided that users + // have permission to operate on the stack, CloudFormation uses this role even + // if the users don't have permission to pass it. Ensure that the role grants + // least privilege. // // If you don't specify a value, CloudFormation uses the role that was previously // associated with the stack. If no role is available, CloudFormation uses a - // temporary session that is generated from your user credentials. + // temporary session that's generated from your user credentials. RoleARN *string `min:"20" type:"string"` // The rollback triggers for CloudFormation to monitor during stack creation // and updating operations, and for the specified monitoring period afterwards. RollbackConfiguration *RollbackConfiguration `type:"structure"` - // The name that is associated with the stack. The name must be unique in the + // The name that's associated with the stack. The name must be unique in the // Region in which you are creating the stack. // // A stack name can contain only alphanumeric characters (case sensitive) and - // hyphens. It must start with an alphabetical character and cannot be longer + // hyphens. It must start with an alphabetical character and can't be longer // than 128 characters. // // StackName is a required field @@ -8168,7 +8457,7 @@ type CreateStackInput struct { Tags []*Tag `type:"list"` // Structure containing the template body with a minimum length of 1 byte and - // a maximum length of 51,200 bytes. For more information, go to Template Anatomy + // a maximum length of 51,200 bytes. For more information, go to Template anatomy // (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html) // in the CloudFormation User Guide. // @@ -8177,8 +8466,8 @@ type CreateStackInput struct { TemplateBody *string `min:"1" type:"string"` // Location of file containing the template body. The URL must point to a template - // (max size: 460,800 bytes) that is located in an Amazon S3 bucket or a Systems - // Manager document. For more information, go to the Template Anatomy (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html) + // (max size: 460,800 bytes) that's located in an Amazon S3 bucket or a Systems + // Manager document. For more information, go to the Template anatomy (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html) // in the CloudFormation User Guide. // // Conditional: You must specify either the TemplateBody or the TemplateURL @@ -8386,7 +8675,7 @@ type CreateStackInstancesInput struct { CallAs *string `type:"string" enum:"CallAs"` // [Service-managed permissions] The Organizations accounts for which to create - // stack instances in the specified Regions. + // stack instances in the specified Amazon Web Services Regions. // // You can specify Accounts or DeploymentTargets, but not both. DeploymentTargets *DeploymentTargets `type:"structure"` @@ -8411,34 +8700,33 @@ type CreateStackInstancesInput struct { // stack instances. // // Any overridden parameter values will be applied to all stack instances in - // the specified accounts and Regions. When specifying parameters and their - // values, be aware of how CloudFormation sets parameter values during stack - // instance operations: + // the specified accounts and Amazon Web Services Regions. When specifying parameters + // and their values, be aware of how CloudFormation sets parameter values during + // stack instance operations: // // * To override the current value for a parameter, include the parameter // and specify its value. // // * To leave an overridden parameter set to its present value, include the - // parameter and specify UsePreviousValue as true. (You cannot specify both + // parameter and specify UsePreviousValue as true. (You can't specify both // a value and set UsePreviousValue to true.) // // * To set an overridden parameter back to the value specified in the stack - // set, specify a parameter list but do not include the parameter in the - // list. + // set, specify a parameter list but don't include the parameter in the list. // - // * To leave all parameters set to their present values, do not specify - // this property at all. + // * To leave all parameters set to their present values, don't specify this + // property at all. // // During stack set updates, any parameter values overridden for a stack instance - // are not updated, but retain their overridden value. + // aren't updated, but retain their overridden value. // // You can only override the parameter values that are specified in the stack // set; to add or delete a parameter itself, use UpdateStackSet (https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_UpdateStackSet.html) // to update the stack set template. ParameterOverrides []*Parameter `type:"list"` - // The names of one or more Regions where you want to create stack instances - // using the specified Amazon Web Services accounts. + // The names of one or more Amazon Web Services Regions where you want to create + // stack instances using the specified Amazon Web Services accounts. // // Regions is a required field Regions []*string `type:"list" required:"true"` @@ -8678,7 +8966,7 @@ type CreateStackSetInput struct { // resulting changes in a change set. To create the stack set directly, you // must acknowledge this capability. For more information, see Using CloudFormation // Macros to Perform Custom Processing on Templates (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html). - // Stack sets with service-managed permissions do not currently support the + // Stack sets with service-managed permissions don't currently support the // use of macros in templates. (This includes the AWS::Include (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html) // and AWS::Serverless (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html) // transforms, which are macros hosted by CloudFormation.) Even if you specify @@ -9051,7 +9339,7 @@ type DeleteChangeSetInput struct { ChangeSetName *string `min:"1" type:"string" required:"true"` // If you specified the name of a change set to delete, specify the stack name - // or ID (ARN) that is associated with it. + // or Amazon Resource Name (ARN) that's associated with it. StackName *string `min:"1" type:"string"` } @@ -9136,7 +9424,7 @@ type DeleteStackInput struct { // to delete a stack with the same name. You might retry DeleteStack requests // to ensure that CloudFormation successfully received them. // - // All events triggered by a given stack operation are assigned the same client + // All events initiated by a given stack operation are assigned the same client // request token, which you can use to track operations. For example, if you // execute a CreateStack operation with the token token1, then all the StackEvents // generated by that operation will have ClientRequestToken set as token1. @@ -9150,10 +9438,10 @@ type DeleteStackInput struct { // For stacks in the DELETE_FAILED state, a list of resource logical IDs that // are associated with the resources you want to retain. During deletion, CloudFormation - // deletes the stack but does not delete the retained resources. + // deletes the stack but doesn't delete the retained resources. // - // Retaining resources is useful when you cannot delete a resource, such as - // a non-empty S3 bucket, but you want to delete the stack. + // Retaining resources is useful when you can't delete a resource, such as a + // non-empty S3 bucket, but you want to delete the stack. RetainResources []*string `type:"list"` // The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) @@ -9162,10 +9450,10 @@ type DeleteStackInput struct { // // If you don't specify a value, CloudFormation uses the role that was previously // associated with the stack. If no role is available, CloudFormation uses a - // temporary session that is generated from your user credentials. + // temporary session that's generated from your user credentials. RoleARN *string `min:"20" type:"string"` - // The name or the unique stack ID that is associated with the stack. + // The name or the unique stack ID that's associated with the stack. // // StackName is a required field StackName *string `type:"string" required:"true"` @@ -9279,7 +9567,7 @@ type DeleteStackInstancesInput struct { // Preferences for how CloudFormation performs this stack set operation. OperationPreferences *StackSetOperationPreferences `type:"structure"` - // The Regions where you want to delete stack set instances. + // The Amazon Web Services Regions where you want to delete stack set instances. // // Regions is a required field Regions []*string `type:"list" required:"true"` @@ -9543,7 +9831,7 @@ func (s DeleteStackSetOutput) GoString() string { } // [Service-managed permissions] The Organizations accounts to which StackSets -// deploys. StackSets does not deploy stack instances to the organization management +// deploys. StackSets doesn't deploy stack instances to the organization management // account, even if the organization management account is in your organization // or in an OU in your organization. // @@ -9805,6 +10093,176 @@ func (s *DescribeAccountLimitsOutput) SetNextToken(v string) *DescribeAccountLim return s } +type DescribeChangeSetHooksInput struct { + _ struct{} `type:"structure"` + + // The name or Amazon Resource Name (ARN) of the change set that you want to + // describe. + // + // ChangeSetName is a required field + ChangeSetName *string `min:"1" type:"string" required:"true"` + + // If specified, lists only the hooks related to the specified LogicalResourceId. + LogicalResourceId *string `type:"string"` + + // A string, provided by the DescribeChangeSetHooks response output, that identifies + // the next page of information that you want to retrieve. + NextToken *string `min:"1" type:"string"` + + // If you specified the name of a change set, specify the stack name or stack + // ID (ARN) of the change set you want to describe. + StackName *string `min:"1" type:"string"` +} + +// String returns the string representation. +// +// API parameter values that are decorated as "sensitive" in the API will not +// be included in the string output. The member name will be present, but the +// value will be replaced with "sensitive". +func (s DescribeChangeSetHooksInput) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation. +// +// API parameter values that are decorated as "sensitive" in the API will not +// be included in the string output. The member name will be present, but the +// value will be replaced with "sensitive". +func (s DescribeChangeSetHooksInput) GoString() string { + return s.String() +} + +// Validate inspects the fields of the type to determine if they are valid. +func (s *DescribeChangeSetHooksInput) Validate() error { + invalidParams := request.ErrInvalidParams{Context: "DescribeChangeSetHooksInput"} + if s.ChangeSetName == nil { + invalidParams.Add(request.NewErrParamRequired("ChangeSetName")) + } + if s.ChangeSetName != nil && len(*s.ChangeSetName) < 1 { + invalidParams.Add(request.NewErrParamMinLen("ChangeSetName", 1)) + } + if s.NextToken != nil && len(*s.NextToken) < 1 { + invalidParams.Add(request.NewErrParamMinLen("NextToken", 1)) + } + if s.StackName != nil && len(*s.StackName) < 1 { + invalidParams.Add(request.NewErrParamMinLen("StackName", 1)) + } + + if invalidParams.Len() > 0 { + return invalidParams + } + return nil +} + +// SetChangeSetName sets the ChangeSetName field's value. +func (s *DescribeChangeSetHooksInput) SetChangeSetName(v string) *DescribeChangeSetHooksInput { + s.ChangeSetName = &v + return s +} + +// SetLogicalResourceId sets the LogicalResourceId field's value. +func (s *DescribeChangeSetHooksInput) SetLogicalResourceId(v string) *DescribeChangeSetHooksInput { + s.LogicalResourceId = &v + return s +} + +// SetNextToken sets the NextToken field's value. +func (s *DescribeChangeSetHooksInput) SetNextToken(v string) *DescribeChangeSetHooksInput { + s.NextToken = &v + return s +} + +// SetStackName sets the StackName field's value. +func (s *DescribeChangeSetHooksInput) SetStackName(v string) *DescribeChangeSetHooksInput { + s.StackName = &v + return s +} + +type DescribeChangeSetHooksOutput struct { + _ struct{} `type:"structure"` + + // The change set identifier (stack ID). + ChangeSetId *string `min:"1" type:"string"` + + // The change set name. + ChangeSetName *string `min:"1" type:"string"` + + // List of hook objects. + Hooks []*ChangeSetHook `type:"list"` + + // Pagination token, null or empty if no more results. + NextToken *string `min:"1" type:"string"` + + // The stack identifier (stack ID). + StackId *string `type:"string"` + + // The stack name. + StackName *string `type:"string"` + + // Provides the status of the change set hook. + Status *string `type:"string" enum:"ChangeSetHooksStatus"` +} + +// String returns the string representation. +// +// API parameter values that are decorated as "sensitive" in the API will not +// be included in the string output. The member name will be present, but the +// value will be replaced with "sensitive". +func (s DescribeChangeSetHooksOutput) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation. +// +// API parameter values that are decorated as "sensitive" in the API will not +// be included in the string output. The member name will be present, but the +// value will be replaced with "sensitive". +func (s DescribeChangeSetHooksOutput) GoString() string { + return s.String() +} + +// SetChangeSetId sets the ChangeSetId field's value. +func (s *DescribeChangeSetHooksOutput) SetChangeSetId(v string) *DescribeChangeSetHooksOutput { + s.ChangeSetId = &v + return s +} + +// SetChangeSetName sets the ChangeSetName field's value. +func (s *DescribeChangeSetHooksOutput) SetChangeSetName(v string) *DescribeChangeSetHooksOutput { + s.ChangeSetName = &v + return s +} + +// SetHooks sets the Hooks field's value. +func (s *DescribeChangeSetHooksOutput) SetHooks(v []*ChangeSetHook) *DescribeChangeSetHooksOutput { + s.Hooks = v + return s +} + +// SetNextToken sets the NextToken field's value. +func (s *DescribeChangeSetHooksOutput) SetNextToken(v string) *DescribeChangeSetHooksOutput { + s.NextToken = &v + return s +} + +// SetStackId sets the StackId field's value. +func (s *DescribeChangeSetHooksOutput) SetStackId(v string) *DescribeChangeSetHooksOutput { + s.StackId = &v + return s +} + +// SetStackName sets the StackName field's value. +func (s *DescribeChangeSetHooksOutput) SetStackName(v string) *DescribeChangeSetHooksOutput { + s.StackName = &v + return s +} + +// SetStatus sets the Status field's value. +func (s *DescribeChangeSetHooksOutput) SetStatus(v string) *DescribeChangeSetHooksOutput { + s.Status = &v + return s +} + // The input for the DescribeChangeSet action. type DescribeChangeSetInput struct { _ struct{} `type:"structure"` @@ -9890,7 +10348,7 @@ type DescribeChangeSetOutput struct { // acknowledged when the change set was created. Capabilities []*string `type:"list"` - // The ARN of the change set. + // The Amazon Resource Name (ARN) of the change set. ChangeSetId *string `min:"1" type:"string"` // The name of the change set. @@ -9907,10 +10365,9 @@ type DescribeChangeSetOutput struct { Description *string `min:"1" type:"string"` // If the change set execution status is AVAILABLE, you can execute the change - // set. If you can’t execute the change set, the status indicates why. For - // example, a change set might be in an UNAVAILABLE state because CloudFormation - // is still creating it or in an OBSOLETE state because the stack was already - // updated. + // set. If you can't execute the change set, the status indicates why. For example, + // a change set might be in an UNAVAILABLE state because CloudFormation is still + // creating it or in an OBSOLETE state because the stack was already updated. ExecutionStatus *string `type:"string" enum:"ExecutionStatus"` // Verifies if IncludeNestedStacks is set to True. @@ -9942,10 +10399,11 @@ type DescribeChangeSetOutput struct { // change set hierarchy. RootChangeSetId *string `min:"1" type:"string"` - // The ARN of the stack that is associated with the change set. + // The Amazon Resource Name (ARN) of the stack that's associated with the change + // set. StackId *string `type:"string"` - // The name of the stack that is associated with the change set. + // The name of the stack that's associated with the change set. StackName *string `type:"string"` // The current status of the change set, such as CREATE_IN_PROGRESS, CREATE_COMPLETE, @@ -10098,7 +10556,7 @@ type DescribePublisherInput struct { // The ID of the extension publisher. // - // If you do not supply a PublisherId, and you have registered as an extension + // If you don't supply a PublisherId, and you have registered as an extension // publisher, DescribePublisher returns information about your own publisher // account. PublisherId *string `min:"1" type:"string"` @@ -10261,7 +10719,7 @@ type DescribeStackDriftDetectionStatusOutput struct { // // * DETECTION_COMPLETE: The stack drift detection operation has successfully // completed for all resources in the stack that support drift detection. - // (Resources that do not currently support stack detection remain unchecked.) + // (Resources that don't currently support stack detection remain unchecked.) // If you specified logical resource IDs for CloudFormation to use as a filter // for the stack drift detection operation, only the resources with those // logical IDs are checked for drift. @@ -10299,7 +10757,7 @@ type DescribeStackDriftDetectionStatusOutput struct { // A stack is considered to have drifted if one or more of its resources // have drifted. // - // * NOT_CHECKED: CloudFormation has not checked if the stack differs from + // * NOT_CHECKED: CloudFormation hasn't checked if the stack differs from // its expected template configuration. // // * IN_SYNC: The stack's actual configuration matches its expected template @@ -10386,8 +10844,8 @@ type DescribeStackEventsInput struct { // A string that identifies the next page of events that you want to retrieve. NextToken *string `min:"1" type:"string"` - // The name or the unique stack ID that is associated with the stack, which - // are not always interchangeable: + // The name or the unique stack ID that's associated with the stack, which aren't + // always interchangeable: // // * Running stacks: You can specify either the stack's name or its unique // stack ID. @@ -10638,10 +11096,10 @@ type DescribeStackResourceDriftsInput struct { // * MODIFIED: One or more resource properties differ from their expected // template values. // - // * IN_SYNC: The resources's actual configuration matches its expected template + // * IN_SYNC: The resource's actual configuration matches its expected template // configuration. // - // * NOT_CHECKED: CloudFormation does not currently return this value. + // * NOT_CHECKED: CloudFormation doesn't currently return this value. StackResourceDriftStatusFilters []*string `min:"1" type:"list"` } @@ -10726,9 +11184,9 @@ type DescribeStackResourceDriftsOutput struct { // resources where CloudFormation detects drift. // // For a given stack, there will be one StackResourceDrift for each stack resource - // that has been checked for drift. Resources that have not yet been checked - // for drift are not included. Resources that do not currently support drift - // detection are not checked, and so not included. For a list of resources that + // that has been checked for drift. Resources that haven't yet been checked + // for drift aren't included. Resources that do not currently support drift + // detection aren't checked, and so not included. For a list of resources that // support drift detection, see Resources that Support Drift Detection (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift-resource-list.html). // // StackResourceDrifts is a required field @@ -10776,8 +11234,8 @@ type DescribeStackResourceInput struct { // LogicalResourceId is a required field LogicalResourceId *string `type:"string" required:"true"` - // The name or the unique stack ID that is associated with the stack, which - // are not always interchangeable: + // The name or the unique stack ID that's associated with the stack, which aren't + // always interchangeable: // // * Running stacks: You can specify either the stack's name or its unique // stack ID. @@ -10886,14 +11344,14 @@ type DescribeStackResourcesInput struct { // to find which stack the instance belongs to and what other resources are // part of the stack. // - // Required: Conditional. If you do not specify PhysicalResourceId, you must + // Required: Conditional. If you don't specify PhysicalResourceId, you must // specify StackName. // // Default: There is no default value. PhysicalResourceId *string `type:"string"` // The name or the unique stack ID that is associated with the stack, which - // are not always interchangeable: + // aren't always interchangeable: // // * Running stacks: You can specify either the stack's name or its unique // stack ID. @@ -10902,8 +11360,7 @@ type DescribeStackResourcesInput struct { // // Default: There is no default value. // - // Required: Conditional. If you do not specify StackName, you must specify - // PhysicalResourceId. + // Required: Conditional. If you don't specify StackName, you must specify PhysicalResourceId. StackName *string `type:"string"` } @@ -11197,8 +11654,8 @@ type DescribeStacksInput struct { // A string that identifies the next page of stacks that you want to retrieve. NextToken *string `min:"1" type:"string"` - // The name or the unique stack ID that is associated with the stack, which - // are not always interchangeable: + // The name or the unique stack ID that's associated with the stack, which aren't + // always interchangeable: // // * Running stacks: You can specify either the stack's name or its unique // stack ID. @@ -11429,7 +11886,7 @@ type DescribeTypeOutput struct { ConfigurationSchema *string `min:"1" type:"string"` // The ID of the default version of the extension. The default version is used - // when the extension version is not specified. + // when the extension version isn't specified. // // This applies only to private extensions you have registered in your account. // For public extensions, both those provided by Amazon and published by third @@ -11494,7 +11951,7 @@ type DescribeTypeOutput struct { // The latest version of a public extension that is available for use. // - // This only applies if you specify a public extension, and you do not specify + // This only applies if you specify a public extension, and you don't specify // a version. For all other requests, CloudFormation returns null. LatestPublicVersion *string `min:"5" type:"string"` @@ -11527,12 +11984,12 @@ type DescribeTypeOutput struct { // * FULLY_MUTABLE: The resource type includes an update handler to process // updates to the type during stack update operations. // - // * IMMUTABLE: The resource type does not include an update handler, so - // the type cannot be updated and must instead be replaced during stack update + // * IMMUTABLE: The resource type doesn't include an update handler, so the + // type can't be updated and must instead be replaced during stack update // operations. // - // * NON_PROVISIONABLE: The resource type does not include all of the following - // handlers, and therefore cannot actually be provisioned. create read delete + // * NON_PROVISIONABLE: The resource type doesn't include all the following + // handlers, and therefore can't actually be provisioned. create read delete ProvisioningType *string `type:"string" enum:"ProvisioningType"` // The version number of a public third-party extension. @@ -11545,7 +12002,8 @@ type DescribeTypeOutput struct { // The publisher ID of the extension publisher. // // This applies only to public third-party extensions. For private registered - // extensions, and extensions provided by Amazon, CloudFormation returns null. + // extensions, and extensions provided by Amazon Web Services, CloudFormation + // returns null. PublisherId *string `min:"1" type:"string"` // For extensions that are modules, the public third-party extensions that must @@ -11576,10 +12034,10 @@ type DescribeTypeOutput struct { TypeName *string `min:"10" type:"string"` // The contract test status of the registered extension version. To return the - // extension test status of a specifc extension version, you must specify VersionId. + // extension test status of a specific extension version, you must specify VersionId. // // This applies only to registered private extension versions. CloudFormation - // does not return this information for public extensions, whether or not they + // doesn't return this information for public extensions, whether or not they // are activated in your account. // // * PASSED: The extension has passed all its contract tests. An extension @@ -11592,14 +12050,14 @@ type DescribeTypeOutput struct { // // * IN_PROGRESS: Contract tests are currently being performed on the extension. // - // * NOT_TESTED: Contract tests have not been performed on the extension. + // * NOT_TESTED: Contract tests haven't been performed on the extension. TypeTestsStatus *string `type:"string" enum:"TypeTestsStatus"` // The description of the test status. To return the extension test status of - // a specifc extension version, you must specify VersionId. + // a specific extension version, you must specify VersionId. // // This applies only to registered private extension versions. CloudFormation - // does not return this information for public extensions, whether or not they + // doesn't return this information for public extensions, whether or not they // are activated in your account. TypeTestsStatusDescription *string `min:"1" type:"string"` @@ -11612,7 +12070,7 @@ type DescribeTypeOutput struct { // in which it is registered. CloudFormation marks any extensions you register // as PRIVATE. // - // * PUBLIC: The extension is publically visible and usable within any Amazon + // * PUBLIC: The extension is publicly visible and usable within any Amazon // account. Visibility *string `type:"string" enum:"Visibility"` } @@ -12213,7 +12671,7 @@ type DetectStackSetDriftOutput struct { // The ID of the drift detection stack set operation. // - // you can use this operation id with DescribeStackSetOperation to monitor the + // You can use this operation ID with DescribeStackSetOperation to monitor the // progress of the drift detection operation. OperationId *string `min:"1" type:"string"` } @@ -12259,7 +12717,7 @@ type EstimateTemplateCostInput struct { TemplateBody *string `min:"1" type:"string"` // Location of file containing the template body. The URL must point to a template - // that is located in an Amazon S3 bucket or a Systems Manager document. For + // that's located in an Amazon S3 bucket or a Systems Manager document. For // more information, go to Template Anatomy (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html) // in the CloudFormation User Guide. // @@ -12357,8 +12815,8 @@ func (s *EstimateTemplateCostOutput) SetUrl(v string) *EstimateTemplateCostOutpu type ExecuteChangeSetInput struct { _ struct{} `type:"structure"` - // The name or ARN of the change set that you want use to update the specified - // stack. + // The name or Amazon Resource Name (ARN) of the change set that you want use + // to update the specified stack. // // ChangeSetName is a required field ChangeSetName *string `min:"1" type:"string" required:"true"` @@ -12376,8 +12834,8 @@ type ExecuteChangeSetInput struct { // Default: True DisableRollback *bool `type:"boolean"` - // If you specified the name of a change set, specify the stack name or ID (ARN) - // that is associated with the change set you want to execute. + // If you specified the name of a change set, specify the stack name or Amazon + // Resource Name (ARN) that's associated with the change set you want to execute. StackName *string `min:"1" type:"string"` } @@ -12525,7 +12983,7 @@ func (s *Export) SetValue(v string) *Export { type GetStackPolicyInput struct { _ struct{} `type:"structure"` - // The name or unique stack ID that is associated with the stack whose policy + // The name or unique stack ID that's associated with the stack whose policy // you want to get. // // StackName is a required field @@ -12612,8 +13070,8 @@ type GetTemplateInput struct { // the StackName. ChangeSetName *string `min:"1" type:"string"` - // The name or the unique stack ID that is associated with the stack, which - // are not always interchangeable: + // The name or the unique stack ID that's associated with the stack, which aren't + // always interchangeable: // // * Running stacks: You can specify either the stack's name or its unique // stack ID. @@ -12750,10 +13208,10 @@ type GetTemplateSummaryInput struct { // in the CloudFormation User Guide. CallAs *string `type:"string" enum:"CallAs"` - // The name or the stack ID that is associated with the stack, which are not - // always interchangeable. For running stacks, you can specify either the stack's - // name or its unique stack ID. For deleted stack, you must specify the unique - // stack ID. + // The name or the stack ID that's associated with the stack, which aren't always + // interchangeable. For running stacks, you can specify either the stack's name + // or its unique stack ID. For deleted stack, you must specify the unique stack + // ID. // // Conditional: You must specify only one of the following parameters: StackName, // StackSetName, TemplateBody, or TemplateURL. @@ -12767,7 +13225,7 @@ type GetTemplateSummaryInput struct { // Structure containing the template body with a minimum length of 1 byte and // a maximum length of 51,200 bytes. For more information about templates, see - // Template Anatomy (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html) + // Template anatomy (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html) // in the CloudFormation User Guide. // // Conditional: You must specify only one of the following parameters: StackName, @@ -12775,8 +13233,8 @@ type GetTemplateSummaryInput struct { TemplateBody *string `min:"1" type:"string"` // Location of file containing the template body. The URL must point to a template - // (max size: 460,800 bytes) that is located in an Amazon S3 bucket or a Systems - // Manager document. For more information about templates, see Template Anatomy + // (max size: 460,800 bytes) that's located in an Amazon S3 bucket or a Systems + // Manager document. For more information about templates, see Template anatomy // (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html) // in the CloudFormation User Guide. // @@ -12873,10 +13331,10 @@ type GetTemplateSummaryOutput struct { // A list of the transforms that are declared in the template. DeclaredTransforms []*string `type:"list"` - // The value that is defined in the Description property of the template. + // The value that's defined in the Description property of the template. Description *string `min:"1" type:"string"` - // The value that is defined for the Metadata property of the template. + // The value that's defined for the Metadata property of the template. Metadata *string `type:"string"` // A list of parameter declarations that describe various properties for each @@ -12991,8 +13449,8 @@ type ImportStacksToStackSetInput struct { // see Stack set operation options (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-ops-options). OperationPreferences *StackSetOperationPreferences `type:"structure"` - // The list of OU ID’s to which the stacks being imported has to be mapped - // as deployment target. + // The list of OU ID's to which the stacks being imported has to be mapped as + // deployment target. OrganizationalUnitIds []*string `type:"list"` // The IDs of the stacks you are importing into a stack set. You import up to @@ -13563,8 +14021,8 @@ func (s *ListStackInstancesInput) SetStackSetName(v string) *ListStackInstancesI type ListStackInstancesOutput struct { _ struct{} `type:"structure"` - // If the request doesn't return all of the remaining results, NextToken is - // set to a token. To retrieve the next set of results, call ListStackInstances + // If the request doesn't return all the remaining results, NextToken is set + // to a token. To retrieve the next set of results, call ListStackInstances // again and assign that token to the request object's NextToken parameter. // If the request returns all results, NextToken is set to null. NextToken *string `min:"1" type:"string"` @@ -13613,7 +14071,7 @@ type ListStackResourcesInput struct { NextToken *string `min:"1" type:"string"` // The name or the unique stack ID that is associated with the stack, which - // are not always interchangeable: + // aren't always interchangeable: // // * Running stacks: You can specify either the stack's name or its unique // stack ID. @@ -13841,8 +14299,8 @@ type ListStackSetOperationResultsOutput struct { NextToken *string `min:"1" type:"string"` // A list of StackSetOperationResultSummary structures that contain information - // about the specified operation results, for accounts and Regions that are - // included in the operation. + // about the specified operation results, for accounts and Amazon Web Services + // Regions that are included in the operation. Summaries []*StackSetOperationResultSummary `type:"list"` } @@ -14045,7 +14503,7 @@ type ListStackSetsInput struct { // set of results. MaxResults *int64 `min:"1" type:"integer"` - // If the previous paginated request didn't return all of the remaining results, + // If the previous paginated request didn't return all the remaining results, // the response object's NextToken parameter value is set to a token. To retrieve // the next set of results, call ListStackSets again and assign that token to // the request object's NextToken parameter. If there are no remaining results, @@ -14266,7 +14724,7 @@ type ListTypeRegistrationsInput struct { // set of results. MaxResults *int64 `min:"1" type:"integer"` - // If the previous paginated request didn't return all of the remaining results, + // If the previous paginated request didn't return all the remaining results, // the response object's NextToken parameter value is set to a token. To retrieve // the next set of results, call this action again and assign that token to // the request object's NextToken parameter. If there are no remaining results, @@ -14451,7 +14909,7 @@ type ListTypeVersionsInput struct { // The publisher ID of the extension publisher. // - // Extensions published by Amazon are not assigned a publisher ID. + // Extensions published by Amazon aren't assigned a publisher ID. PublisherId *string `min:"1" type:"string"` // The kind of the extension. @@ -14634,12 +15092,12 @@ type ListTypesInput struct { // * FULLY_MUTABLE: The resource type includes an update handler to process // updates to the type during stack update operations. // - // * IMMUTABLE: The resource type does not include an update handler, so - // the type cannot be updated and must instead be replaced during stack update + // * IMMUTABLE: The resource type doesn't include an update handler, so the + // type can't be updated and must instead be replaced during stack update // operations. // - // * NON_PROVISIONABLE: The resource type does not include create, read, - // and delete handlers, and therefore cannot actually be provisioned. + // * NON_PROVISIONABLE: The resource type doesn't include create, read, and + // delete handlers, and therefore can't actually be provisioned. // // The default is FULLY_MUTABLE. ProvisioningType *string `type:"string" enum:"ProvisioningType"` @@ -14749,10 +15207,10 @@ func (s *ListTypesInput) SetVisibility(v string) *ListTypesInput { type ListTypesOutput struct { _ struct{} `type:"structure"` - // If the request doesn't return all of the remaining results, NextToken is - // set to a token. To retrieve the next set of results, call this action again - // and assign that token to the request object's NextToken parameter. If the - // request returns all results, NextToken is set to null. + // If the request doesn't return all the remaining results, NextToken is set + // to a token. To retrieve the next set of results, call this action again and + // assign that token to the request object's NextToken parameter. If the request + // returns all results, NextToken is set to null. NextToken *string `min:"1" type:"string"` // A list of TypeSummary structures that contain information about the specified @@ -14794,14 +15252,14 @@ func (s *ListTypesOutput) SetTypeSummaries(v []*TypeSummary) *ListTypesOutput { type LoggingConfig struct { _ struct{} `type:"structure"` - // The Amazon CloudWatch log group to which CloudFormation sends error logging + // The Amazon CloudWatch Logs group to which CloudFormation sends error logging // information when invoking the extension's handlers. // // LogGroupName is a required field LogGroupName *string `min:"1" type:"string" required:"true"` - // The ARN of the role that CloudFormation should assume when sending log entries - // to CloudWatch logs. + // The Amazon Resource Name (ARN) of the role that CloudFormation should assume + // when sending log entries to CloudWatch Logs. // // LogRoleArn is a required field LogRoleArn *string `min:"1" type:"string" required:"true"` @@ -14912,12 +15370,12 @@ func (s *ManagedExecution) SetActive(v bool) *ManagedExecution { type ModuleInfo struct { _ struct{} `type:"structure"` - // A concantenated list of the logical IDs of the module or modules containing + // A concatenated list of the logical IDs of the module or modules containing // the resource. Modules are listed starting with the inner-most nested module, // and separated by /. // // In the following example, the resource was created from a module, moduleA, - // that is nested inside a parent module, moduleB. + // that's nested inside a parent module, moduleB. // // moduleA/moduleB // @@ -14925,12 +15383,12 @@ type ModuleInfo struct { // in the CloudFormation User Guide. LogicalIdHierarchy *string `type:"string"` - // A concantenated list of the the module type or types containing the resource. + // A concatenated list of the module type or types containing the resource. // Module types are listed starting with the inner-most nested module, and separated // by /. // // In the following example, the resource was created from a module of type - // AWS::First::Example::MODULE, that is nested inside a parent module of type + // AWS::First::Example::MODULE, that's nested inside a parent module of type // AWS::Second::Example::MODULE. // // AWS::First::Example::MODULE/AWS::Second::Example::MODULE @@ -15031,15 +15489,15 @@ type Parameter struct { _ struct{} `type:"structure"` // The key associated with the parameter. If you don't specify a key and value - // for a particular parameter, CloudFormation uses the default value that is + // for a particular parameter, CloudFormation uses the default value that's // specified in your template. ParameterKey *string `type:"string"` // The input value associated with the parameter. ParameterValue *string `type:"string"` - // Read-only. Read-only. The value that corresponds to a SSM parameter key. - // This field is returned only for SSM (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/parameters-section-structure.html#aws-ssm-parameter-types) + // Read-only. The value that corresponds to a SSM parameter key. This field + // is returned only for SSM (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/parameters-section-structure.html#aws-ssm-parameter-types) // parameter types in the template. ResolvedValue *string `type:"string"` @@ -15132,7 +15590,7 @@ type ParameterDeclaration struct { // The default value of the parameter. DefaultValue *string `type:"string"` - // The description that is associate with the parameter. + // The description that's associate with the parameter. Description *string `min:"1" type:"string"` // Flag that indicates whether the parameter value is shown as plain text in @@ -15142,7 +15600,7 @@ type ParameterDeclaration struct { // The criteria that CloudFormation uses to validate parameter values. ParameterConstraints *ParameterConstraints `type:"structure"` - // The name that is associated with the parameter. + // The name that's associated with the parameter. ParameterKey *string `type:"string"` // The type of parameter. @@ -15205,8 +15663,8 @@ func (s *ParameterDeclaration) SetParameterType(v string) *ParameterDeclaration // Context information that enables CloudFormation to uniquely identify a resource. // CloudFormation uses context key-value pairs in cases where a resource's logical -// and physical IDs are not enough to uniquely identify that resource. Each -// context key-value pair specifies a resource that contains the targeted resource. +// and physical IDs aren't enough to uniquely identify that resource. Each context +// key-value pair specifies a resource that contains the targeted resource. type PhysicalResourceIdContextKeyValuePair struct { _ struct{} `type:"structure"` @@ -15266,8 +15724,8 @@ type PropertyDifference struct { // The type of property difference. // - // * ADD: A value has been added to a resource property that is an array - // or list data type. + // * ADD: A value has been added to a resource property that's an array or + // list data type. // // * REMOVE: The property has been removed from the current resource configuration. // @@ -15349,7 +15807,7 @@ type PublishTypeInput struct { // // For more information, see Semantic Versioning 2.0.0 (https://semver.org/). // - // If you do not specify a version number, CloudFormation increments the version + // If you don't specify a version number, CloudFormation increments the version // number by one minor version release. // // You cannot specify a version number the first time you publish a type. CloudFormation @@ -15691,7 +16149,7 @@ type RegisterTypeInput struct { // A unique identifier that acts as an idempotency key for this registration // request. Specifying a client request token prevents CloudFormation from generating - // more than one version of an extension from the same registeration request, + // more than one version of an extension from the same registration request, // even if the request is submitted multiple times. ClientRequestToken *string `min:"1" type:"string"` @@ -15716,15 +16174,15 @@ type RegisterTypeInput struct { // Specifies logging configuration information for an extension. LoggingConfig *LoggingConfig `type:"structure"` - // A url to the S3 bucket containing the extension project package that contains - // the neccessary files for the extension you want to register. + // A URL to the S3 bucket containing the extension project package that contains + // the necessary files for the extension you want to register. // // For information on generating a schema handler package for the extension // you want to register, see submit (https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-cli-submit.html) // in the CloudFormation CLI User Guide. // // The user registering the extension must be able to access the package in - // the S3 bucket. That is, the user needs to have GetObject (https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html) + // the S3 bucket. That's, the user needs to have GetObject (https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html) // permissions for the schema handler package. For more information, see Actions, // Resources, and Condition Keys for Amazon S3 (https://docs.aws.amazon.com/IAM/latest/UserGuide/list_amazons3.html) // in the Identity and Access Management User Guide. @@ -15743,8 +16201,8 @@ type RegisterTypeInput struct { // // * For modules, company_or_organization::service::type::MODULE. // - // The following organization namespaces are reserved and cannot be used in - // your extension names: + // The following organization namespaces are reserved and can't be used in your + // extension names: // // * Alexa // @@ -15964,7 +16422,7 @@ type ResourceChange struct { // The action that CloudFormation takes on the resource, such as Add (adds a // new resource), Modify (changes a resource), Remove (deletes a resource), - // Import (imports a resource), or Dynamic (exact action for the resource cannot + // Import (imports a resource), or Dynamic (exact action for the resource can't // be determined). Action *string `type:"string" enum:"ChangeAction"` @@ -16086,7 +16544,7 @@ type ResourceChangeDetail struct { _ struct{} `type:"structure"` // The identity of the entity that triggered this change. This entity is a member - // of the group that is specified by the ChangeSource field. For example, if + // of the group that's specified by the ChangeSource field. For example, if // you modified the value of the KeyPairName parameter, the CausingEntity is // the name of the parameter (KeyPairName). // @@ -16125,10 +16583,10 @@ type ResourceChangeDetail struct { // property of an EC2 instance, CloudFormation knows that this property value // will change, and its value, so this is a Static evaluation. // - // For Dynamic evaluations, cannot determine the target value because it depends + // For Dynamic evaluations, can't determine the target value because it depends // on the result of an intrinsic function, such as a Ref or Fn::GetAtt intrinsic // function, when the stack is updated. For example, if your template includes - // a reference to a resource that is conditionally recreated, the value of the + // a reference to a resource that's conditionally recreated, the value of the // reference (the physical ID of the resource) might change, depending on if // the resource is recreated. If the resource is recreated, it will have a new // physical ID, so all references to that resource will also be updated. @@ -16397,7 +16855,7 @@ type RollbackConfiguration struct { // // The default is 0 minutes. // - // If you specify a monitoring period but do not specify any rollback triggers, + // If you specify a monitoring period but don't specify any rollback triggers, // CloudFormation still waits the specified period of time before cleaning up // old resources after update operations. You can use this monitoring period // to perform any manual stack validation desired, and manually cancel the stack @@ -16422,7 +16880,7 @@ type RollbackConfiguration struct { // any, don't specify this parameter. // // * To specify new or updated rollback triggers, you must specify all the - // triggers that you want used for this stack, even triggers you've specifed + // triggers that you want used for this stack, even triggers you've specified // before (for example, when creating the stack or during a previous stack // update). Any triggers that you don't include in the updated list of triggers // are no longer applied to the stack. @@ -16495,7 +16953,7 @@ type RollbackStackInput struct { // that CloudFormation assumes to rollback the stack. RoleARN *string `min:"20" type:"string"` - // The name that is associated with the stack. + // The name that's associated with the stack. // // StackName is a required field StackName *string `min:"1" type:"string" required:"true"` @@ -16670,15 +17128,15 @@ type SetStackPolicyInput struct { StackName *string `type:"string" required:"true"` // Structure containing the stack policy body. For more information, go to Prevent - // Updates to Stack Resources (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html) + // updates to stack resources (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html) // in the CloudFormation User Guide. You can specify either the StackPolicyBody // or the StackPolicyURL parameter, but not both. StackPolicyBody *string `min:"1" type:"string"` // Location of a file containing the stack policy. The URL must point to a policy - // (maximum size: 16 KB) located in an S3 bucket in the same Region as the stack. - // You can specify either the StackPolicyBody or the StackPolicyURL parameter, - // but not both. + // (maximum size: 16 KB) located in an Amazon S3 bucket in the same Amazon Web + // Services Region as the stack. You can specify either the StackPolicyBody + // or the StackPolicyURL parameter, but not both. StackPolicyURL *string `min:"1" type:"string"` } @@ -17158,9 +17616,9 @@ type Stack struct { // Boolean to enable or disable rollback on stack creation failures: // - // * true: disable rollback + // * true: disable rollback. // - // * false: enable rollback + // * false: enable rollback. DisableRollback *bool `type:"boolean"` // Information on whether a stack's actual configuration differs, or has drifted, @@ -17182,7 +17640,8 @@ type Stack struct { // the stack has been updated at least once. LastUpdatedTime *time.Time `type:"timestamp"` - // SNS topic ARNs to which stack related events are published. + // Amazon SNS topic Amazon Resource Names (ARNs) to which stack related events + // are published. NotificationARNs []*string `type:"list"` // A list of output structures. @@ -17200,7 +17659,7 @@ type Stack struct { ParentId *string `type:"string"` // The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) - // role that is associated with the stack. During a stack operation, CloudFormation + // role that's associated with the stack. During a stack operation, CloudFormation // uses this role's credentials to make calls on your behalf. RoleARN *string `min:"20" type:"string"` @@ -17406,7 +17865,7 @@ type StackDriftInformation struct { // A stack is considered to have drifted if one or more of its resources // have drifted. // - // * NOT_CHECKED: CloudFormation has not checked if the stack differs from + // * NOT_CHECKED: CloudFormation hasn't checked if the stack differs from // its expected template configuration. // // * IN_SYNC: The stack's actual configuration matches its expected template @@ -17466,7 +17925,7 @@ type StackDriftInformationSummary struct { // A stack is considered to have drifted if one or more of its resources // have drifted. // - // * NOT_CHECKED: CloudFormation has not checked if the stack differs from + // * NOT_CHECKED: CloudFormation hasn't checked if the stack differs from // its expected template configuration. // // * IN_SYNC: The stack's actual configuration matches its expected template @@ -17531,6 +17990,26 @@ type StackEvent struct { // EventId is a required field EventId *string `type:"string" required:"true"` + // Specify the hook failure mode for non-compliant resources in the followings + // ways. + // + // * FAIL Stops provisioning resources. + // + // * WARN Allows provisioning to continue with a warning message. + HookFailureMode *string `type:"string" enum:"HookFailureMode"` + + // Invocation points are points in provisioning logic where hooks are initiated. + HookInvocationPoint *string `type:"string" enum:"HookInvocationPoint"` + + // Provides the status of the change set hook. + HookStatus *string `type:"string" enum:"HookStatus"` + + // Provides the reason for the hook status. + HookStatusReason *string `min:"1" type:"string"` + + // The name of the hook. + HookType *string `min:"1" type:"string"` + // The logical name of the resource specified in the template. LogicalResourceId *string `type:"string"` @@ -17598,6 +18077,36 @@ func (s *StackEvent) SetEventId(v string) *StackEvent { return s } +// SetHookFailureMode sets the HookFailureMode field's value. +func (s *StackEvent) SetHookFailureMode(v string) *StackEvent { + s.HookFailureMode = &v + return s +} + +// SetHookInvocationPoint sets the HookInvocationPoint field's value. +func (s *StackEvent) SetHookInvocationPoint(v string) *StackEvent { + s.HookInvocationPoint = &v + return s +} + +// SetHookStatus sets the HookStatus field's value. +func (s *StackEvent) SetHookStatus(v string) *StackEvent { + s.HookStatus = &v + return s +} + +// SetHookStatusReason sets the HookStatusReason field's value. +func (s *StackEvent) SetHookStatusReason(v string) *StackEvent { + s.HookStatusReason = &v + return s +} + +// SetHookType sets the HookType field's value. +func (s *StackEvent) SetHookType(v string) *StackEvent { + s.HookType = &v + return s +} + // SetLogicalResourceId sets the LogicalResourceId field's value. func (s *StackEvent) SetLogicalResourceId(v string) *StackEvent { s.LogicalResourceId = &v @@ -17657,8 +18166,8 @@ func (s *StackEvent) SetTimestamp(v time.Time) *StackEvent { // actual stack in a given account within a given Region. A stack instance can // exist without a stack—for example, if the stack couldn't be created for // some reason. A stack instance is associated with only one stack set. Each -// stack instance contains the ID of its associated stack set, as well as the -// ID of the actual stack and the stack status. +// stack instance contains the ID of its associated stack set, in addition to +// the ID of the actual stack and the stack status. type StackInstance struct { _ struct{} `type:"structure"` @@ -17674,7 +18183,7 @@ type StackInstance struct { // considered to have drifted if one or more of the resources in the associated // stack have drifted. // - // * NOT_CHECKED: CloudFormation has not checked if the stack instance differs + // * NOT_CHECKED: CloudFormation hasn't checked if the stack instance differs // from its expected stack set configuration. // // * IN_SYNC: The stack instance's actual configuration matches its expected @@ -17685,7 +18194,7 @@ type StackInstance struct { // Most recent time when CloudFormation performed a drift detection operation // on the stack instance. This value will be NULL for any stack instance on - // which drift detection has not yet been performed. + // which drift detection hasn't yet been performed. LastDriftCheckTimestamp *time.Time `type:"timestamp"` // [Service-managed permissions] The organization root ID or organizational @@ -17727,7 +18236,7 @@ type StackInstance struct { // * CURRENT: The stack is currently up to date with the stack set. Status *string `type:"string" enum:"StackInstanceStatus"` - // The explanation for the specific status code that is assigned to this stack + // The explanation for the specific status code that's assigned to this stack // instance. StatusReason *string `type:"string"` } @@ -17821,7 +18330,7 @@ type StackInstanceComprehensiveStatus struct { _ struct{} `type:"structure"` // * CANCELLED: The operation in the specified account and Region has been - // cancelled. This is either because a user has stopped the stack set operation, + // canceled. This is either because a user has stopped the stack set operation, // or because the failure tolerance of the stack set operation has been exceeded. // // * FAILED: The operation in the specified account and Region failed. If @@ -17939,7 +18448,7 @@ type StackInstanceSummary struct { // considered to have drifted if one or more of the resources in the associated // stack have drifted. // - // * NOT_CHECKED: CloudFormation has not checked if the stack instance differs + // * NOT_CHECKED: CloudFormation hasn't checked if the stack instance differs // from its expected stack set configuration. // // * IN_SYNC: The stack instance's actual configuration matches its expected @@ -17950,7 +18459,7 @@ type StackInstanceSummary struct { // Most recent time when CloudFormation performed a drift detection operation // on the stack instance. This value will be NULL for any stack instance on - // which drift detection has not yet been performed. + // which drift detection hasn't yet been performed. LastDriftCheckTimestamp *time.Time `type:"timestamp"` // [Service-managed permissions] The organization root ID or organizational @@ -18104,9 +18613,9 @@ type StackResource struct { // Success/failure message associated with the resource. ResourceStatusReason *string `type:"string"` - // Type of resource. (For more information, go to Amazon Web Services Resource + // Type of resource. For more information, go to Amazon Web Services Resource // Types Reference (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html) - // in the CloudFormation User Guide.) + // in the CloudFormation User Guide. // // ResourceType is a required field ResourceType *string `min:"1" type:"string" required:"true"` @@ -18251,9 +18760,9 @@ type StackResourceDetail struct { // Success/failure message associated with the resource. ResourceStatusReason *string `type:"string"` - // Type of resource. ((For more information, go to Amazon Web Services Resource + // Type of resource. For more information, go to Amazon Web Services Resource // Types Reference (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html) - // in the CloudFormation User Guide.) + // in the CloudFormation User Guide. // // ResourceType is a required field ResourceType *string `min:"1" type:"string" required:"true"` @@ -18361,7 +18870,7 @@ func (s *StackResourceDetail) SetStackName(v string) *StackResourceDetail { // in the stack template are checked for drift. For more information, see Detecting // Unregulated Configuration Changes to Stacks and Resources (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html). // -// Resources that do not currently support drift detection cannot be checked. +// Resources that don't currently support drift detection can't be checked. // For a list of resources that support drift detection, see Resources that // Support Drift Detection (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift-resource-list.html). // @@ -18399,9 +18908,8 @@ type StackResourceDrift struct { // Context information that enables CloudFormation to uniquely identify a resource. // CloudFormation uses context key-value pairs in cases where a resource's logical - // and physical IDs are not enough to uniquely identify that resource. Each - // context key-value pair specifies a unique resource that contains the targeted - // resource. + // and physical IDs aren't enough to uniquely identify that resource. Each context + // key-value pair specifies a unique resource that contains the targeted resource. PhysicalResourceIdContext []*PhysicalResourceIdContextKeyValuePair `type:"list"` // A collection of the resource properties whose actual values differ from their @@ -18419,7 +18927,7 @@ type StackResourceDrift struct { // StackId is a required field StackId *string `type:"string" required:"true"` - // Status of the resource's actual configuration compared to its expected configuration + // Status of the resource's actual configuration compared to its expected configuration. // // * DELETED: The resource differs from its expected template configuration // because the resource has been deleted. @@ -18428,7 +18936,7 @@ type StackResourceDrift struct { // values (as defined in the stack template and any values specified as template // parameters). // - // * IN_SYNC: The resources's actual configuration matches its expected template + // * IN_SYNC: The resource's actual configuration matches its expected template // configuration. // // * NOT_CHECKED: CloudFormation does not currently return this value. @@ -18547,7 +19055,7 @@ type StackResourceDriftInformation struct { // drift detection have a status of NOT_CHECKED. For more information, see // Resources that Support Drift Detection (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift-resource-list.html). // - // * IN_SYNC: The resources's actual configuration matches its expected configuration. + // * IN_SYNC: The resource's actual configuration matches its expected configuration. // // StackResourceDriftStatus is a required field StackResourceDriftStatus *string `type:"string" required:"true" enum:"StackResourceDriftStatus"` @@ -18592,15 +19100,15 @@ type StackResourceDriftInformationSummary struct { // configuration. LastCheckTimestamp *time.Time `type:"timestamp"` - // Status of the resource's actual configuration compared to its expected configuration + // Status of the resource's actual configuration compared to its expected configuration. // // * DELETED: The resource differs from its expected configuration in that // it has been deleted. // // * MODIFIED: The resource differs from its expected configuration. // - // * NOT_CHECKED: CloudFormation has not checked if the resource differs - // from its expected configuration. Any resources that do not currently support + // * NOT_CHECKED: CloudFormation hasn't checked if the resource differs from + // its expected configuration. Any resources that don't currently support // drift detection have a status of NOT_CHECKED. For more information, see // Resources that Support Drift Detection (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift-resource-list.html). // If you performed an ContinueUpdateRollback operation on a stack, any resources @@ -18609,7 +19117,7 @@ type StackResourceDriftInformationSummary struct { // Continue Rolling Back an Update (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-continueupdaterollback.html) // in the CloudFormation User Guide. // - // * IN_SYNC: The resources's actual configuration matches its expected configuration. + // * IN_SYNC: The resource's actual configuration matches its expected configuration. // // StackResourceDriftStatus is a required field StackResourceDriftStatus *string `type:"string" required:"true" enum:"StackResourceDriftStatus"` @@ -18758,8 +19266,8 @@ func (s *StackResourceSummary) SetResourceType(v string) *StackResourceSummary { // A structure that contains information about a stack set. A stack set enables // you to provision stacks into Amazon Web Services accounts and across Regions // by using a single CloudFormation template. In the stack set, you specify -// the template to use, as well as any parameters and capabilities that the -// template requires. +// the template to use, in addition to any parameters and capabilities that +// the template requires. type StackSet struct { _ struct{} `type:"structure"` @@ -18823,7 +19331,7 @@ type StackSet struct { // // For stack sets, contains information about the last completed drift operation // performed on the stack set. Information about drift operations currently - // in progress is not included. + // in progress isn't included. StackSetDriftDetectionDetails *StackSetDriftDetectionDetails `type:"structure"` // The ID of the stack set. @@ -18962,12 +19470,12 @@ func (s *StackSet) SetTemplateBody(v string) *StackSet { // // For stack sets, contains information about the last completed drift operation // performed on the stack set. Information about drift operations in-progress -// is not included. +// isn't included. // // For stack set operations, includes information about drift operations currently // being performed on the stack set. // -// For more information, see Detecting Unmanaged Changes in Stack Sets (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-drift.html) +// For more information, see Detecting unmanaged changes in stack sets (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-drift.html) // in the CloudFormation User Guide. type StackSetDriftDetectionDetails struct { _ struct{} `type:"structure"` @@ -18985,7 +19493,7 @@ type StackSetDriftDetectionDetails struct { // // * IN_PROGRESS: The drift detection operation is currently being performed. // - // * STOPPED: The user has cancelled the drift detection operation. + // * STOPPED: The user has canceled the drift detection operation. DriftDetectionStatus *string `type:"string" enum:"StackSetDriftDetectionStatus"` // Status of the stack set's actual configuration compared to its expected template @@ -18998,7 +19506,7 @@ type StackSetDriftDetectionDetails struct { // A stack instance is considered to have drifted if one or more of the resources // in the associated stack have drifted. // - // * NOT_CHECKED: CloudFormation has not checked the stack set for drift. + // * NOT_CHECKED: CloudFormation hasn't checked the stack set for drift. // // * IN_SYNC: All of the stack instances belonging to the stack set stack // match from the expected template and parameter configuration. @@ -19006,8 +19514,8 @@ type StackSetDriftDetectionDetails struct { // The number of stack instances that have drifted from the expected template // and parameter configuration of the stack set. A stack instance is considered - // to have drifted if one or more of the resources in the associated stack do - // not match their expected configuration. + // to have drifted if one or more of the resources in the associated stack don't + // match their expected configuration. DriftedStackInstancesCount *int64 `type:"integer"` // The number of stack instances for which the drift detection operation failed. @@ -19022,7 +19530,7 @@ type StackSetDriftDetectionDetails struct { // Most recent time when CloudFormation performed a drift detection operation // on the stack set. This value will be NULL for any stack set on which drift - // detection has not yet been performed. + // detection hasn't yet been performed. LastDriftCheckTimestamp *time.Time `type:"timestamp"` // The total number of stack instances belonging to this stack set. @@ -19112,7 +19620,7 @@ type StackSetOperation struct { // The type of stack set operation: CREATE, UPDATE, or DELETE. Create and delete // operations affect only the specified stack set instances that are associated // with the specified stack set. Update operations affect both the stack set - // itself, as well as all associated stack set instances. + // itself, in addition to all associated stack set instances. Action *string `type:"string" enum:"StackSetOperationAction"` // The Amazon Resource Number (ARN) of the IAM role used to perform this stack @@ -19154,7 +19662,7 @@ type StackSetOperation struct { // For stack set operations of action type DELETE, specifies whether to remove // the stack instances from the specified stack set, but doesn't delete the - // stacks. You can't reassociate a retained stack, or add an existing, saved + // stacks. You can't re-associate a retained stack, or add an existing, saved // stack to a new stack set. RetainStacks *bool `type:"boolean"` @@ -19162,7 +19670,7 @@ type StackSetOperation struct { // information about drift operations currently being performed on the stack // set. // - // this information will only be present for stack set operations whose Action + // This information will only be present for stack set operations whose Action // type is DETECT_DRIFT. // // For more information, see Detecting Unmanaged Changes in Stack Sets (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-drift.html) @@ -19189,7 +19697,7 @@ type StackSetOperation struct { // // * RUNNING: The operation is currently being performed. // - // * STOPPED: The user has cancelled the operation. + // * STOPPED: The user has canceled the operation. // // * STOPPING: The operation is in the process of stopping, at user request. // @@ -19322,7 +19830,7 @@ type StackSetOperationPreferences struct { FailureTolerancePercentage *int64 `type:"integer"` // The maximum number of accounts in which to perform this operation at one - // time. This is dependent on the value of FailureToleranceCount. MaxConcurrentCount + // time. This is dependent on the value of FailureToleranceCount.MaxConcurrentCount // is at most one more than the FailureToleranceCount. // // Note that this setting lets you specify the maximum for operations. For large @@ -19441,7 +19949,7 @@ type StackSetOperationResultSummary struct { Account *string `type:"string"` // The results of the account gate function CloudFormation invokes, if present, - // before proceeding with stack set operations in an account + // before proceeding with stack set operations in an account. AccountGateResult *AccountGateResult `type:"structure"` // [Service-managed permissions] The organization root ID or organizational @@ -19455,7 +19963,7 @@ type StackSetOperationResultSummary struct { // given Region. // // * CANCELLED: The operation in the specified account and Region has been - // cancelled. This is either because a user has stopped the stack set operation, + // canceled. This is either because a user has stopped the stack set operation, // or because the failure tolerance of the stack set operation has been exceeded. // // * FAILED: The operation in the specified account and Region failed. If @@ -19536,8 +20044,8 @@ type StackSetOperationSummary struct { // The type of operation: CREATE, UPDATE, or DELETE. Create and delete operations // affect only the specified stack instances that are associated with the specified - // stack set. Update operations affect both the stack set itself as well as - // all associated stack set instances. + // stack set. Update operations affect both the stack set itself and all associated + // stack set instances. Action *string `type:"string" enum:"StackSetOperationAction"` // The time at which the operation was initiated. Note that the creation times @@ -19572,7 +20080,7 @@ type StackSetOperationSummary struct { // // * RUNNING: The operation is currently being performed. // - // * STOPPED: The user has cancelled the operation. + // * STOPPED: The user has canceled the operation. // // * STOPPING: The operation is in the process of stopping, at user request. // @@ -19653,17 +20161,17 @@ type StackSetSummary struct { // A stack instance is considered to have drifted if one or more of the resources // in the associated stack have drifted. // - // * NOT_CHECKED: CloudFormation has not checked the stack set for drift. + // * NOT_CHECKED: CloudFormation hasn't checked the stack set for drift. // - // * IN_SYNC: All of the stack instances belonging to the stack set stack - // match from the expected template and parameter configuration. + // * IN_SYNC: All the stack instances belonging to the stack set stack match + // from the expected template and parameter configuration. // // * UNKNOWN: This value is reserved for future use. DriftStatus *string `type:"string" enum:"StackDriftStatus"` // Most recent time when CloudFormation performed a drift detection operation // on the stack set. This value will be NULL for any stack set on which drift - // detection has not yet been performed. + // detection hasn't yet been performed. LastDriftCheckTimestamp *time.Time `type:"timestamp"` // Describes whether StackSets performs non-conflicting operations concurrently @@ -20146,7 +20654,7 @@ func (s *TemplateParameter) SetParameterKey(v string) *TemplateParameter { type TestTypeInput struct { _ struct{} `type:"structure"` - // The Amazon Resource Number (ARN) of the extension. + // The Amazon Resource Name (ARN) of the extension. // // Conditional: You must specify Arn, or TypeName and Type. Arn *string `type:"string"` @@ -20183,8 +20691,8 @@ type TestTypeInput struct { // // You can specify the version id with either Arn, or with TypeName and Type. // - // If you do not specify a version, CloudFormation uses the default version - // of the extension in this account and region for testing. + // If you don't specify a version, CloudFormation uses the default version of + // the extension in this account and region for testing. VersionId *string `min:"1" type:"string"` } @@ -20258,7 +20766,7 @@ func (s *TestTypeInput) SetVersionId(v string) *TestTypeInput { type TestTypeOutput struct { _ struct{} `type:"structure"` - // The Amazon Resource Number (ARN) of the extension. + // The Amazon Resource Name (ARN) of the extension. TypeVersionArn *string `type:"string"` } @@ -20305,7 +20813,7 @@ type TypeConfigurationDetails struct { // A JSON string specifying the configuration data for the extension, in this // account and region. // - // If a configuration has not been set for a specified extension, CloudFormation + // If a configuration hasn't been set for a specified extension, CloudFormation // returns {}. Configuration *string `min:"1" type:"string"` @@ -20315,7 +20823,7 @@ type TypeConfigurationDetails struct { // When the configuration data was last updated for this extension. // - // If a configuration has not been set for a specified extension, CloudFormation + // If a configuration hasn't been set for a specified extension, CloudFormation // returns null. LastUpdated *time.Time `type:"timestamp"` @@ -20505,7 +21013,7 @@ type TypeFilters struct { // The id of the publisher of the extension. // - // Extensions published by Amazon are not assigned a publisher ID. Use the AWS_TYPE + // Extensions published by Amazon aren't assigned a publisher ID. Use the AWS_TYPES // category to specify a list of types published by Amazon. PublisherId *string `min:"1" type:"string"` @@ -20570,7 +21078,7 @@ type TypeSummary struct { _ struct{} `type:"structure"` // The ID of the default version of the extension. The default version is used - // when the extension version is not specified. + // when the extension version isn't specified. // // This applies only to private extensions you have registered in your account. // For public extensions, both those provided by Amazon and published by third @@ -20605,7 +21113,7 @@ type TypeSummary struct { // other than activated third-arty extensions, CloudFormation returns null. // // How you specified AutoUpdate when enabling the extension affects whether - // CloudFormation automatically updates the extention in this account and region + // CloudFormation automatically updates the extension in this account and region // when a new version is released. For more information, see Setting CloudFormation // to automatically use new versions of extensions (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-public.html#registry-public-enable-auto) // in the CloudFormation User Guide. @@ -20623,17 +21131,17 @@ type TypeSummary struct { // For public extensions that have been activated for this account and region, // the version of the public extension to be used for CloudFormation operations - // in this account and region. + // in this account and Region. // // How you specified AutoUpdate when enabling the extension affects whether - // CloudFormation automatically updates the extention in this account and region + // CloudFormation automatically updates the extension in this account and region // when a new version is released. For more information, see Setting CloudFormation // to automatically use new versions of extensions (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-public.html#registry-public-enable-auto) // in the CloudFormation User Guide. PublicVersionNumber *string `min:"5" type:"string"` // The ID of the extension publisher, if the extension is published by a third - // party. Extensions published by Amazon do not return a publisher ID. + // party. Extensions published by Amazon don't return a publisher ID. PublisherId *string `min:"1" type:"string"` // The service used to verify the publisher identity. @@ -20771,8 +21279,8 @@ type TypeVersionSummary struct { // Whether the specified extension version is set as the default version. // // This applies only to private extensions you have registered in your account, - // and extensions published by Amazon. For public third-party extensions, whether - // or not they are activated in your account, CloudFormation returns null. + // and extensions published by Amazon. For public third-party extensions, CloudFormation + // returns null. IsDefaultVersion *bool `type:"boolean"` // For public extensions that have been activated for this account and region, @@ -20781,7 +21289,7 @@ type TypeVersionSummary struct { // extensions, CloudFormation returns null. // // How you specified AutoUpdate when enabling the extension affects whether - // CloudFormation automatically updates the extention in this account and region + // CloudFormation automatically updates the extension in this account and region // when a new version is released. For more information, see Setting CloudFormation // to automatically use new versions of extensions (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-public.html#registry-public-enable-auto) // in the CloudFormation User Guide. @@ -20798,7 +21306,7 @@ type TypeVersionSummary struct { // The ID of a specific version of the extension. The version ID is the value // at the end of the Amazon Resource Name (ARN) assigned to the extension version - // when it is registered. + // when it's registered. VersionId *string `min:"1" type:"string"` } @@ -20963,10 +21471,10 @@ type UpdateStackInput struct { // The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) // role that CloudFormation assumes to update the stack. CloudFormation uses // the role's credentials to make calls on your behalf. CloudFormation always - // uses this role for all future operations on the stack. As long as users have - // permission to operate on the stack, CloudFormation uses this role even if - // the users don't have permission to pass it. Ensure that the role grants least - // privilege. + // uses this role for all future operations on the stack. Provided that users + // have permission to operate on the stack, CloudFormation uses this role even + // if the users don't have permission to pass it. Ensure that the role grants + // least privilege. // // If you don't specify a value, CloudFormation uses the role that was previously // associated with the stack. If no role is available, CloudFormation uses a @@ -20986,8 +21494,8 @@ type UpdateStackInput struct { // StackPolicyBody or the StackPolicyURL parameter, but not both. // // You might update the stack policy, for example, in order to protect a new - // resource that you created during a stack update. If you do not specify a - // stack policy, the current policy that is associated with the stack is unchanged. + // resource that you created during a stack update. If you don't specify a stack + // policy, the current policy that is associated with the stack is unchanged. StackPolicyBody *string `min:"1" type:"string"` // Structure containing the temporary overriding stack policy body. You can @@ -21015,8 +21523,8 @@ type UpdateStackInput struct { // parameter, but not both. // // You might update the stack policy, for example, in order to protect a new - // resource that you created during a stack update. If you do not specify a - // stack policy, the current policy that is associated with the stack is unchanged. + // resource that you created during a stack update. If you don't specify a stack + // policy, the current policy that is associated with the stack is unchanged. StackPolicyURL *string `min:"1" type:"string"` // Key-value pairs to associate with this stack. CloudFormation also propagates @@ -21038,7 +21546,7 @@ type UpdateStackInput struct { TemplateBody *string `min:"1" type:"string"` // Location of file containing the template body. The URL must point to a template - // that is located in an Amazon S3 bucket or a Systems Manager document. For + // that's located in an Amazon S3 bucket or a Systems Manager document. For // more information, go to Template Anatomy (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html) // in the CloudFormation User Guide. // @@ -21232,7 +21740,7 @@ type UpdateStackInstancesInput struct { // [Self-managed permissions] The names of one or more Amazon Web Services accounts // for which you want to update parameter values for stack instances. The overridden // parameter values will be applied to all stack instances in the specified - // accounts and Regions. + // accounts and Amazon Web Services Regions. // // You can specify Accounts or DeploymentTargets, but not both. Accounts []*string `type:"list"` @@ -21279,26 +21787,25 @@ type UpdateStackInstancesInput struct { // stack instances. // // Any overridden parameter values will be applied to all stack instances in - // the specified accounts and Regions. When specifying parameters and their - // values, be aware of how CloudFormation sets parameter values during stack - // instance update operations: + // the specified accounts and Amazon Web Services Regions. When specifying parameters + // and their values, be aware of how CloudFormation sets parameter values during + // stack instance update operations: // // * To override the current value for a parameter, include the parameter // and specify its value. // // * To leave an overridden parameter set to its present value, include the - // parameter and specify UsePreviousValue as true. (You cannot specify both + // parameter and specify UsePreviousValue as true. (You can't specify both // a value and set UsePreviousValue to true.) // // * To set an overridden parameter back to the value specified in the stack - // set, specify a parameter list but do not include the parameter in the - // list. + // set, specify a parameter list but don't include the parameter in the list. // - // * To leave all parameters set to their present values, do not specify - // this property at all. + // * To leave all parameters set to their present values, don't specify this + // property at all. // // During stack set updates, any parameter values overridden for a stack instance - // are not updated, but retain their overridden value. + // aren't updated, but retain their overridden value. // // You can only override the parameter values that are specified in the stack // set; to add or delete a parameter itself, use UpdateStackSet to update the @@ -21310,9 +21817,10 @@ type UpdateStackInstancesInput struct { // new parameter, you can then override the parameter value using UpdateStackInstances. ParameterOverrides []*Parameter `type:"list"` - // The names of one or more Regions in which you want to update parameter values - // for stack instances. The overridden parameter values will be applied to all - // stack instances in the specified accounts and Regions. + // The names of one or more Amazon Web Services Regions in which you want to + // update parameter values for stack instances. The overridden parameter values + // will be applied to all stack instances in the specified accounts and Amazon + // Web Services Regions. // // Regions is a required field Regions []*string `type:"list" required:"true"` @@ -21485,20 +21993,20 @@ type UpdateStackSetInput struct { _ struct{} `type:"structure"` // [Self-managed permissions] The accounts in which to update associated stack - // instances. If you specify accounts, you must also specify the Regions in - // which to update stack set instances. + // instances. If you specify accounts, you must also specify the Amazon Web + // Services Regions in which to update stack set instances. // - // To update all the stack instances associated with this stack set, do not - // specify the Accounts or Regions properties. + // To update all the stack instances associated with this stack set, don't specify + // the Accounts or Regions properties. // // If the stack set update includes changes to the template (that is, if the // TemplateBody or TemplateURL properties are specified), or the Parameters // property, CloudFormation marks all stack instances with a status of OUTDATED - // prior to updating the stack instances in the specified accounts and Regions. - // If the stack set update does not include changes to the template or parameters, - // CloudFormation updates the stack instances in the specified accounts and - // Regions, while leaving all other stack instances with their existing stack - // instance status. + // prior to updating the stack instances in the specified accounts and Amazon + // Web Services Regions. If the stack set update does not include changes to + // the template or parameters, CloudFormation updates the stack instances in + // the specified accounts and Amazon Web Services Regions, while leaving all + // other stack instances with their existing stack instance status. Accounts []*string `type:"list"` // The Amazon Resource Number (ARN) of the IAM role to use to update this stack @@ -21519,7 +22027,7 @@ type UpdateStackSetInput struct { // to Organizations accounts that are added to a target organization or organizational // unit (OU). // - // If you specify AutoDeployment, do not specify DeploymentTargets or Regions. + // If you specify AutoDeployment, don't specify DeploymentTargets or Regions. AutoDeployment *AutoDeployment `type:"structure"` // [Service-managed permissions] Specifies whether you are acting as an account @@ -21586,10 +22094,10 @@ type UpdateStackSetInput struct { // If the stack set update includes changes to the template (that is, if TemplateBody // or TemplateURL is specified), or the Parameters, CloudFormation marks all // stack instances with a status of OUTDATED prior to updating the stack instances - // in the specified accounts and Regions. If the stack set update does not include - // changes to the template or parameters, CloudFormation updates the stack instances - // in the specified accounts and Regions, while leaving all other stack instances - // with their existing stack instance status. + // in the specified accounts and Amazon Web Services Regions. If the stack set + // update doesn't include changes to the template or parameters, CloudFormation + // updates the stack instances in the specified accounts and Regions, while + // leaving all other stack instances with their existing stack instance status. DeploymentTargets *DeploymentTargets `type:"structure"` // A brief description of updates that you are making. @@ -21644,8 +22152,9 @@ type UpdateStackSetInput struct { // more information, see Grant Service-Managed Stack Set Permissions (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-service-managed.html). PermissionModel *string `type:"string" enum:"PermissionModels"` - // The Regions in which to update associated stack instances. If you specify - // Regions, you must also specify accounts in which to update stack set instances. + // The Amazon Web Services Regions in which to update associated stack instances. + // If you specify Regions, you must also specify accounts in which to update + // stack set instances. // // To update all the stack instances associated with this stack set, do not // specify the Accounts or Regions properties. @@ -21676,7 +22185,7 @@ type UpdateStackSetInput struct { // stack's tags. // // * If you specify any tags using this parameter, you must specify all the - // tags that you want associated with this stack set, even tags you've specifed + // tags that you want associated with this stack set, even tags you've specified // before (for example, when creating the stack set or during a previous // update of the stack set.). Any tags that you don't include in the updated // list of tags are removed from the stack set, and therefore from the stacks @@ -22283,6 +22792,26 @@ func ChangeAction_Values() []string { } } +const ( + // ChangeSetHooksStatusPlanning is a ChangeSetHooksStatus enum value + ChangeSetHooksStatusPlanning = "PLANNING" + + // ChangeSetHooksStatusPlanned is a ChangeSetHooksStatus enum value + ChangeSetHooksStatusPlanned = "PLANNED" + + // ChangeSetHooksStatusUnavailable is a ChangeSetHooksStatus enum value + ChangeSetHooksStatusUnavailable = "UNAVAILABLE" +) + +// ChangeSetHooksStatus_Values returns all elements of the ChangeSetHooksStatus enum +func ChangeSetHooksStatus_Values() []string { + return []string{ + ChangeSetHooksStatusPlanning, + ChangeSetHooksStatusPlanned, + ChangeSetHooksStatusUnavailable, + } +} + const ( // ChangeSetStatusCreatePending is a ChangeSetStatus enum value ChangeSetStatusCreatePending = "CREATE_PENDING" @@ -22535,6 +23064,70 @@ func HandlerErrorCode_Values() []string { } } +const ( + // HookFailureModeFail is a HookFailureMode enum value + HookFailureModeFail = "FAIL" + + // HookFailureModeWarn is a HookFailureMode enum value + HookFailureModeWarn = "WARN" +) + +// HookFailureMode_Values returns all elements of the HookFailureMode enum +func HookFailureMode_Values() []string { + return []string{ + HookFailureModeFail, + HookFailureModeWarn, + } +} + +const ( + // HookInvocationPointPreProvision is a HookInvocationPoint enum value + HookInvocationPointPreProvision = "PRE_PROVISION" +) + +// HookInvocationPoint_Values returns all elements of the HookInvocationPoint enum +func HookInvocationPoint_Values() []string { + return []string{ + HookInvocationPointPreProvision, + } +} + +const ( + // HookStatusHookInProgress is a HookStatus enum value + HookStatusHookInProgress = "HOOK_IN_PROGRESS" + + // HookStatusHookCompleteSucceeded is a HookStatus enum value + HookStatusHookCompleteSucceeded = "HOOK_COMPLETE_SUCCEEDED" + + // HookStatusHookCompleteFailed is a HookStatus enum value + HookStatusHookCompleteFailed = "HOOK_COMPLETE_FAILED" + + // HookStatusHookFailed is a HookStatus enum value + HookStatusHookFailed = "HOOK_FAILED" +) + +// HookStatus_Values returns all elements of the HookStatus enum +func HookStatus_Values() []string { + return []string{ + HookStatusHookInProgress, + HookStatusHookCompleteSucceeded, + HookStatusHookCompleteFailed, + HookStatusHookFailed, + } +} + +const ( + // HookTargetTypeResource is a HookTargetType enum value + HookTargetTypeResource = "RESOURCE" +) + +// HookTargetType_Values returns all elements of the HookTargetType enum +func HookTargetType_Values() []string { + return []string{ + HookTargetTypeResource, + } +} + const ( // IdentityProviderAwsMarketplace is a IdentityProvider enum value IdentityProviderAwsMarketplace = "AWS_Marketplace" @@ -22693,6 +23286,9 @@ const ( // RegistryTypeModule is a RegistryType enum value RegistryTypeModule = "MODULE" + + // RegistryTypeHook is a RegistryType enum value + RegistryTypeHook = "HOOK" ) // RegistryType_Values returns all elements of the RegistryType enum @@ -22700,6 +23296,7 @@ func RegistryType_Values() []string { return []string{ RegistryTypeResource, RegistryTypeModule, + RegistryTypeHook, } } @@ -23289,6 +23886,9 @@ const ( // ThirdPartyTypeModule is a ThirdPartyType enum value ThirdPartyTypeModule = "MODULE" + + // ThirdPartyTypeHook is a ThirdPartyType enum value + ThirdPartyTypeHook = "HOOK" ) // ThirdPartyType_Values returns all elements of the ThirdPartyType enum @@ -23296,6 +23896,7 @@ func ThirdPartyType_Values() []string { return []string{ ThirdPartyTypeResource, ThirdPartyTypeModule, + ThirdPartyTypeHook, } } diff --git a/service/cloudformation/cloudformationiface/interface.go b/service/cloudformation/cloudformationiface/interface.go index 20f76853c7c..3b5d74a1aa3 100644 --- a/service/cloudformation/cloudformationiface/interface.go +++ b/service/cloudformation/cloudformationiface/interface.go @@ -127,6 +127,10 @@ type CloudFormationAPI interface { DescribeChangeSetWithContext(aws.Context, *cloudformation.DescribeChangeSetInput, ...request.Option) (*cloudformation.DescribeChangeSetOutput, error) DescribeChangeSetRequest(*cloudformation.DescribeChangeSetInput) (*request.Request, *cloudformation.DescribeChangeSetOutput) + DescribeChangeSetHooks(*cloudformation.DescribeChangeSetHooksInput) (*cloudformation.DescribeChangeSetHooksOutput, error) + DescribeChangeSetHooksWithContext(aws.Context, *cloudformation.DescribeChangeSetHooksInput, ...request.Option) (*cloudformation.DescribeChangeSetHooksOutput, error) + DescribeChangeSetHooksRequest(*cloudformation.DescribeChangeSetHooksInput) (*request.Request, *cloudformation.DescribeChangeSetHooksOutput) + DescribePublisher(*cloudformation.DescribePublisherInput) (*cloudformation.DescribePublisherOutput, error) DescribePublisherWithContext(aws.Context, *cloudformation.DescribePublisherInput, ...request.Option) (*cloudformation.DescribePublisherOutput, error) DescribePublisherRequest(*cloudformation.DescribePublisherInput) (*request.Request, *cloudformation.DescribePublisherOutput) diff --git a/service/cloudformation/doc.go b/service/cloudformation/doc.go index 6a768689f26..55850ab94a5 100644 --- a/service/cloudformation/doc.go +++ b/service/cloudformation/doc.go @@ -7,18 +7,18 @@ // deployments predictably and repeatedly. You can use CloudFormation to leverage // Amazon Web Services products, such as Amazon Elastic Compute Cloud, Amazon // Elastic Block Store, Amazon Simple Notification Service, Elastic Load Balancing, -// and Auto Scaling to build highly-reliable, highly scalable, cost-effective +// and Auto Scaling to build highly reliable, highly scalable, cost-effective // applications without creating or configuring the underlying Amazon Web Services // infrastructure. // -// With CloudFormation, you declare all of your resources and dependencies in -// a template file. The template defines a collection of resources as a single +// With CloudFormation, you declare all your resources and dependencies in a +// template file. The template defines a collection of resources as a single // unit called a stack. CloudFormation creates and deletes all member resources // of the stack together and manages all dependencies between the resources // for you. // -// For more information about CloudFormation, see the CloudFormation Product -// Page (http://aws.amazon.com/cloudformation/). +// For more information about CloudFormation, see the CloudFormation product +// page (http://aws.amazon.com/cloudformation/). // // CloudFormation makes use of other Amazon Web Services products. If you need // additional technical information about a specific Amazon Web Services product, diff --git a/service/cloudformation/errors.go b/service/cloudformation/errors.go index 734dfcd312f..78020bb3708 100644 --- a/service/cloudformation/errors.go +++ b/service/cloudformation/errors.go @@ -20,7 +20,7 @@ const ( // "ChangeSetNotFound". // // The specified change set name or ID doesn't exit. To view valid change sets - // for a stack, use the ListChangeSets action. + // for a stack, use the ListChangeSets operation. ErrCodeChangeSetNotFoundException = "ChangeSetNotFound" // ErrCodeCreatedButModifiedException for service response error code @@ -54,7 +54,7 @@ const ( // "InvalidStateTransition". // // Error reserved for use by the CloudFormation CLI (https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/what-is-cloudformation-cli.html). - // CloudFormation does not return this error to users. + // CloudFormation doesn't return this error to users. ErrCodeInvalidStateTransitionException = "InvalidStateTransition" // ErrCodeLimitExceededException for service response error code @@ -62,7 +62,8 @@ const ( // // The quota for the resource has already been reached. // - // For information on resource and stack limitations, see Limits (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html) + // For information on resource and stack limitations, see CloudFormation quotas + // (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html) // in the CloudFormation User Guide. ErrCodeLimitExceededException = "LimitExceededException" @@ -95,7 +96,7 @@ const ( // "ConditionalCheckFailed". // // Error reserved for use by the CloudFormation CLI (https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/what-is-cloudformation-cli.html). - // CloudFormation does not return this error to users. + // CloudFormation doesn't return this error to users. ErrCodeOperationStatusCheckFailedException = "ConditionalCheckFailed" // ErrCodeStackInstanceNotFoundException for service response error code @@ -107,7 +108,7 @@ const ( // ErrCodeStackNotFoundException for service response error code // "StackNotFoundException". // - // The specified stack ARN doesn’t exist or stack doesn’t exist corresponding + // The specified stack ARN doesn't exist or stack doesn't exist corresponding // to the ARN in input. ErrCodeStackNotFoundException = "StackNotFoundException" @@ -141,12 +142,12 @@ const ( // ErrCodeTypeConfigurationNotFoundException for service response error code // "TypeConfigurationNotFoundException". // - // The specified extension configuration cannot be found. + // The specified extension configuration can't be found. ErrCodeTypeConfigurationNotFoundException = "TypeConfigurationNotFoundException" // ErrCodeTypeNotFoundException for service response error code // "TypeNotFoundException". // - // The specified extension does not exist in the CloudFormation registry. + // The specified extension doesn't exist in the CloudFormation registry. ErrCodeTypeNotFoundException = "TypeNotFoundException" )