Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.10.33 #1493

Merged
merged 1 commit into from
Aug 25, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
Release v1.10.33 (2017-08-25)
===

### Service Client Updates
* `service/cloudformation`: Updates service API and documentation
* Rollback triggers enable you to have AWS CloudFormation monitor the state of your application during stack creation and updating, and to roll back that operation if the application breaches the threshold of any of the alarms you've specified.
* `service/gamelift`: Updates service API
* Update spelling of MatchmakingTicket status values for internal consistency.
* `service/rds`: Updates service API and documentation
* Option group options now contain additional properties that identify requirements for certain options. Check these properties to determine if your DB instance must be in a VPC or have auto minor upgrade turned on before you can use an option. Check to see if you can downgrade the version of an option after you have installed it.

### SDK Enhancements
* `example/service/ec2`: Add EC2 list instances example ([#1492](https://github.com/aws/aws-sdk-go/pull/1492))

Release v1.10.32 (2017-08-25)
===

Expand Down
1 change: 0 additions & 1 deletion CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
### SDK Features

### SDK Enhancements
* `example/service/ec2`: Add EC2 list instances example ([#1492](https://github.com/aws/aws-sdk-go/pull/1492))

### SDK Bugs
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.10.32"
const SDKVersion = "1.10.33"
35 changes: 35 additions & 0 deletions models/apis/cloudformation/2010-05-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -614,6 +614,7 @@
},
"exception":true
},
"Arn":{"type":"string"},
"CancelUpdateStackInput":{
"type":"structure",
"required":["StackName"],
Expand Down Expand Up @@ -773,6 +774,7 @@
"Capabilities":{"shape":"Capabilities"},
"ResourceTypes":{"shape":"ResourceTypes"},
"RoleARN":{"shape":"RoleARN"},
"RollbackConfiguration":{"shape":"RollbackConfiguration"},
"NotificationARNs":{"shape":"NotificationARNs"},
"Tags":{"shape":"Tags"},
"ChangeSetName":{"shape":"ChangeSetName"},
Expand All @@ -797,6 +799,7 @@
"TemplateURL":{"shape":"TemplateURL"},
"Parameters":{"shape":"Parameters"},
"DisableRollback":{"shape":"DisableRollback"},
"RollbackConfiguration":{"shape":"RollbackConfiguration"},
"TimeoutInMinutes":{"shape":"TimeoutMinutes"},
"NotificationARNs":{"shape":"NotificationARNs"},
"Capabilities":{"shape":"Capabilities"},
Expand Down Expand Up @@ -972,6 +975,7 @@
"Status":{"shape":"ChangeSetStatus"},
"StatusReason":{"shape":"ChangeSetStatusReason"},
"NotificationARNs":{"shape":"NotificationARNs"},
"RollbackConfiguration":{"shape":"RollbackConfiguration"},
"Capabilities":{"shape":"Capabilities"},
"Tags":{"shape":"Tags"},
"Changes":{"shape":"Changes"},
Expand Down Expand Up @@ -1420,6 +1424,11 @@
"min":1
},
"Metadata":{"type":"string"},
"MonitoringTimeInMinutes":{
"type":"integer",
"max":180,
"min":0
},
"NameAlreadyExistsException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1660,6 +1669,29 @@
"max":2048,
"min":20
},
"RollbackConfiguration":{
"type":"structure",
"members":{
"RollbackTriggers":{"shape":"RollbackTriggers"},
"MonitoringTimeInMinutes":{"shape":"MonitoringTimeInMinutes"}
}
},
"RollbackTrigger":{
"type":"structure",
"required":[
"Arn",
"Type"
],
"members":{
"Arn":{"shape":"Arn"},
"Type":{"shape":"Type"}
}
},
"RollbackTriggers":{
"type":"list",
"member":{"shape":"RollbackTrigger"},
"max":5
},
"Scope":{
"type":"list",
"member":{"shape":"ResourceAttribute"}
Expand Down Expand Up @@ -1703,6 +1735,7 @@
"Parameters":{"shape":"Parameters"},
"CreationTime":{"shape":"CreationTime"},
"LastUpdatedTime":{"shape":"LastUpdatedTime"},
"RollbackConfiguration":{"shape":"RollbackConfiguration"},
"StackStatus":{"shape":"StackStatus"},
"StackStatusReason":{"shape":"StackStatusReason"},
"DisableRollback":{"shape":"DisableRollback"},
Expand Down Expand Up @@ -2180,6 +2213,7 @@
"type":"list",
"member":{"shape":"TransformName"}
},
"Type":{"type":"string"},
"UpdateStackInput":{
"type":"structure",
"required":["StackName"],
Expand All @@ -2194,6 +2228,7 @@
"Capabilities":{"shape":"Capabilities"},
"ResourceTypes":{"shape":"ResourceTypes"},
"RoleARN":{"shape":"RoleARN"},
"RollbackConfiguration":{"shape":"RollbackConfiguration"},
"StackPolicyBody":{"shape":"StackPolicyBody"},
"StackPolicyURL":{"shape":"StackPolicyURL"},
"NotificationARNs":{"shape":"NotificationARNs"},
Expand Down
Loading