Skip to content

Commit

Permalink
Release v1.38.54 (2021-06-03) (#3941)
Browse files Browse the repository at this point in the history
Release v1.38.54 (2021-06-03)
===

### Service Client Updates
* `service/forecast`: Updates service API and documentation
* `service/route53resolver`: Updates service documentation
* `service/s3`: Updates service API, documentation, and examples
  * S3 Inventory now supports Bucket Key Status
* `service/s3control`: Updates service API and documentation
  * Amazon S3 Batch Operations now supports S3 Bucket Keys.
* `service/ssm`: Updates service documentation
  * Documentation updates for ssm to fix customer reported issue
  • Loading branch information
aws-sdk-go-automation authored Jun 3, 2021
1 parent 762fcae commit 0b5551c
Show file tree
Hide file tree
Showing 20 changed files with 436 additions and 299 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
Release v1.38.54 (2021-06-03)
===

### Service Client Updates
* `service/forecast`: Updates service API and documentation
* `service/route53resolver`: Updates service documentation
* `service/s3`: Updates service API, documentation, and examples
* S3 Inventory now supports Bucket Key Status
* `service/s3control`: Updates service API and documentation
* Amazon S3 Batch Operations now supports S3 Bucket Keys.
* `service/ssm`: Updates service documentation
* Documentation updates for ssm to fix customer reported issue

Release v1.38.53 (2021-06-02)
===

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.38.53"
const SDKVersion = "1.38.54"
9 changes: 8 additions & 1 deletion models/apis/forecast/2018-06-26/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,10 @@
"geolocation"
]
},
"AutoMLOverrideStrategy":{
"type":"string",
"enum":["LatencyOptimized"]
},
"Boolean":{"type":"boolean"},
"CategoricalParameterRange":{
"type":"structure",
Expand Down Expand Up @@ -712,6 +716,7 @@
"ForecastHorizon":{"shape":"Integer"},
"ForecastTypes":{"shape":"ForecastTypes"},
"PerformAutoML":{"shape":"Boolean"},
"AutoMLOverrideStrategy":{"shape":"AutoMLOverrideStrategy"},
"PerformHPO":{"shape":"Boolean"},
"TrainingParameters":{"shape":"TrainingParameters"},
"EvaluationParameters":{"shape":"EvaluationParameters"},
Expand Down Expand Up @@ -996,6 +1001,7 @@
"ForecastHorizon":{"shape":"Integer"},
"ForecastTypes":{"shape":"ForecastTypes"},
"PerformAutoML":{"shape":"Boolean"},
"AutoMLOverrideStrategy":{"shape":"AutoMLOverrideStrategy"},
"PerformHPO":{"shape":"Boolean"},
"TrainingParameters":{"shape":"TrainingParameters"},
"EvaluationParameters":{"shape":"EvaluationParameters"},
Expand Down Expand Up @@ -1216,7 +1222,8 @@
"GetAccuracyMetricsResponse":{
"type":"structure",
"members":{
"PredictorEvaluationResults":{"shape":"PredictorEvaluationResults"}
"PredictorEvaluationResults":{"shape":"PredictorEvaluationResults"},
"AutoMLOverrideStrategy":{"shape":"AutoMLOverrideStrategy"}
}
},
"HyperParameterTuningJobConfig":{
Expand Down
8 changes: 8 additions & 0 deletions models/apis/forecast/2018-06-26/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,14 @@
"SchemaAttribute$AttributeType": "<p>The data type of the field.</p>"
}
},
"AutoMLOverrideStrategy": {
"base": null,
"refs": {
"CreatePredictorRequest$AutoMLOverrideStrategy": "<p>Used to overide the default AutoML strategy, which is to optimize predictor accuracy. To apply an AutoML strategy that minimizes training time, use <code>LatencyOptimized</code>.</p> <p>This parameter is only valid for predictors trained using AutoML.</p>",
"DescribePredictorResponse$AutoMLOverrideStrategy": "<p>The AutoML strategy used to train the predictor. Unless <code>LatencyOptimized</code> is specified, the AutoML strategy optimizes predictor accuracy.</p> <p>This parameter is only valid for predictors trained using AutoML.</p>",
"GetAccuracyMetricsResponse$AutoMLOverrideStrategy": "<p>The AutoML strategy used to train the predictor. Unless <code>LatencyOptimized</code> is specified, the AutoML strategy optimizes predictor accuracy.</p> <p>This parameter is only valid for predictors trained using AutoML.</p>"
}
},
"Boolean": {
"base": null,
"refs": {
Expand Down
90 changes: 45 additions & 45 deletions models/apis/route53resolver/2018-04-01/docs-2.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion models/apis/s3/2006-03-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -4232,7 +4232,8 @@
"ObjectLockRetainUntilDate",
"ObjectLockMode",
"ObjectLockLegalHoldStatus",
"IntelligentTieringAccessTier"
"IntelligentTieringAccessTier",
"BucketKeyStatus"
]
},
"InventoryOptionalFields":{
Expand Down
4 changes: 2 additions & 2 deletions models/apis/s3/2006-03-01/docs-2.json

Large diffs are not rendered by default.

146 changes: 73 additions & 73 deletions models/apis/s3/2006-03-01/examples-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,40 +84,40 @@
"CreateBucket": [
{
"input": {
"Bucket": "examplebucket"
"Bucket": "examplebucket",
"CreateBucketConfiguration": {
"LocationConstraint": "eu-west-1"
}
},
"output": {
"Location": "/examplebucket"
"Location": "http://examplebucket.<Region>.s3.amazonaws.com/"
},
"comments": {
"input": {
},
"output": {
}
},
"description": "The following example creates a bucket.",
"id": "to-create-a-bucket--1472851826060",
"title": "To create a bucket "
"description": "The following example creates a bucket. The request specifies an AWS region where to create the bucket.",
"id": "to-create-a-bucket-in-a-specific-region-1483399072992",
"title": "To create a bucket in a specific region"
},
{
"input": {
"Bucket": "examplebucket",
"CreateBucketConfiguration": {
"LocationConstraint": "eu-west-1"
}
"Bucket": "examplebucket"
},
"output": {
"Location": "http://examplebucket.<Region>.s3.amazonaws.com/"
"Location": "/examplebucket"
},
"comments": {
"input": {
},
"output": {
}
},
"description": "The following example creates a bucket. The request specifies an AWS region where to create the bucket.",
"id": "to-create-a-bucket-in-a-specific-region-1483399072992",
"title": "To create a bucket in a specific region"
"description": "The following example creates a bucket.",
"id": "to-create-a-bucket--1472851826060",
"title": "To create a bucket "
}
],
"CreateMultipartUpload": [
Expand Down Expand Up @@ -257,35 +257,35 @@
"DeleteObject": [
{
"input": {
"Bucket": "examplebucket",
"Key": "objectkey.jpg"
},
"output": {
"Bucket": "ExampleBucket",
"Key": "HappyFace.jpg"
},
"comments": {
"input": {
},
"output": {
}
},
"description": "The following example deletes an object from an S3 bucket.",
"id": "to-delete-an-object-1472850136595",
"title": "To delete an object"
"description": "The following example deletes an object from a non-versioned bucket.",
"id": "to-delete-an-object-from-a-non-versioned-bucket-1481588533089",
"title": "To delete an object (from a non-versioned bucket)"
},
{
"input": {
"Bucket": "ExampleBucket",
"Key": "HappyFace.jpg"
"Bucket": "examplebucket",
"Key": "objectkey.jpg"
},
"output": {
},
"comments": {
"input": {
},
"output": {
}
},
"description": "The following example deletes an object from a non-versioned bucket.",
"id": "to-delete-an-object-from-a-non-versioned-bucket-1481588533089",
"title": "To delete an object (from a non-versioned bucket)"
"description": "The following example deletes an object from an S3 bucket.",
"id": "to-delete-an-object-1472850136595",
"title": "To delete an object"
}
],
"DeleteObjectTagging": [
Expand Down Expand Up @@ -334,12 +334,10 @@
"Delete": {
"Objects": [
{
"Key": "HappyFace.jpg",
"VersionId": "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b"
"Key": "objectkey1"
},
{
"Key": "HappyFace.jpg",
"VersionId": "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd"
"Key": "objectkey2"
}
],
"Quiet": false
Expand All @@ -348,12 +346,14 @@
"output": {
"Deleted": [
{
"Key": "HappyFace.jpg",
"VersionId": "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd"
"DeleteMarker": "true",
"DeleteMarkerVersionId": "A._w1z6EFiCF5uhtQMDal9JDkID9tQ7F",
"Key": "objectkey1"
},
{
"Key": "HappyFace.jpg",
"VersionId": "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b"
"DeleteMarker": "true",
"DeleteMarkerVersionId": "iOd_ORxhkKe_e8G8_oSGxt2PjsCZKlkt",
"Key": "objectkey2"
}
]
},
Expand All @@ -363,20 +363,22 @@
"output": {
}
},
"description": "The following example deletes objects from a bucket. The request specifies object versions. S3 deletes specific object versions and returns the key and versions of deleted objects in the response.",
"id": "to-delete-multiple-object-versions-from-a-versioned-bucket-1483147087737",
"title": "To delete multiple object versions from a versioned bucket"
"description": "The following example deletes objects from a bucket. The bucket is versioned, and the request does not specify the object version to delete. In this case, all versions remain in the bucket and S3 adds a delete marker.",
"id": "to-delete-multiple-objects-from-a-versioned-bucket-1483146248805",
"title": "To delete multiple objects from a versioned bucket"
},
{
"input": {
"Bucket": "examplebucket",
"Delete": {
"Objects": [
{
"Key": "objectkey1"
"Key": "HappyFace.jpg",
"VersionId": "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b"
},
{
"Key": "objectkey2"
"Key": "HappyFace.jpg",
"VersionId": "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd"
}
],
"Quiet": false
Expand All @@ -385,14 +387,12 @@
"output": {
"Deleted": [
{
"DeleteMarker": "true",
"DeleteMarkerVersionId": "A._w1z6EFiCF5uhtQMDal9JDkID9tQ7F",
"Key": "objectkey1"
"Key": "HappyFace.jpg",
"VersionId": "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd"
},
{
"DeleteMarker": "true",
"DeleteMarkerVersionId": "iOd_ORxhkKe_e8G8_oSGxt2PjsCZKlkt",
"Key": "objectkey2"
"Key": "HappyFace.jpg",
"VersionId": "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b"
}
]
},
Expand All @@ -402,9 +402,9 @@
"output": {
}
},
"description": "The following example deletes objects from a bucket. The bucket is versioned, and the request does not specify the object version to delete. In this case, all versions remain in the bucket and S3 adds a delete marker.",
"id": "to-delete-multiple-objects-from-a-versioned-bucket-1483146248805",
"title": "To delete multiple objects from a versioned bucket"
"description": "The following example deletes objects from a bucket. The request specifies object versions. S3 deletes specific object versions and returns the key and versions of deleted objects in the response.",
"id": "to-delete-multiple-object-versions-from-a-versioned-bucket-1483147087737",
"title": "To delete multiple object versions from a versioned bucket"
}
],
"GetBucketCors": [
Expand Down Expand Up @@ -1565,6 +1565,26 @@
}
],
"PutObject": [
{
"input": {
"Body": "HappyFace.jpg",
"Bucket": "examplebucket",
"Key": "HappyFace.jpg"
},
"output": {
"ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
"VersionId": "tpf3zF08nBplQK1XLOefGskR7mGDwcDk"
},
"comments": {
"input": {
},
"output": {
}
},
"description": "The following example uploads an object to a versioning-enabled bucket. The source file is specified using Windows file syntax. S3 returns VersionId of the newly created object.",
"id": "to-upload-an-object-1481760101010",
"title": "To upload an object"
},
{
"input": {
"Body": "filetoupload",
Expand Down Expand Up @@ -1614,23 +1634,23 @@
},
{
"input": {
"Body": "HappyFace.jpg",
"Body": "filetoupload",
"Bucket": "examplebucket",
"Key": "HappyFace.jpg"
"Key": "objectkey"
},
"output": {
"ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
"VersionId": "tpf3zF08nBplQK1XLOefGskR7mGDwcDk"
"VersionId": "Bvq0EDKxOcXLJXNo_Lkz37eM3R4pfzyQ"
},
"comments": {
"input": {
},
"output": {
}
},
"description": "The following example uploads an object to a versioning-enabled bucket. The source file is specified using Windows file syntax. S3 returns VersionId of the newly created object.",
"id": "to-upload-an-object-1481760101010",
"title": "To upload an object"
"description": "The following example creates an object. If the bucket is versioning enabled, S3 returns version ID in response.",
"id": "to-create-an-object-1483147613675",
"title": "To create an object."
},
{
"input": {
Expand Down Expand Up @@ -1676,26 +1696,6 @@
"id": "to-upload-an-object-and-specify-optional-tags-1481762310955",
"title": "To upload an object and specify optional tags"
},
{
"input": {
"Body": "filetoupload",
"Bucket": "examplebucket",
"Key": "objectkey"
},
"output": {
"ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
"VersionId": "Bvq0EDKxOcXLJXNo_Lkz37eM3R4pfzyQ"
},
"comments": {
"input": {
},
"output": {
}
},
"description": "The following example creates an object. If the bucket is versioning enabled, S3 returns version ID in response.",
"id": "to-create-an-object-1483147613675",
"title": "To create an object."
},
{
"input": {
"ACL": "authenticated-read",
Expand Down
3 changes: 2 additions & 1 deletion models/apis/s3control/2018-08-20/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2903,7 +2903,8 @@
"TargetKeyPrefix":{"shape":"NonEmptyMaxLength1024String"},
"ObjectLockLegalHoldStatus":{"shape":"S3ObjectLockLegalHoldStatus"},
"ObjectLockMode":{"shape":"S3ObjectLockMode"},
"ObjectLockRetainUntilDate":{"shape":"TimeStamp"}
"ObjectLockRetainUntilDate":{"shape":"TimeStamp"},
"BucketKeyEnabled":{"shape":"Boolean"}
}
},
"S3DeleteObjectTaggingOperation":{
Expand Down
1 change: 1 addition & 0 deletions models/apis/s3control/2018-08-20/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@
"JobReport$Enabled": "<p>Indicates whether the specified job will generate a job-completion report.</p>",
"ObjectLambdaConfiguration$CloudWatchMetricsEnabled": "<p>A container for whether the CloudWatch metrics configuration is enabled.</p>",
"S3CopyObjectOperation$RequesterPays": "<p/>",
"S3CopyObjectOperation$BucketKeyEnabled": "<p>Specifies whether Amazon S3 should use an S3 Bucket Key for object encryption with server-side encryption using AWS KMS (SSE-KMS). Setting this header to <code>true</code> causes Amazon S3 to use an S3 Bucket Key for object encryption with SSE-KMS.</p> <p>Specifying this header with an <i>object</i> action doesn’t affect <i>bucket-level</i> settings for S3 Bucket Key.</p>",
"S3ObjectMetadata$RequesterCharged": "<p/>",
"S3SetObjectRetentionOperation$BypassGovernanceRetention": "<p>Indicates if the action should be applied to objects in the Batch Operations job even if they have Object Lock <code> GOVERNANCE</code> type in place.</p>"
}
Expand Down
Loading

0 comments on commit 0b5551c

Please sign in to comment.