Class: Aws::Athena::Types::AclConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::AclConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-athena/types.rb
Overview
Indicates that an Amazon S3 canned ACL should be set to control ownership of stored query results, including data files inserted by Athena as the result of statements like CTAS or INSERT INTO. When Athena stores query results in Amazon S3, the canned ACL is set with the ‘x-amz-acl` request header. For more information about S3 Object Ownership, see [Object Ownership settings] in the *Amazon S3 User Guide*.
[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html#object-ownership-overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_acl_option ⇒ String
The Amazon S3 canned ACL that Athena should specify when storing query results, including data files inserted by Athena as the result of statements like CTAS or INSERT INTO.
Instance Attribute Details
#s3_acl_option ⇒ String
The Amazon S3 canned ACL that Athena should specify when storing query results, including data files inserted by Athena as the result of statements like CTAS or INSERT INTO. Currently the only supported canned ACL is ‘BUCKET_OWNER_FULL_CONTROL`. 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 [Canned ACL] in the *Amazon S3 User Guide*.
[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/acl-overview.html#canned-acl
43 44 45 46 47 |
# File 'lib/aws-sdk-athena/types.rb', line 43 class AclConfiguration < Struct.new( :s3_acl_option) SENSITIVE = [] include Aws::Structure end |