#[non_exhaustive]pub struct ManagedQueryResultsConfigurationUpdates {
pub enabled: Option<bool>,
pub encryption_configuration: Option<ManagedQueryResultsEncryptionConfiguration>,
pub remove_encryption_configuration: Option<bool>,
}Expand description
Updates the configuration for managed 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: Option<bool>If set to true, specifies that Athena manages query results in Athena owned storage.
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.
remove_encryption_configuration: Option<bool>If set to true, it removes workgroup from Athena owned storage. The existing query results are cleaned up after 24hrs. You must provide query results in location specified under ResultConfiguration$OutputLocation.
Implementations§
Source§impl ManagedQueryResultsConfigurationUpdates
impl ManagedQueryResultsConfigurationUpdates
Sourcepub fn enabled(&self) -> Option<bool>
pub fn enabled(&self) -> Option<bool>
If set to true, specifies that Athena manages query results in Athena owned storage.
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.
Sourcepub fn remove_encryption_configuration(&self) -> Option<bool>
pub fn remove_encryption_configuration(&self) -> Option<bool>
If set to true, it removes workgroup from Athena owned storage. The existing query results are cleaned up after 24hrs. You must provide query results in location specified under ResultConfiguration$OutputLocation.
Source§impl ManagedQueryResultsConfigurationUpdates
impl ManagedQueryResultsConfigurationUpdates
Sourcepub fn builder() -> ManagedQueryResultsConfigurationUpdatesBuilder
pub fn builder() -> ManagedQueryResultsConfigurationUpdatesBuilder
Creates a new builder-style object to manufacture ManagedQueryResultsConfigurationUpdates.
Trait Implementations§
Source§impl Clone for ManagedQueryResultsConfigurationUpdates
impl Clone for ManagedQueryResultsConfigurationUpdates
Source§fn clone(&self) -> ManagedQueryResultsConfigurationUpdates
fn clone(&self) -> ManagedQueryResultsConfigurationUpdates
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl PartialEq for ManagedQueryResultsConfigurationUpdates
impl PartialEq for ManagedQueryResultsConfigurationUpdates
Source§fn eq(&self, other: &ManagedQueryResultsConfigurationUpdates) -> bool
fn eq(&self, other: &ManagedQueryResultsConfigurationUpdates) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ManagedQueryResultsConfigurationUpdates
Auto Trait Implementations§
impl Freeze for ManagedQueryResultsConfigurationUpdates
impl RefUnwindSafe for ManagedQueryResultsConfigurationUpdates
impl Send for ManagedQueryResultsConfigurationUpdates
impl Sync for ManagedQueryResultsConfigurationUpdates
impl Unpin for ManagedQueryResultsConfigurationUpdates
impl UnsafeUnpin for ManagedQueryResultsConfigurationUpdates
impl UnwindSafe for ManagedQueryResultsConfigurationUpdates
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