#[non_exhaustive]pub struct ManagedQueryResultsConfiguration {
pub enabled: bool,
pub encryption_configuration: Option<ManagedQueryResultsEncryptionConfiguration>,
}Expand description
The configuration for storing results in Athena owned storage, which includes whether this feature is enabled; whether encryption configuration, if any, is used for encrypting query results.
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.enabled: boolIf set to true, allows you to store query results in Athena owned storage. If set to false, workgroup member stores query results in location specified under ResultConfiguration$OutputLocation. The default is false. A workgroup cannot have the ResultConfiguration$OutputLocation parameter when you set this field to true.
encryption_configuration: Option<ManagedQueryResultsEncryptionConfiguration>If you encrypt query and calculation results in Athena owned storage, this field indicates the encryption option (for example, SSE_KMS or CSE_KMS) and key information.
Implementations§
Source§impl ManagedQueryResultsConfiguration
impl ManagedQueryResultsConfiguration
Sourcepub fn enabled(&self) -> bool
pub fn enabled(&self) -> bool
If set to true, allows you to store query results in Athena owned storage. If set to false, workgroup member stores query results in location specified under ResultConfiguration$OutputLocation. The default is false. A workgroup cannot have the ResultConfiguration$OutputLocation parameter when you set this field to true.
Sourcepub fn encryption_configuration(
&self,
) -> Option<&ManagedQueryResultsEncryptionConfiguration>
pub fn encryption_configuration( &self, ) -> Option<&ManagedQueryResultsEncryptionConfiguration>
If you encrypt query and calculation results in Athena owned storage, this field indicates the encryption option (for example, SSE_KMS or CSE_KMS) and key information.
Source§impl ManagedQueryResultsConfiguration
impl ManagedQueryResultsConfiguration
Sourcepub fn builder() -> ManagedQueryResultsConfigurationBuilder
pub fn builder() -> ManagedQueryResultsConfigurationBuilder
Creates a new builder-style object to manufacture ManagedQueryResultsConfiguration.
Trait Implementations§
Source§impl Clone for ManagedQueryResultsConfiguration
impl Clone for ManagedQueryResultsConfiguration
Source§fn clone(&self) -> ManagedQueryResultsConfiguration
fn clone(&self) -> ManagedQueryResultsConfiguration
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl PartialEq for ManagedQueryResultsConfiguration
impl PartialEq for ManagedQueryResultsConfiguration
Source§fn eq(&self, other: &ManagedQueryResultsConfiguration) -> bool
fn eq(&self, other: &ManagedQueryResultsConfiguration) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ManagedQueryResultsConfiguration
Auto Trait Implementations§
impl Freeze for ManagedQueryResultsConfiguration
impl RefUnwindSafe for ManagedQueryResultsConfiguration
impl Send for ManagedQueryResultsConfiguration
impl Sync for ManagedQueryResultsConfiguration
impl Unpin for ManagedQueryResultsConfiguration
impl UnsafeUnpin for ManagedQueryResultsConfiguration
impl UnwindSafe for ManagedQueryResultsConfiguration
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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