Skip to content

Commit

Permalink
Release v1.13.53
Browse files Browse the repository at this point in the history
  • Loading branch information
awssdkgo committed May 21, 2018
1 parent 77c0cb5 commit cf00d54
Show file tree
Hide file tree
Showing 5 changed files with 160 additions and 16 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Release v1.13.53 (2018-05-21)
===

### Service Client Updates
* `service/cloudformation`: Updates service API and documentation
* 1) Filtered Update for StackSet based on Accounts and Regions: This feature will allow flexibility for the customers to roll out updates on a StackSet based on specific Accounts and Regions. 2) Support for customized ExecutionRoleName: This feature will allow customers to attach ExecutionRoleName to the StackSet thus ensuring more security and controlling the behavior of any AWS resources in the target accounts.

Release v1.13.52 (2018-05-18)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.13.52"
const SDKVersion = "1.13.53"
21 changes: 17 additions & 4 deletions models/apis/cloudformation/2010-05-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,8 @@
{"shape":"OperationInProgressException"},
{"shape":"OperationIdAlreadyExistsException"},
{"shape":"StaleRequestException"},
{"shape":"InvalidOperationException"}
{"shape":"InvalidOperationException"},
{"shape":"StackInstanceNotFoundException"}
]
},
"UpdateTerminationProtection":{
Expand Down Expand Up @@ -889,6 +890,7 @@
"Capabilities":{"shape":"Capabilities"},
"Tags":{"shape":"Tags"},
"AdministrationRoleARN":{"shape":"RoleARN"},
"ExecutionRoleName":{"shape":"ExecutionRoleName"},
"ClientRequestToken":{
"shape":"ClientRequestToken",
"idempotencyToken":true
Expand Down Expand Up @@ -1169,6 +1171,12 @@
"members":{
}
},
"ExecutionRoleName":{
"type":"string",
"max":64,
"min":1,
"pattern":"[a-zA-Z_0-9+=,.@-]+"
},
"ExecutionStatus":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -1966,7 +1974,8 @@
"Capabilities":{"shape":"Capabilities"},
"Tags":{"shape":"Tags"},
"StackSetARN":{"shape":"StackSetARN"},
"AdministrationRoleARN":{"shape":"RoleARN"}
"AdministrationRoleARN":{"shape":"RoleARN"},
"ExecutionRoleName":{"shape":"ExecutionRoleName"}
}
},
"StackSetARN":{"type":"string"},
Expand Down Expand Up @@ -2008,6 +2017,7 @@
"OperationPreferences":{"shape":"StackSetOperationPreferences"},
"RetainStacks":{"shape":"RetainStacksNullable"},
"AdministrationRoleARN":{"shape":"RoleARN"},
"ExecutionRoleName":{"shape":"ExecutionRoleName"},
"CreationTimestamp":{"shape":"Timestamp"},
"EndTimestamp":{"shape":"Timestamp"}
}
Expand Down Expand Up @@ -2292,7 +2302,7 @@
"Regions"
],
"members":{
"StackSetName":{"shape":"StackSetName"},
"StackSetName":{"shape":"StackSetNameOrId"},
"Accounts":{"shape":"AccountList"},
"Regions":{"shape":"RegionList"},
"ParameterOverrides":{"shape":"Parameters"},
Expand Down Expand Up @@ -2329,10 +2339,13 @@
"Tags":{"shape":"Tags"},
"OperationPreferences":{"shape":"StackSetOperationPreferences"},
"AdministrationRoleARN":{"shape":"RoleARN"},
"ExecutionRoleName":{"shape":"ExecutionRoleName"},
"OperationId":{
"shape":"ClientRequestToken",
"idempotencyToken":true
}
},
"Accounts":{"shape":"AccountList"},
"Regions":{"shape":"RegionList"}
}
},
"UpdateStackSetOutput":{
Expand Down

0 comments on commit cf00d54

Please sign in to comment.