#[non_exhaustive]pub struct DataQualityEncryptionBuilder { /* private fields */ }Expand description
A builder for DataQualityEncryption.
Implementations§
Source§impl DataQualityEncryptionBuilder
impl DataQualityEncryptionBuilder
Sourcepub fn data_quality_encryption_mode(
self,
input: DataQualityEncryptionMode,
) -> Self
pub fn data_quality_encryption_mode( self, input: DataQualityEncryptionMode, ) -> Self
The encryption mode to use for encrypting Data Quality assets. These assets include data quality rulesets, results, statistics, anomaly detection models and observations.
Valid values are SSEKMS for encryption using a customer-managed KMS key, or DISABLED.
Sourcepub fn set_data_quality_encryption_mode(
self,
input: Option<DataQualityEncryptionMode>,
) -> Self
pub fn set_data_quality_encryption_mode( self, input: Option<DataQualityEncryptionMode>, ) -> Self
The encryption mode to use for encrypting Data Quality assets. These assets include data quality rulesets, results, statistics, anomaly detection models and observations.
Valid values are SSEKMS for encryption using a customer-managed KMS key, or DISABLED.
Sourcepub fn get_data_quality_encryption_mode(
&self,
) -> &Option<DataQualityEncryptionMode>
pub fn get_data_quality_encryption_mode( &self, ) -> &Option<DataQualityEncryptionMode>
The encryption mode to use for encrypting Data Quality assets. These assets include data quality rulesets, results, statistics, anomaly detection models and observations.
Valid values are SSEKMS for encryption using a customer-managed KMS key, or DISABLED.
Sourcepub fn kms_key_arn(self, input: impl Into<String>) -> Self
pub fn kms_key_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.
Sourcepub fn set_kms_key_arn(self, input: Option<String>) -> Self
pub fn set_kms_key_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.
Sourcepub fn get_kms_key_arn(&self) -> &Option<String>
pub fn get_kms_key_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.
Sourcepub fn build(self) -> DataQualityEncryption
pub fn build(self) -> DataQualityEncryption
Consumes the builder and constructs a DataQualityEncryption.
Trait Implementations§
Source§impl Clone for DataQualityEncryptionBuilder
impl Clone for DataQualityEncryptionBuilder
Source§fn clone(&self) -> DataQualityEncryptionBuilder
fn clone(&self) -> DataQualityEncryptionBuilder
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for DataQualityEncryptionBuilder
impl Debug for DataQualityEncryptionBuilder
Source§impl Default for DataQualityEncryptionBuilder
impl Default for DataQualityEncryptionBuilder
Source§fn default() -> DataQualityEncryptionBuilder
fn default() -> DataQualityEncryptionBuilder
Source§impl PartialEq for DataQualityEncryptionBuilder
impl PartialEq for DataQualityEncryptionBuilder
Source§fn eq(&self, other: &DataQualityEncryptionBuilder) -> bool
fn eq(&self, other: &DataQualityEncryptionBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DataQualityEncryptionBuilder
Auto Trait Implementations§
impl Freeze for DataQualityEncryptionBuilder
impl RefUnwindSafe for DataQualityEncryptionBuilder
impl Send for DataQualityEncryptionBuilder
impl Sync for DataQualityEncryptionBuilder
impl Unpin for DataQualityEncryptionBuilder
impl UnsafeUnpin for DataQualityEncryptionBuilder
impl UnwindSafe for DataQualityEncryptionBuilder
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