Struct aws_sdk_securityhub::types::AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
source · #[non_exhaustive]pub struct AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails {
pub encryption_option: Option<String>,
pub kms_key: Option<String>,
}
Expand description
Specifies the method used to encrypt the user’s data stores in the Athena workgroup.
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.encryption_option: Option<String>
Indicates whether Amazon Simple Storage Service (Amazon S3) server-side encryption with Amazon S3 managed keys (SSE_S3), server-side encryption with KMS keys (SSE_KMS), or client-side encryption with KMS customer managed keys (CSE_KMS) is used.
kms_key: Option<String>
For SSE_KMS
and CSE_KMS
, this is the KMS key Amazon Resource Name (ARN) or ID.
Implementations§
source§impl AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
impl AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
sourcepub fn encryption_option(&self) -> Option<&str>
pub fn encryption_option(&self) -> Option<&str>
Indicates whether Amazon Simple Storage Service (Amazon S3) server-side encryption with Amazon S3 managed keys (SSE_S3), server-side encryption with KMS keys (SSE_KMS), or client-side encryption with KMS customer managed keys (CSE_KMS) is used.
source§impl AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
impl AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
sourcepub fn builder(
) -> AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetailsBuilder
pub fn builder( ) -> AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetailsBuilder
Creates a new builder-style object to manufacture AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
.
Trait Implementations§
source§impl Clone for AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
impl Clone for AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
source§fn clone(
&self
) -> AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
fn clone( &self ) -> AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
impl Debug for AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
source§impl PartialEq for AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
impl PartialEq for AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
source§fn eq(
&self,
other: &AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
) -> bool
fn eq( &self, other: &AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails ) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
Auto Trait Implementations§
impl Freeze for AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
impl RefUnwindSafe for AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
impl Send for AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
impl Sync for AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
impl Unpin for AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
impl UnwindSafe for AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails
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