Skip to content

Commit

Permalink
Release v1.25.21 (2019-10-28) (#2917)
Browse files Browse the repository at this point in the history
Release v1.25.21 (2019-10-28)
===

### Service Client Updates
* `service/s3`: Updates service API, documentation, and examples
  * Adding support in SelectObjectContent for scanning a portion of an object specified by a scan range.
  • Loading branch information
aws-sdk-go-automation committed Oct 28, 2019
1 parent 8d91b6a commit 39208f4
Show file tree
Hide file tree
Showing 9 changed files with 325 additions and 229 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,10 @@
Release v1.25.21 (2019-10-28)
===

### Service Client Updates
* `service/s3`: Updates service API, documentation, and examples
* Adding support in SelectObjectContent for scanning a portion of an object specified by a scan range.

Release v1.25.20 (2019-10-28)
===

Expand Down
7 changes: 7 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.25.20"
const SDKVersion = "1.25.21"
12 changes: 11 additions & 1 deletion models/apis/s3/2006-03-01/api-2.json
Expand Up @@ -2296,6 +2296,7 @@
"ReplicaKmsKeyID":{"shape":"ReplicaKmsKeyID"}
}
},
"End":{"type":"long"},
"EndEvent":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -5988,6 +5989,13 @@
},
"locationName":"SSE-S3"
},
"ScanRange":{
"type":"structure",
"members":{
"Start":{"shape":"Start"},
"End":{"shape":"End"}
}
},
"SelectObjectContentEventStream":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -6046,7 +6054,8 @@
"ExpressionType":{"shape":"ExpressionType"},
"RequestProgress":{"shape":"RequestProgress"},
"InputSerialization":{"shape":"InputSerialization"},
"OutputSerialization":{"shape":"OutputSerialization"}
"OutputSerialization":{"shape":"OutputSerialization"},
"ScanRange":{"shape":"ScanRange"}
}
},
"SelectParameters":{
Expand Down Expand Up @@ -6122,6 +6131,7 @@
"Disabled"
]
},
"Start":{"type":"long"},
"StartAfter":{"type":"string"},
"Stats":{
"type":"structure",
Expand Down
18 changes: 18 additions & 0 deletions models/apis/s3/2006-03-01/docs-2.json
Expand Up @@ -1067,6 +1067,12 @@
"Destination$EncryptionConfiguration": "<p>A container that provides information about encryption. If <code>SourceSelectionCriteria</code> is specified, you must specify this element.</p>"
}
},
"End": {
"base": null,
"refs": {
"ScanRange$End": "<p>Specifies the end of the byte range. This parameter is optional. Valid values: non-negative integers. The default value is one less than the size of the object being queried.</p>"
}
},
"EndEvent": {
"base": "<p/>",
"refs": {
Expand Down Expand Up @@ -3229,6 +3235,12 @@
"InventoryEncryption$SSES3": "<p>Specifies the use of SSE-S3 to encrypt delivered Inventory reports.</p>"
}
},
"ScanRange": {
"base": null,
"refs": {
"SelectObjectContentRequest$ScanRange": "<p>Specifies the byte range of the object to get the records from. A record is processed when its first byte is contained by the range. This parameter is optional, but when specified, it must not be empty. See RFC 2616, Section 14.35.1 about how to specify the start and end of the range.</p>"
}
},
"SelectObjectContentEventStream": {
"base": "<p/>",
"refs": {
Expand Down Expand Up @@ -3329,6 +3341,12 @@
"SseKmsEncryptedObjects$Status": "<p>Specifies whether Amazon S3 replicates objects created with server-side encryption using an AWS KMS-managed key.</p>"
}
},
"Start": {
"base": null,
"refs": {
"ScanRange$Start": "<p>Specifies the start of the byte range. This parameter is optional. Valid values: non-negative integers. The default value is 0.</p>"
}
},
"StartAfter": {
"base": null,
"refs": {
Expand Down

0 comments on commit 39208f4

Please sign in to comment.