Skip to content

Commit

Permalink
Release v1.32.11 (2020-06-26) (#3395)
Browse files Browse the repository at this point in the history
Release v1.32.11 (2020-06-26)
===

### Service Client Updates
* `service/cloudformation`: Updates service API and documentation
  * ListStackInstances and DescribeStackInstance now return a new `StackInstanceStatus` object that contains `DetailedStatus` values: a disambiguation of the more generic `Status` value. ListStackInstances output can now be filtered on `DetailedStatus` using the new `Filters` parameter.
* `service/cognito-idp`: Updates service API
* `service/dms`: Updates service documentation
  * This release contains miscellaneous API documentation updates for AWS DMS in response to several customer reported issues.
* `service/quicksight`: Updates service API and documentation
  * Added support for cross-region DataSource credentials copying.
* `service/sagemaker`: Updates service API and documentation
  * The new 'ModelClientConfig' parameter being added for CreateTransformJob and DescribeTransformJob api actions enable customers to configure model invocation related parameters such as timeout and retry.
  • Loading branch information
aws-sdk-go-automation committed Jun 26, 2020
1 parent cd54c31 commit 15f0e61
Show file tree
Hide file tree
Showing 17 changed files with 844 additions and 234 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,17 @@
Release v1.32.11 (2020-06-26)
===

### Service Client Updates
* `service/cloudformation`: Updates service API and documentation
* ListStackInstances and DescribeStackInstance now return a new `StackInstanceStatus` object that contains `DetailedStatus` values: a disambiguation of the more generic `Status` value. ListStackInstances output can now be filtered on `DetailedStatus` using the new `Filters` parameter.
* `service/cognito-idp`: Updates service API
* `service/dms`: Updates service documentation
* This release contains miscellaneous API documentation updates for AWS DMS in response to several customer reported issues.
* `service/quicksight`: Updates service API and documentation
* Added support for cross-region DataSource credentials copying.
* `service/sagemaker`: Updates service API and documentation
* The new 'ModelClientConfig' parameter being added for CreateTransformJob and DescribeTransformJob api actions enable customers to configure model invocation related parameters such as timeout and retry.

Release v1.32.10 (2020-06-25)
===

Expand Down
13 changes: 13 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.32.10"
const SDKVersion = "1.32.11"
41 changes: 41 additions & 0 deletions models/apis/cloudformation/2010-05-15/api-2.json
Expand Up @@ -1841,6 +1841,7 @@
"StackSetName":{"shape":"StackSetName"},
"NextToken":{"shape":"NextToken"},
"MaxResults":{"shape":"MaxResults"},
"Filters":{"shape":"StackInstanceFilters"},
"StackInstanceAccount":{"shape":"Account"},
"StackInstanceRegion":{"shape":"Region"}
}
Expand Down Expand Up @@ -2679,12 +2680,51 @@
"StackId":{"shape":"StackId"},
"ParameterOverrides":{"shape":"Parameters"},
"Status":{"shape":"StackInstanceStatus"},
"StackInstanceStatus":{"shape":"StackInstanceComprehensiveStatus"},
"StatusReason":{"shape":"Reason"},
"OrganizationalUnitId":{"shape":"OrganizationalUnitId"},
"DriftStatus":{"shape":"StackDriftStatus"},
"LastDriftCheckTimestamp":{"shape":"Timestamp"}
}
},
"StackInstanceComprehensiveStatus":{
"type":"structure",
"members":{
"DetailedStatus":{"shape":"StackInstanceDetailedStatus"}
}
},
"StackInstanceDetailedStatus":{
"type":"string",
"enum":[
"PENDING",
"RUNNING",
"SUCCEEDED",
"FAILED",
"CANCELLED",
"INOPERABLE"
]
},
"StackInstanceFilter":{
"type":"structure",
"members":{
"Name":{"shape":"StackInstanceFilterName"},
"Values":{"shape":"StackInstanceFilterValues"}
}
},
"StackInstanceFilterName":{
"type":"string",
"enum":["DETAILED_STATUS"]
},
"StackInstanceFilterValues":{
"type":"string",
"max":10,
"min":6
},
"StackInstanceFilters":{
"type":"list",
"member":{"shape":"StackInstanceFilter"},
"max":1
},
"StackInstanceNotFoundException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2717,6 +2757,7 @@
"StackId":{"shape":"StackId"},
"Status":{"shape":"StackInstanceStatus"},
"StatusReason":{"shape":"Reason"},
"StackInstanceStatus":{"shape":"StackInstanceComprehensiveStatus"},
"OrganizationalUnitId":{"shape":"OrganizationalUnitId"},
"DriftStatus":{"shape":"StackDriftStatus"},
"LastDriftCheckTimestamp":{"shape":"Timestamp"}
Expand Down
41 changes: 39 additions & 2 deletions models/apis/cloudformation/2010-05-15/docs-2.json
Expand Up @@ -37,7 +37,7 @@
"ListChangeSets": "<p>Returns the ID and status of each active change set for a stack. For example, AWS CloudFormation lists change sets that are in the <code>CREATE_IN_PROGRESS</code> or <code>CREATE_PENDING</code> state.</p>",
"ListExports": "<p>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 <a href=\"https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-importvalue.html\"> <code>Fn::ImportValue</code> </a> function. </p> <p>For more information, see <a href=\"https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-exports.html\"> AWS CloudFormation Export Stack Output Values</a>.</p>",
"ListImports": "<p>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 <a>ListExports</a>. </p> <p>For more information about importing an exported output value, see the <a href=\"https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-importvalue.html\"> <code>Fn::ImportValue</code> </a> function. </p>",
"ListStackInstances": "<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>",
"ListStackInstances": "<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>",
"ListStackResources": "<p>Returns descriptions of all resources of the specified stack.</p> <p>For deleted stacks, ListStackResources returns resource information for up to 90 days after the stack has been deleted.</p>",
"ListStackSetOperationResults": "<p>Returns summary information about the results of a stack set operation. </p>",
"ListStackSetOperations": "<p>Returns summary information about operations performed on a stack set. </p>",
Expand Down Expand Up @@ -1608,7 +1608,7 @@
"refs": {
"ResourceChange$ResourceType": "<p>The type of AWS CloudFormation resource, such as <code>AWS::S3::Bucket</code>.</p>",
"ResourceIdentifierSummary$ResourceType": "<p>The template resource type of the target resources, such as <code>AWS::S3::Bucket</code>.</p>",
"ResourceToImport$ResourceType": "<p>The type of resource to import into your stack, such as <code>AWS::S3::Bucket</code>. </p>",
"ResourceToImport$ResourceType": "<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>",
"ResourceTypes$member": null,
"StackEvent$ResourceType": "<p>Type of resource. (For more information, go to <a href=\"https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html\"> AWS Resource Types Reference</a> in the AWS CloudFormation User Guide.)</p>",
"StackResource$ResourceType": "<p>Type of resource. (For more information, go to <a href=\"https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html\"> AWS Resource Types Reference</a> in the AWS CloudFormation User Guide.)</p>",
Expand Down Expand Up @@ -1831,6 +1831,43 @@
"DescribeStackInstanceOutput$StackInstance": "<p>The stack instance that matches the specified request parameters.</p>"
}
},
"StackInstanceComprehensiveStatus": {
"base": "<p>The detailed status of the stack instance.</p>",
"refs": {
"StackInstance$StackInstanceStatus": "<p>The detailed status of the stack instance.</p>",
"StackInstanceSummary$StackInstanceStatus": "<p>The detailed status of the stack instance.</p>"
}
},
"StackInstanceDetailedStatus": {
"base": null,
"refs": {
"StackInstanceComprehensiveStatus$DetailedStatus": "<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>"
}
},
"StackInstanceFilter": {
"base": "<p>The status that stack instances are filtered by.</p>",
"refs": {
"StackInstanceFilters$member": null
}
},
"StackInstanceFilterName": {
"base": null,
"refs": {
"StackInstanceFilter$Name": "<p>The type of filter to apply.</p>"
}
},
"StackInstanceFilterValues": {
"base": null,
"refs": {
"StackInstanceFilter$Values": "<p>The status to filter by.</p>"
}
},
"StackInstanceFilters": {
"base": null,
"refs": {
"ListStackInstancesInput$Filters": "<p>The status that stack instances are filtered by.</p>"
}
},
"StackInstanceNotFoundException": {
"base": "<p>The specified stack instance doesn't exist.</p>",
"refs": {
Expand Down
6 changes: 4 additions & 2 deletions models/apis/cognito-idp/2016-04-18/api-2.json
Expand Up @@ -1260,7 +1260,8 @@
{"shape":"InternalErrorException"},
{"shape":"InvalidSmsRoleAccessPolicyException"},
{"shape":"InvalidSmsRoleTrustRelationshipException"}
]
],
"authtype":"none"
},
"ListDevices":{
"name":"ListDevices",
Expand Down Expand Up @@ -1480,7 +1481,8 @@
{"shape":"AliasExistsException"},
{"shape":"InternalErrorException"},
{"shape":"SoftwareTokenMFANotFoundException"}
]
],
"authtype":"none"
},
"SetRiskConfiguration":{
"name":"SetRiskConfiguration",
Expand Down

0 comments on commit 15f0e61

Please sign in to comment.