Struct aws_sdk_athena::types::AclConfiguration
source · #[non_exhaustive]pub struct AclConfiguration {
pub s3_acl_option: S3AclOption,
}Expand description
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.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.s3_acl_option: S3AclOptionThe 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.
Implementations§
source§impl AclConfiguration
impl AclConfiguration
sourcepub fn s3_acl_option(&self) -> &S3AclOption
pub fn s3_acl_option(&self) -> &S3AclOption
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.
source§impl AclConfiguration
impl AclConfiguration
sourcepub fn builder() -> AclConfigurationBuilder
pub fn builder() -> AclConfigurationBuilder
Creates a new builder-style object to manufacture AclConfiguration.
Trait Implementations§
source§impl Clone for AclConfiguration
impl Clone for AclConfiguration
source§fn clone(&self) -> AclConfiguration
fn clone(&self) -> AclConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for AclConfiguration
impl Debug for AclConfiguration
source§impl PartialEq for AclConfiguration
impl PartialEq for AclConfiguration
source§fn eq(&self, other: &AclConfiguration) -> bool
fn eq(&self, other: &AclConfiguration) -> bool
self and other values to be equal, and is used
by ==.