Skip to content

Commit

Permalink
Merge branch 'release-1.27.24'
Browse files Browse the repository at this point in the history
* release-1.27.24:
  Bumping version to 1.27.24
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Jul 6, 2022
2 parents 98389d0 + fd49880 commit 16977c9
Show file tree
Hide file tree
Showing 6 changed files with 534 additions and 35 deletions.
12 changes: 12 additions & 0 deletions .changes/1.27.24.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"category": "``cloudformation``",
"description": "My AWS Service (placeholder) - Add a new feature Account-level Targeting for StackSet operation",
"type": "api-change"
},
{
"category": "``synthetics``",
"description": "This release introduces Group feature, which enables users to group cross-region canaries.",
"type": "api-change"
}
]
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
CHANGELOG
=========

1.27.24
=======

* api-change:``cloudformation``: My AWS Service (placeholder) - Add a new feature Account-level Targeting for StackSet operation
* api-change:``synthetics``: This release introduces Group feature, which enables users to group cross-region canaries.


1.27.23
=======

Expand Down
2 changes: 1 addition & 1 deletion botocore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import os
import re

__version__ = '1.27.23'
__version__ = '1.27.24'


class NullHandler(logging.Handler):
Expand Down
13 changes: 13 additions & 0 deletions botocore/data/cloudformation/2010-05-15/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1064,6 +1064,15 @@
"type":"string",
"pattern":"^[0-9]{12}$"
},
"AccountFilterType":{
"type":"string",
"enum":[
"NONE",
"INTERSECTION",
"DIFFERENCE",
"UNION"
]
},
"AccountGateResult":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2064,6 +2073,10 @@
"OrganizationalUnitIds":{
"shape":"OrganizationalUnitIdList",
"documentation":"<p>The organization root ID or organizational unit (OU) IDs to which StackSets deploys.</p>"
},
"AccountFilterType":{
"shape":"AccountFilterType",
"documentation":"<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>"
}
},
"documentation":"<p>[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.</p> <p>For update operations, you can specify either <code>Accounts</code> or <code>OrganizationalUnitIds</code>. For create and delete operations, specify <code>OrganizationalUnitIds</code>.</p>"
Expand Down

0 comments on commit 16977c9

Please sign in to comment.