Skip to content

Commit

Permalink
Release v1.44.49 (2022-07-06) (#4470)
Browse files Browse the repository at this point in the history
Release v1.44.49 (2022-07-06)
===

### Service Client Updates
* `service/cloudformation`: Updates service API and documentation
  * My AWS Service (placeholder) - Add a new feature Account-level Targeting for StackSet operation
* `service/synthetics`: Updates service API, documentation, and paginators
  • Loading branch information
aws-sdk-go-automation committed Jul 6, 2022
1 parent 403621c commit db4388e
Show file tree
Hide file tree
Showing 11 changed files with 4,296 additions and 1,408 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,11 @@
Release v1.44.49 (2022-07-06)
===

### Service Client Updates
* `service/cloudformation`: Updates service API and documentation
* My AWS Service (placeholder) - Add a new feature Account-level Targeting for StackSet operation
* `service/synthetics`: Updates service API, documentation, and paginators

Release v1.44.48 (2022-07-05)
===

Expand Down
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.44.48"
const SDKVersion = "1.44.49"
12 changes: 11 additions & 1 deletion models/apis/cloudformation/2010-05-15/api-2.json
Expand Up @@ -998,6 +998,15 @@
"type":"string",
"pattern":"^[0-9]{12}$"
},
"AccountFilterType":{
"type":"string",
"enum":[
"NONE",
"INTERSECTION",
"DIFFERENCE",
"UNION"
]
},
"AccountGateResult":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1564,7 +1573,8 @@
"members":{
"Accounts":{"shape":"AccountList"},
"AccountsUrl":{"shape":"AccountsUrl"},
"OrganizationalUnitIds":{"shape":"OrganizationalUnitIdList"}
"OrganizationalUnitIds":{"shape":"OrganizationalUnitIdList"},
"AccountFilterType":{"shape":"AccountFilterType"}
}
},
"DeprecatedStatus":{
Expand Down
6 changes: 6 additions & 0 deletions models/apis/cloudformation/2010-05-15/docs-2.json
Expand Up @@ -87,6 +87,12 @@
"StackSetOperationResultSummary$Account": "<p>[Self-managed permissions] The name of the Amazon Web Services account for this operation result.</p>"
}
},
"AccountFilterType": {
"base": null,
"refs": {
"DeploymentTargets$AccountFilterType": "<p>Limit deployment targets to individual accounts or include additional accounts with provided OUs.</p> <p>The following is a list of possible values for the <code>AccountFilterType</code> operation.</p> <ul> <li> <p> <code>INTERSECTION</code>: StackSets deploys to the accounts specified in <code>Accounts</code> parameter. </p> </li> <li> <p> <code>DIFFERENCE</code>: StackSets excludes the accounts specified in <code>Accounts</code> parameter. This enables user to avoid certain accounts within an OU such as suspended accounts.</p> </li> <li> <p> <code>UNION</code>: (default value) StackSets includes additional accounts deployment targets. </p> <p>This is the default value if <code>AccountFilterType</code> is not provided. This enables user to update an entire OU and individual accounts from a different OU in one request, which used to be two separate requests.</p> </li> <li> <p> <code>NONE</code>: Deploys to all the accounts in specified organizational units (OU).</p> </li> </ul>"
}
},
"AccountGateResult": {
"base": "<p>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.</p> <p>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 <code>FAILED</code>, CloudFormation cancels the operation in that account and Region, and sets the stack set operation result status for that account and Region to <code>FAILED</code>.</p> <p>For more information, see <a href=\"https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-account-gating.html\">Configuring a target account gate</a>.</p>",
"refs": {
Expand Down

0 comments on commit db4388e

Please sign in to comment.