#[non_exhaustive]pub struct AwsAthenaWorkGroupConfigurationDetails {
pub result_configuration: Option<AwsAthenaWorkGroupConfigurationResultConfigurationDetails>,
}
Expand description
The configuration of the workgroup, which includes the location in Amazon Simple Storage Service (Amazon S3) where query results are stored, the encryption option, if any, used for query results, whether Amazon CloudWatch metrics are enabled for the workgroup, and the limit for the amount of bytes scanned (cutoff) per query, if it is specified.
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.result_configuration: Option<AwsAthenaWorkGroupConfigurationResultConfigurationDetails>
The location in Amazon S3 where query and calculation results are stored and the encryption option, if any, used for query and calculation results. These are known as client-side settings. If workgroup settings override client-side settings, then the query uses the workgroup settings.
Implementations§
source§impl AwsAthenaWorkGroupConfigurationDetails
impl AwsAthenaWorkGroupConfigurationDetails
sourcepub fn result_configuration(
&self
) -> Option<&AwsAthenaWorkGroupConfigurationResultConfigurationDetails>
pub fn result_configuration( &self ) -> Option<&AwsAthenaWorkGroupConfigurationResultConfigurationDetails>
The location in Amazon S3 where query and calculation results are stored and the encryption option, if any, used for query and calculation results. These are known as client-side settings. If workgroup settings override client-side settings, then the query uses the workgroup settings.
source§impl AwsAthenaWorkGroupConfigurationDetails
impl AwsAthenaWorkGroupConfigurationDetails
sourcepub fn builder() -> AwsAthenaWorkGroupConfigurationDetailsBuilder
pub fn builder() -> AwsAthenaWorkGroupConfigurationDetailsBuilder
Creates a new builder-style object to manufacture AwsAthenaWorkGroupConfigurationDetails
.
Trait Implementations§
source§impl Clone for AwsAthenaWorkGroupConfigurationDetails
impl Clone for AwsAthenaWorkGroupConfigurationDetails
source§fn clone(&self) -> AwsAthenaWorkGroupConfigurationDetails
fn clone(&self) -> AwsAthenaWorkGroupConfigurationDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for AwsAthenaWorkGroupConfigurationDetails
impl PartialEq for AwsAthenaWorkGroupConfigurationDetails
source§fn eq(&self, other: &AwsAthenaWorkGroupConfigurationDetails) -> bool
fn eq(&self, other: &AwsAthenaWorkGroupConfigurationDetails) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsAthenaWorkGroupConfigurationDetails
Auto Trait Implementations§
impl Freeze for AwsAthenaWorkGroupConfigurationDetails
impl RefUnwindSafe for AwsAthenaWorkGroupConfigurationDetails
impl Send for AwsAthenaWorkGroupConfigurationDetails
impl Sync for AwsAthenaWorkGroupConfigurationDetails
impl Unpin for AwsAthenaWorkGroupConfigurationDetails
impl UnwindSafe for AwsAthenaWorkGroupConfigurationDetails
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more