|
564 | 564 | "errors":[
|
565 | 565 | {"shape":"StackSetNotFoundException"}
|
566 | 566 | ],
|
567 |
| - "documentation":"<p>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 AWS account name or Region.</p>" |
| 567 | + "documentation":"<p>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 AWS account name or Region, or that have a specific status.</p>" |
568 | 568 | },
|
569 | 569 | "ListStackResources":{
|
570 | 570 | "name":"ListStackResources",
|
|
2655 | 2655 | "shape":"MaxResults",
|
2656 | 2656 | "documentation":"<p>The maximum number of results to be returned with a single call. If the number of available results exceeds this maximum, the response includes a <code>NextToken</code> value that you can assign to the <code>NextToken</code> request parameter to get the next set of results.</p>"
|
2657 | 2657 | },
|
| 2658 | + "Filters":{ |
| 2659 | + "shape":"StackInstanceFilters", |
| 2660 | + "documentation":"<p>The status that stack instances are filtered by.</p>" |
| 2661 | + }, |
2658 | 2662 | "StackInstanceAccount":{
|
2659 | 2663 | "shape":"Account",
|
2660 | 2664 | "documentation":"<p>The name of the AWS account that you want to list stack instances for.</p>"
|
|
3608 | 3612 | "members":{
|
3609 | 3613 | "ResourceType":{
|
3610 | 3614 | "shape":"ResourceType",
|
3611 |
| - "documentation":"<p>The type of resource to import into your stack, such as <code>AWS::S3::Bucket</code>. </p>" |
| 3615 | + "documentation":"<p>The type of resource to import into your stack, such as <code>AWS::S3::Bucket</code>. For a list of supported resource types, see <a href=\"https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import-supported-resources.html\">Resources that support import operations</a> in the AWS CloudFormation User Guide.</p>" |
3612 | 3616 | },
|
3613 | 3617 | "LogicalResourceId":{
|
3614 | 3618 | "shape":"LogicalResourceId",
|
|
4020 | 4024 | "shape":"StackInstanceStatus",
|
4021 | 4025 | "documentation":"<p>The status of the stack instance, in terms of its synchronization with its associated stack set.</p> <ul> <li> <p> <code>INOPERABLE</code>: A <code>DeleteStackInstances</code> operation has failed and left the stack in an unstable state. Stacks in this state are excluded from further <code>UpdateStackSet</code> operations. You might need to perform a <code>DeleteStackInstances</code> operation, with <code>RetainStacks</code> set to <code>true</code>, to delete the stack instance, and then delete the stack manually.</p> </li> <li> <p> <code>OUTDATED</code>: The stack isn't currently up to date with the stack set because:</p> <ul> <li> <p>The associated stack failed during a <code>CreateStackSet</code> or <code>UpdateStackSet</code> operation. </p> </li> <li> <p>The stack was part of a <code>CreateStackSet</code> or <code>UpdateStackSet</code> operation that failed or was stopped before the stack was created or updated. </p> </li> </ul> </li> <li> <p> <code>CURRENT</code>: The stack is currently up to date with the stack set.</p> </li> </ul>"
|
4022 | 4026 | },
|
| 4027 | + "StackInstanceStatus":{ |
| 4028 | + "shape":"StackInstanceComprehensiveStatus", |
| 4029 | + "documentation":"<p>The detailed status of the stack instance.</p>" |
| 4030 | + }, |
4023 | 4031 | "StatusReason":{
|
4024 | 4032 | "shape":"Reason",
|
4025 | 4033 | "documentation":"<p>The explanation for the specific status code that is assigned to this stack instance.</p>"
|
|
4039 | 4047 | },
|
4040 | 4048 | "documentation":"<p>An AWS 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.</p>"
|
4041 | 4049 | },
|
| 4050 | + "StackInstanceComprehensiveStatus":{ |
| 4051 | + "type":"structure", |
| 4052 | + "members":{ |
| 4053 | + "DetailedStatus":{ |
| 4054 | + "shape":"StackInstanceDetailedStatus", |
| 4055 | + "documentation":"<ul> <li> <p> <code>CANCELLED</code>: The operation in the specified account and Region has been cancelled. 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.</p> </li> <li> <p> <code>FAILED</code>: The operation in the specified account and Region failed. If the stack set operation fails in enough accounts within a Region, the failure tolerance for the stack set operation as a whole might be exceeded.</p> </li> <li> <p> <code>INOPERABLE</code>: A <code>DeleteStackInstances</code> operation has failed and left the stack in an unstable state. Stacks in this state are excluded from further <code>UpdateStackSet</code> operations. You might need to perform a <code>DeleteStackInstances</code> operation, with <code>RetainStacks</code> set to <code>true</code>, to delete the stack instance, and then delete the stack manually.</p> </li> <li> <p> <code>PENDING</code>: The operation in the specified account and Region has yet to start.</p> </li> <li> <p> <code>RUNNING</code>: The operation in the specified account and Region is currently in progress.</p> </li> <li> <p> <code>SUCCEEDED</code>: The operation in the specified account and Region completed successfully.</p> </li> </ul>" |
| 4056 | + } |
| 4057 | + }, |
| 4058 | + "documentation":"<p>The detailed status of the stack instance.</p>" |
| 4059 | + }, |
| 4060 | + "StackInstanceDetailedStatus":{ |
| 4061 | + "type":"string", |
| 4062 | + "enum":[ |
| 4063 | + "PENDING", |
| 4064 | + "RUNNING", |
| 4065 | + "SUCCEEDED", |
| 4066 | + "FAILED", |
| 4067 | + "CANCELLED", |
| 4068 | + "INOPERABLE" |
| 4069 | + ] |
| 4070 | + }, |
| 4071 | + "StackInstanceFilter":{ |
| 4072 | + "type":"structure", |
| 4073 | + "members":{ |
| 4074 | + "Name":{ |
| 4075 | + "shape":"StackInstanceFilterName", |
| 4076 | + "documentation":"<p>The type of filter to apply.</p>" |
| 4077 | + }, |
| 4078 | + "Values":{ |
| 4079 | + "shape":"StackInstanceFilterValues", |
| 4080 | + "documentation":"<p>The status to filter by.</p>" |
| 4081 | + } |
| 4082 | + }, |
| 4083 | + "documentation":"<p>The status that stack instances are filtered by.</p>" |
| 4084 | + }, |
| 4085 | + "StackInstanceFilterName":{ |
| 4086 | + "type":"string", |
| 4087 | + "enum":["DETAILED_STATUS"] |
| 4088 | + }, |
| 4089 | + "StackInstanceFilterValues":{ |
| 4090 | + "type":"string", |
| 4091 | + "max":10, |
| 4092 | + "min":6 |
| 4093 | + }, |
| 4094 | + "StackInstanceFilters":{ |
| 4095 | + "type":"list", |
| 4096 | + "member":{"shape":"StackInstanceFilter"}, |
| 4097 | + "max":1 |
| 4098 | + }, |
4042 | 4099 | "StackInstanceNotFoundException":{
|
4043 | 4100 | "type":"structure",
|
4044 | 4101 | "members":{
|
|
4090 | 4147 | "shape":"Reason",
|
4091 | 4148 | "documentation":"<p>The explanation for the specific status code assigned to this stack instance.</p>"
|
4092 | 4149 | },
|
| 4150 | + "StackInstanceStatus":{ |
| 4151 | + "shape":"StackInstanceComprehensiveStatus", |
| 4152 | + "documentation":"<p>The detailed status of the stack instance.</p>" |
| 4153 | + }, |
4093 | 4154 | "OrganizationalUnitId":{
|
4094 | 4155 | "shape":"OrganizationalUnitId",
|
4095 | 4156 | "documentation":"<p>[<code>Service-managed</code> permissions] The organization root ID or organizational unit (OU) IDs that you specified for <a href=\"https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html\">DeploymentTargets</a>.</p>"
|
|
0 commit comments