Skip to content

Commit

Permalink
Release v1.13.21
Browse files Browse the repository at this point in the history
  • Loading branch information
awssdkgo committed Mar 26, 2018
1 parent 1290f14 commit fb28e64
Show file tree
Hide file tree
Showing 7 changed files with 790 additions and 127 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.21 (2018-03-26)
===

### Service Client Updates
* `service/dynamodb`: Updates service API and documentation
* Point-in-time recovery (PITR) provides continuous backups of your DynamoDB table data. With PITR, you do not have to worry about creating, maintaining, or scheduling backups. You enable PITR on your table and your backup is available for restore at any point in time from the moment you enable it, up to a maximum of the 35 preceding days. PITR provides continuous backups until you explicitly disable it. For more information, see the Amazon DynamoDB Developer Guide.

Release v1.13.20 (2018-03-23)
===

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.20"
const SDKVersion = "1.13.21"
110 changes: 107 additions & 3 deletions models/apis/dynamodb/2012-08-10/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,24 @@
{"shape":"InternalServerError"}
]
},
"RestoreTableToPointInTime":{
"name":"RestoreTableToPointInTime",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"RestoreTableToPointInTimeInput"},
"output":{"shape":"RestoreTableToPointInTimeOutput"},
"errors":[
{"shape":"TableAlreadyExistsException"},
{"shape":"TableNotFoundException"},
{"shape":"TableInUseException"},
{"shape":"LimitExceededException"},
{"shape":"InvalidRestoreTimeException"},
{"shape":"PointInTimeRecoveryUnavailableException"},
{"shape":"InternalServerError"}
]
},
"Scan":{
"name":"Scan",
"http":{
Expand Down Expand Up @@ -363,6 +381,20 @@
{"shape":"ResourceInUseException"}
]
},
"UpdateContinuousBackups":{
"name":"UpdateContinuousBackups",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"UpdateContinuousBackupsInput"},
"output":{"shape":"UpdateContinuousBackupsOutput"},
"errors":[
{"shape":"TableNotFoundException"},
{"shape":"ContinuousBackupsUnavailableException"},
{"shape":"InternalServerError"}
]
},
"UpdateGlobalTable":{
"name":"UpdateGlobalTable",
"http":{
Expand Down Expand Up @@ -706,7 +738,8 @@
"type":"structure",
"required":["ContinuousBackupsStatus"],
"members":{
"ContinuousBackupsStatus":{"shape":"ContinuousBackupsStatus"}
"ContinuousBackupsStatus":{"shape":"ContinuousBackupsStatus"},
"PointInTimeRecoveryDescription":{"shape":"PointInTimeRecoveryDescription"}
}
},
"ContinuousBackupsStatus":{
Expand Down Expand Up @@ -1144,6 +1177,13 @@
"exception":true,
"fault":true
},
"InvalidRestoreTimeException":{
"type":"structure",
"members":{
"message":{"shape":"ErrorMessage"}
},
"exception":true
},
"ItemCollectionKeyAttributeMap":{
"type":"map",
"key":{"shape":"AttributeName"},
Expand Down Expand Up @@ -1387,6 +1427,35 @@
"type":"list",
"member":{"shape":"NumberAttributeValue"}
},
"PointInTimeRecoveryDescription":{
"type":"structure",
"members":{
"PointInTimeRecoveryStatus":{"shape":"PointInTimeRecoveryStatus"},
"EarliestRestorableDateTime":{"shape":"Date"},
"LatestRestorableDateTime":{"shape":"Date"}
}
},
"PointInTimeRecoverySpecification":{
"type":"structure",
"required":["PointInTimeRecoveryEnabled"],
"members":{
"PointInTimeRecoveryEnabled":{"shape":"BooleanObject"}
}
},
"PointInTimeRecoveryStatus":{
"type":"string",
"enum":[
"ENABLED",
"DISABLED"
]
},
"PointInTimeRecoveryUnavailableException":{
"type":"structure",
"members":{
"message":{"shape":"ErrorMessage"}
},
"exception":true
},
"PositiveIntegerObject":{
"type":"integer",
"min":1
Expand Down Expand Up @@ -1576,7 +1645,6 @@
},
"exception":true
},
"RestoreDateTime":{"type":"timestamp"},
"RestoreInProgress":{"type":"boolean"},
"RestoreSummary":{
"type":"structure",
Expand All @@ -1587,7 +1655,7 @@
"members":{
"SourceBackupArn":{"shape":"BackupArn"},
"SourceTableArn":{"shape":"TableArn"},
"RestoreDateTime":{"shape":"RestoreDateTime"},
"RestoreDateTime":{"shape":"Date"},
"RestoreInProgress":{"shape":"RestoreInProgress"}
}
},
Expand All @@ -1608,6 +1676,25 @@
"TableDescription":{"shape":"TableDescription"}
}
},
"RestoreTableToPointInTimeInput":{
"type":"structure",
"required":[
"SourceTableName",
"TargetTableName"
],
"members":{
"SourceTableName":{"shape":"TableName"},
"TargetTableName":{"shape":"TableName"},
"UseLatestRestorableTime":{"shape":"BooleanObject"},
"RestoreDateTime":{"shape":"Date"}
}
},
"RestoreTableToPointInTimeOutput":{
"type":"structure",
"members":{
"TableDescription":{"shape":"TableDescription"}
}
},
"ReturnConsumedCapacity":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -1932,6 +2019,23 @@
"TagKeys":{"shape":"TagKeyList"}
}
},
"UpdateContinuousBackupsInput":{
"type":"structure",
"required":[
"TableName",
"PointInTimeRecoverySpecification"
],
"members":{
"TableName":{"shape":"TableName"},
"PointInTimeRecoverySpecification":{"shape":"PointInTimeRecoverySpecification"}
}
},
"UpdateContinuousBackupsOutput":{
"type":"structure",
"members":{
"ContinuousBackupsDescription":{"shape":"ContinuousBackupsDescription"}
}
},
"UpdateExpression":{"type":"string"},
"UpdateGlobalSecondaryIndexAction":{
"type":"structure",
Expand Down
Loading

0 comments on commit fb28e64

Please sign in to comment.