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

Release v1.44.132 #4615

Merged
merged 1 commit into from Nov 7, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,27 @@
Release v1.44.132 (2022-11-07)
===

### Service Client Updates
* `service/athena`: Updates service API and documentation
* Adds support for using Query Result Reuse
* `service/autoscaling`: Updates service API and documentation
* This release adds support for two new attributes for attribute-based instance type selection - NetworkBandwidthGbps and AllowedInstanceTypes.
* `service/cloudtrail`: Updates service API and documentation
* This release includes support for configuring a delegated administrator to manage an AWS Organizations organization CloudTrail trails and event data stores, and AWS Key Management Service encryption of CloudTrail Lake event data stores.
* `service/ec2`: Updates service API and documentation
* This release adds support for two new attributes for attribute-based instance type selection - NetworkBandwidthGbps and AllowedInstanceTypes.
* `service/elasticache`: Updates service API and documentation
* Added support for IPv6 and dual stack for Memcached and Redis clusters. Customers can now launch new Redis and Memcached clusters with IPv6 and dual stack networking support.
* `service/mediaconvert`: Updates service API and documentation
* The AWS Elemental MediaConvert SDK has added support for setting the SDR reference white point for HDR conversions and conversion of HDR10 to DolbyVision without mastering metadata.
* `service/models.lex.v2`: Updates service API, documentation, and paginators
* `service/ssm`: Updates service API and documentation
* This release includes support for applying a CloudWatch alarm to multi account multi region Systems Manager Automation
* `service/wafv2`: Updates service documentation
* `service/wellarchitected`: Updates service API, documentation, and paginators
* `service/workspaces`: Updates service API and documentation
* This release adds protocols attribute to workspaces properties data type. This enables customers to migrate workspaces from PC over IP (PCoIP) to WorkSpaces Streaming Protocol (WSP) using create and modify workspaces public APIs.

Release v1.44.131 (2022-11-04)
===

Expand Down
6 changes: 6 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.44.131"
const SDKVersion = "1.44.132"
36 changes: 33 additions & 3 deletions models/apis/athena/2017-05-18/api-2.json
Expand Up @@ -236,7 +236,8 @@
"output":{"shape":"GetQueryResultsOutput"},
"errors":[
{"shape":"InternalServerException"},
{"shape":"InvalidRequestException"}
{"shape":"InvalidRequestException"},
{"shape":"TooManyRequestsException"}
]
},
"GetQueryRuntimeStatistics":{
Expand Down Expand Up @@ -519,6 +520,11 @@
"S3AclOption":{"shape":"S3AclOption"}
}
},
"Age":{
"type":"integer",
"max":10080,
"min":0
},
"AmazonResourceName":{
"type":"string",
"max":1011,
Expand Down Expand Up @@ -1365,6 +1371,7 @@
"Query":{"shape":"QueryString"},
"StatementType":{"shape":"StatementType"},
"ResultConfiguration":{"shape":"ResultConfiguration"},
"ResultReuseConfiguration":{"shape":"ResultReuseConfiguration"},
"QueryExecutionContext":{"shape":"QueryExecutionContext"},
"Status":{"shape":"QueryExecutionStatus"},
"Statistics":{"shape":"QueryExecutionStatistics"},
Expand Down Expand Up @@ -1415,7 +1422,8 @@
"TotalExecutionTimeInMillis":{"shape":"Long"},
"QueryQueueTimeInMillis":{"shape":"Long"},
"QueryPlanningTimeInMillis":{"shape":"Long"},
"ServiceProcessingTimeInMillis":{"shape":"Long"}
"ServiceProcessingTimeInMillis":{"shape":"Long"},
"ResultReuseInformation":{"shape":"ResultReuseInformation"}
}
},
"QueryExecutionStatus":{
Expand Down Expand Up @@ -1522,6 +1530,27 @@
}
},
"ResultOutputLocation":{"type":"string"},
"ResultReuseByAgeConfiguration":{
"type":"structure",
"required":["Enabled"],
"members":{
"Enabled":{"shape":"Boolean"},
"MaxAgeInMinutes":{"shape":"Age"}
}
},
"ResultReuseConfiguration":{
"type":"structure",
"members":{
"ResultReuseByAgeConfiguration":{"shape":"ResultReuseByAgeConfiguration"}
}
},
"ResultReuseInformation":{
"type":"structure",
"required":["ReusedPreviousResult"],
"members":{
"ReusedPreviousResult":{"shape":"Boolean"}
}
},
"ResultSet":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1561,7 +1590,8 @@
"QueryExecutionContext":{"shape":"QueryExecutionContext"},
"ResultConfiguration":{"shape":"ResultConfiguration"},
"WorkGroup":{"shape":"WorkGroupName"},
"ExecutionParameters":{"shape":"ExecutionParameters"}
"ExecutionParameters":{"shape":"ExecutionParameters"},
"ResultReuseConfiguration":{"shape":"ResultReuseConfiguration"}
}
},
"StartQueryExecutionOutput":{
Expand Down
29 changes: 28 additions & 1 deletion models/apis/athena/2017-05-18/docs-2.json
Expand Up @@ -48,6 +48,12 @@
"ResultConfigurationUpdates$AclConfiguration": "<p>The ACL configuration for the query results.</p>"
}
},
"Age": {
"base": null,
"refs": {
"ResultReuseByAgeConfiguration$MaxAgeInMinutes": "<p>Specifies, in minutes, the maximum age of a previous query result that Athena should consider for reuse. The default is 60.</p>"
}
},
"AmazonResourceName": {
"base": null,
"refs": {
Expand Down Expand Up @@ -104,7 +110,9 @@
"base": null,
"refs": {
"AthenaError$Retryable": "<p>True if the query might succeed if resubmitted.</p>",
"ColumnInfo$CaseSensitive": "<p>Indicates whether values in the column are case-sensitive.</p>"
"ColumnInfo$CaseSensitive": "<p>Indicates whether values in the column are case-sensitive.</p>",
"ResultReuseByAgeConfiguration$Enabled": "<p>True if previous query results can be reused when the query is run; otherwise, false. The default is false.</p>",
"ResultReuseInformation$ReusedPreviousResult": "<p>True if a previous query result was reused; false if the result was generated from a new run of the query.</p>"
}
},
"BoxedBoolean": {
Expand Down Expand Up @@ -970,6 +978,25 @@
"ResultConfigurationUpdates$OutputLocation": "<p>The location in Amazon S3 where your query results are stored, such as <code>s3://path/to/query/bucket/</code>. For more information, see <a href=\"https://docs.aws.amazon.com/athena/latest/ug/querying.html\">Query Results</a> If workgroup settings override client-side settings, then the query uses the location for the query results and the encryption configuration that are specified for the workgroup. The \"workgroup settings override\" is specified in <code>EnforceWorkGroupConfiguration</code> (true/false) in the <code>WorkGroupConfiguration</code>. See <a>WorkGroupConfiguration$EnforceWorkGroupConfiguration</a>.</p>"
}
},
"ResultReuseByAgeConfiguration": {
"base": "<p>Specifies whether previous query results are reused, and if so, their maximum age.</p>",
"refs": {
"ResultReuseConfiguration$ResultReuseByAgeConfiguration": "<p>Specifies whether previous query results are reused, and if so, their maximum age.</p>"
}
},
"ResultReuseConfiguration": {
"base": "<p>Specifies the query result reuse behavior for the query.</p>",
"refs": {
"QueryExecution$ResultReuseConfiguration": "<p>Specifies the query result reuse behavior that was used for the query.</p>",
"StartQueryExecutionInput$ResultReuseConfiguration": "<p>Specifies the query result reuse behavior for the query.</p>"
}
},
"ResultReuseInformation": {
"base": "<p>Contains information about whether the result of a previous query was reused.</p>",
"refs": {
"QueryExecutionStatistics$ResultReuseInformation": "<p>Contains information about whether previous query results were reused for the query.</p>"
}
},
"ResultSet": {
"base": "<p>The metadata and rows that make up a query result set. The metadata describes the column structure and data types. To return a <code>ResultSet</code> object, use <a>GetQueryResults</a>.</p>",
"refs": {
Expand Down