Class: Aws::Athena::Types::AclConfiguration

Inherits:
Struct
  • Object
show all
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. 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

Instance Attribute Details

#s3_acl_optionString

The Amazon S3 canned ACL that Athena should specify when storing query results. 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

Returns:

  • (String)


39
40
41
42
43
# File 'lib/aws-sdk-athena/types.rb', line 39

class AclConfiguration < Struct.new(
  :s3_acl_option)
  SENSITIVE = []
  include Aws::Structure
end