Skip to content

Commit

Permalink
Release v1.35.16 (2020-10-27) (#3614)
Browse files Browse the repository at this point in the history
Release v1.35.16 (2020-10-27)
===

### Service Client Updates
* `service/glue`: Updates service API and documentation
  * AWS Glue machine learning transforms now support encryption-at-rest for labels and trained models.
  • Loading branch information
aws-sdk-go-automation authored Oct 27, 2020
1 parent 1587d73 commit 0de8e48
Show file tree
Hide file tree
Showing 7 changed files with 362 additions and 117 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.35.16 (2020-10-27)
===

### Service Client Updates
* `service/glue`: Updates service API and documentation
* AWS Glue machine learning transforms now support encryption-at-rest for labels and trained models.

Release v1.35.15 (2020-10-26)
===

Expand Down
2 changes: 2 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
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.35.15"
const SDKVersion = "1.35.16"
31 changes: 28 additions & 3 deletions models/apis/glue/2017-03-31/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -3213,7 +3213,8 @@
"NumberOfWorkers":{"shape":"NullableInteger"},
"Timeout":{"shape":"Timeout"},
"MaxRetries":{"shape":"NullableInteger"},
"Tags":{"shape":"TagsMap"}
"Tags":{"shape":"TagsMap"},
"TransformEncryption":{"shape":"TransformEncryption"}
}
},
"CreateMLTransformResponse":{
Expand Down Expand Up @@ -4397,7 +4398,8 @@
"WorkerType":{"shape":"WorkerType"},
"NumberOfWorkers":{"shape":"NullableInteger"},
"Timeout":{"shape":"Timeout"},
"MaxRetries":{"shape":"NullableInteger"}
"MaxRetries":{"shape":"NullableInteger"},
"TransformEncryption":{"shape":"TransformEncryption"}
}
},
"GetMLTransformsRequest":{
Expand Down Expand Up @@ -5348,7 +5350,8 @@
"WorkerType":{"shape":"WorkerType"},
"NumberOfWorkers":{"shape":"NullableInteger"},
"Timeout":{"shape":"Timeout"},
"MaxRetries":{"shape":"NullableInteger"}
"MaxRetries":{"shape":"NullableInteger"},
"TransformEncryption":{"shape":"TransformEncryption"}
}
},
"MLTransformNotReadyException":{
Expand All @@ -5358,6 +5361,21 @@
},
"exception":true
},
"MLUserDataEncryption":{
"type":"structure",
"required":["MlUserDataEncryptionMode"],
"members":{
"MlUserDataEncryptionMode":{"shape":"MLUserDataEncryptionModeString"},
"KmsKeyId":{"shape":"NameString"}
}
},
"MLUserDataEncryptionModeString":{
"type":"string",
"enum":[
"DISABLED",
"SSE-KMS"
]
},
"MapValue":{
"type":"map",
"key":{"shape":"GenericString"},
Expand Down Expand Up @@ -6494,6 +6512,13 @@
"max":10,
"min":1
},
"TransformEncryption":{
"type":"structure",
"members":{
"MlUserDataEncryption":{"shape":"MLUserDataEncryption"},
"TaskRunSecurityConfigurationName":{"shape":"NameString"}
}
},
"TransformFilterCriteria":{
"type":"structure",
"members":{
Expand Down
142 changes: 82 additions & 60 deletions models/apis/glue/2017-03-31/docs-2.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions models/endpoints/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -727,6 +727,7 @@
"protocols" : [ "http", "https" ]
},
"endpoints" : {
"af-south-1" : { },
"ap-east-1" : { },
"ap-northeast-1" : { },
"ap-northeast-2" : { },
Expand All @@ -736,6 +737,7 @@
"ca-central-1" : { },
"eu-central-1" : { },
"eu-north-1" : { },
"eu-south-1" : { },
"eu-west-1" : { },
"eu-west-2" : { },
"eu-west-3" : { },
Expand Down
Loading

0 comments on commit 0de8e48

Please sign in to comment.