Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

Commit 3500f28

Browse files
Release v1.43.10 (2022-03-02) (#4300)
Release v1.43.10 (2022-03-02) === ### Service Client Updates * `service/athena`: Updates service API and documentation * This release adds support for S3 Object Ownership by allowing the S3 bucket owner full control canned ACL to be set when Athena writes query results to S3 buckets. * `service/cloudtrail`: Updates service API and documentation * Add bytesScanned field into responses of DescribeQuery and GetQueryResults. * `service/ecr`: Updates service API and documentation * This release adds support for tracking images lastRecordedPullTime. * `service/gamelift`: Updates service documentation * Minor updates to address errors. * `service/keyspaces`: Updates service API, documentation, waiters, paginators, and examples
1 parent 4adef35 commit 3500f28

File tree

25 files changed

+6866
-49
lines changed

25 files changed

+6866
-49
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
Release v1.43.10 (2022-03-02)
2+
===
3+
4+
### Service Client Updates
5+
* `service/athena`: Updates service API and documentation
6+
* This release adds support for S3 Object Ownership by allowing the S3 bucket owner full control canned ACL to be set when Athena writes query results to S3 buckets.
7+
* `service/cloudtrail`: Updates service API and documentation
8+
* Add bytesScanned field into responses of DescribeQuery and GetQueryResults.
9+
* `service/ecr`: Updates service API and documentation
10+
* This release adds support for tracking images lastRecordedPullTime.
11+
* `service/gamelift`: Updates service documentation
12+
* Minor updates to address errors.
13+
* `service/keyspaces`: Updates service API, documentation, waiters, paginators, and examples
14+
115
Release v1.43.9 (2022-03-01)
216
===
317

aws/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.43.9"
8+
const SDKVersion = "1.43.10"

models/apis/athena/2017-05-18/api-2.json

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -486,6 +486,13 @@
486486
}
487487
},
488488
"shapes":{
489+
"AclConfiguration":{
490+
"type":"structure",
491+
"required":["S3AclOption"],
492+
"members":{
493+
"S3AclOption":{"shape":"S3AclOption"}
494+
}
495+
},
489496
"AmazonResourceName":{
490497
"type":"string",
491498
"max":1011,
@@ -1345,7 +1352,8 @@
13451352
"members":{
13461353
"OutputLocation":{"shape":"String"},
13471354
"EncryptionConfiguration":{"shape":"EncryptionConfiguration"},
1348-
"ExpectedBucketOwner":{"shape":"String"}
1355+
"ExpectedBucketOwner":{"shape":"String"},
1356+
"AclConfiguration":{"shape":"AclConfiguration"}
13491357
}
13501358
},
13511359
"ResultConfigurationUpdates":{
@@ -1356,7 +1364,9 @@
13561364
"EncryptionConfiguration":{"shape":"EncryptionConfiguration"},
13571365
"RemoveEncryptionConfiguration":{"shape":"BoxedBoolean"},
13581366
"ExpectedBucketOwner":{"shape":"String"},
1359-
"RemoveExpectedBucketOwner":{"shape":"BoxedBoolean"}
1367+
"RemoveExpectedBucketOwner":{"shape":"BoxedBoolean"},
1368+
"AclConfiguration":{"shape":"AclConfiguration"},
1369+
"RemoveAclConfiguration":{"shape":"BoxedBoolean"}
13601370
}
13611371
},
13621372
"ResultSet":{
@@ -1382,6 +1392,10 @@
13821392
"type":"list",
13831393
"member":{"shape":"Row"}
13841394
},
1395+
"S3AclOption":{
1396+
"type":"string",
1397+
"enum":["BUCKET_OWNER_FULL_CONTROL"]
1398+
},
13851399
"StartQueryExecutionInput":{
13861400
"type":"structure",
13871401
"required":["QueryString"],

models/apis/athena/2017-05-18/docs-2.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@
3939
"UpdateWorkGroup": "<p>Updates the workgroup with the specified name. The workgroup's name cannot be changed.</p>"
4040
},
4141
"shapes": {
42+
"AclConfiguration": {
43+
"base": "<p>Indicates that an Amazon S3 canned ACL should be set to control ownership of stored query results. When Athena stores query results in Amazon S3, the canned ACL is set with the <code>x-amz-acl</code> request header. For more information about S3 Object Ownership, see <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html#object-ownership-overview\">Object Ownership settings</a> in the <i>Amazon S3 User Guide</i>.</p>",
44+
"refs": {
45+
"ResultConfiguration$AclConfiguration": "<p>Indicates that an Amazon S3 canned ACL should be set to control ownership of stored query results. Currently the only supported canned ACL is <code>BUCKET_OWNER_FULL_CONTROL</code>. This is a client-side setting. If workgroup settings override client-side settings, then the query uses the ACL configuration that is specified for the workgroup, and also uses the location for storing query results specified in the workgroup. For more information, see <a>WorkGroupConfiguration$EnforceWorkGroupConfiguration</a> and <a href=\"https://docs.aws.amazon.com/athena/latest/ug/workgroups-settings-override.html\">Workgroup Settings Override Client-Side Settings</a>.</p>",
46+
"ResultConfigurationUpdates$AclConfiguration": "<p>The ACL configuration for the query results.</p>"
47+
}
48+
},
4249
"AmazonResourceName": {
4350
"base": null,
4451
"refs": {
@@ -87,6 +94,7 @@
8794
"ResultConfigurationUpdates$RemoveOutputLocation": "<p>If set to \"true\", indicates that the previously-specified query results location (also known as a client-side setting) for queries in this workgroup should be ignored and set to null. If set to \"false\" or not set, and a value is present in the <code>OutputLocation</code> in <code>ResultConfigurationUpdates</code> (the client-side setting), the <code>OutputLocation</code> in the workgroup's <code>ResultConfiguration</code> will be updated with the new value. For more information, see <a href=\"https://docs.aws.amazon.com/athena/latest/ug/workgroups-settings-override.html\">Workgroup Settings Override Client-Side Settings</a>.</p>",
8895
"ResultConfigurationUpdates$RemoveEncryptionConfiguration": "<p>If set to \"true\", indicates that the previously-specified encryption configuration (also known as the client-side setting) for queries in this workgroup should be ignored and set to null. If set to \"false\" or not set, and a value is present in the <code>EncryptionConfiguration</code> in <code>ResultConfigurationUpdates</code> (the client-side setting), the <code>EncryptionConfiguration</code> in the workgroup's <code>ResultConfiguration</code> will be updated with the new value. For more information, see <a href=\"https://docs.aws.amazon.com/athena/latest/ug/workgroups-settings-override.html\">Workgroup Settings Override Client-Side Settings</a>.</p>",
8996
"ResultConfigurationUpdates$RemoveExpectedBucketOwner": "<p>If set to \"true\", removes the Amazon Web Services account ID previously specified for <a>ResultConfiguration$ExpectedBucketOwner</a>. If set to \"false\" or not set, and a value is present in the <code>ExpectedBucketOwner</code> in <code>ResultConfigurationUpdates</code> (the client-side setting), the <code>ExpectedBucketOwner</code> in the workgroup's <code>ResultConfiguration</code> is updated with the new value. For more information, see <a href=\"https://docs.aws.amazon.com/athena/latest/ug/workgroups-settings-override.html\">Workgroup Settings Override Client-Side Settings</a>.</p>",
97+
"ResultConfigurationUpdates$RemoveAclConfiguration": "<p>If set to <code>true</code>, indicates that the previously-specified ACL configuration for queries in this workgroup should be ignored and set to null. If set to <code>false</code> or not set, and a value is present in the <code>AclConfiguration</code> of <code>ResultConfigurationUpdates</code>, the <code>AclConfiguration</code> in the workgroup's <code>ResultConfiguration</code> is updated with the new value. For more information, see <a href=\"https://docs.aws.amazon.com/athena/latest/ug/workgroups-settings-override.html\">Workgroup Settings Override Client-Side Settings</a>.</p>",
9098
"WorkGroupConfiguration$EnforceWorkGroupConfiguration": "<p>If set to \"true\", the settings for the workgroup override client-side settings. If set to \"false\", client-side settings are used. For more information, see <a href=\"https://docs.aws.amazon.com/athena/latest/ug/workgroups-settings-override.html\">Workgroup Settings Override Client-Side Settings</a>.</p>",
9199
"WorkGroupConfiguration$PublishCloudWatchMetricsEnabled": "<p>Indicates that the Amazon CloudWatch metrics are enabled for the workgroup.</p>",
92100
"WorkGroupConfiguration$RequesterPaysEnabled": "<p>If set to <code>true</code>, allows members assigned to a workgroup to reference Amazon S3 Requester Pays buckets in queries. If set to <code>false</code>, workgroup members cannot query data from Requester Pays buckets, and queries that retrieve data from Requester Pays buckets cause an error. The default is <code>false</code>. For more information about Requester Pays buckets, see <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html\">Requester Pays Buckets</a> in the <i>Amazon Simple Storage Service Developer Guide</i>.</p>",
@@ -861,6 +869,12 @@
861869
"ResultSet$Rows": "<p>The rows in the table.</p>"
862870
}
863871
},
872+
"S3AclOption": {
873+
"base": null,
874+
"refs": {
875+
"AclConfiguration$S3AclOption": "<p>The Amazon S3 canned ACL that Athena should specify when storing query results. Currently the only supported canned ACL is <code>BUCKET_OWNER_FULL_CONTROL</code>. If a query runs in a workgroup and the workgroup overrides client-side settings, then the Amazon S3 canned ACL specified in the workgroup's settings is used for all queries that run in the workgroup. For more information about Amazon S3 canned ACLs, see <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/userguide/acl-overview.html#canned-acl\">Canned ACL</a> in the <i>Amazon S3 User Guide</i>.</p>"
876+
}
877+
},
864878
"StartQueryExecutionInput": {
865879
"base": null,
866880
"refs": {

models/apis/cloudtrail/2013-11-01/api-2.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1596,14 +1596,16 @@
15961596
"type":"structure",
15971597
"members":{
15981598
"ResultsCount":{"shape":"Integer"},
1599-
"TotalResultsCount":{"shape":"Integer"}
1599+
"TotalResultsCount":{"shape":"Integer"},
1600+
"BytesScanned":{"shape":"Long"}
16001601
}
16011602
},
16021603
"QueryStatisticsForDescribeQuery":{
16031604
"type":"structure",
16041605
"members":{
16051606
"EventsMatched":{"shape":"Long"},
16061607
"EventsScanned":{"shape":"Long"},
1608+
"BytesScanned":{"shape":"Long"},
16071609
"ExecutionTimeInMillis":{"shape":"Integer"},
16081610
"CreationTime":{"shape":"Date"}
16091611
}
@@ -1615,7 +1617,8 @@
16151617
"RUNNING",
16161618
"FINISHED",
16171619
"FAILED",
1618-
"CANCELLED"
1620+
"CANCELLED",
1621+
"TIMED_OUT"
16191622
]
16201623
},
16211624
"ReadWriteType":{

0 commit comments

Comments
 (0)