Struct aws_sdk_securityhub::types::builders::AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder
source · #[non_exhaustive]pub struct AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder { /* private fields */ }Expand description
A builder for AwsMskClusterClusterInfoEncryptionInfoDetails.
Implementations§
source§impl AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder
impl AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder
sourcepub fn encryption_in_transit(
self,
input: AwsMskClusterClusterInfoEncryptionInfoEncryptionInTransitDetails,
) -> Self
pub fn encryption_in_transit( self, input: AwsMskClusterClusterInfoEncryptionInfoEncryptionInTransitDetails, ) -> Self
The settings for encrypting data in transit.
sourcepub fn set_encryption_in_transit(
self,
input: Option<AwsMskClusterClusterInfoEncryptionInfoEncryptionInTransitDetails>,
) -> Self
pub fn set_encryption_in_transit( self, input: Option<AwsMskClusterClusterInfoEncryptionInfoEncryptionInTransitDetails>, ) -> Self
The settings for encrypting data in transit.
sourcepub fn get_encryption_in_transit(
&self,
) -> &Option<AwsMskClusterClusterInfoEncryptionInfoEncryptionInTransitDetails>
pub fn get_encryption_in_transit( &self, ) -> &Option<AwsMskClusterClusterInfoEncryptionInfoEncryptionInTransitDetails>
The settings for encrypting data in transit.
sourcepub fn encryption_at_rest(
self,
input: AwsMskClusterClusterInfoEncryptionInfoEncryptionAtRestDetails,
) -> Self
pub fn encryption_at_rest( self, input: AwsMskClusterClusterInfoEncryptionInfoEncryptionAtRestDetails, ) -> Self
The data-volume encryption details. You can't update encryption at rest settings for existing clusters.
sourcepub fn set_encryption_at_rest(
self,
input: Option<AwsMskClusterClusterInfoEncryptionInfoEncryptionAtRestDetails>,
) -> Self
pub fn set_encryption_at_rest( self, input: Option<AwsMskClusterClusterInfoEncryptionInfoEncryptionAtRestDetails>, ) -> Self
The data-volume encryption details. You can't update encryption at rest settings for existing clusters.
sourcepub fn get_encryption_at_rest(
&self,
) -> &Option<AwsMskClusterClusterInfoEncryptionInfoEncryptionAtRestDetails>
pub fn get_encryption_at_rest( &self, ) -> &Option<AwsMskClusterClusterInfoEncryptionInfoEncryptionAtRestDetails>
The data-volume encryption details. You can't update encryption at rest settings for existing clusters.
sourcepub fn build(self) -> AwsMskClusterClusterInfoEncryptionInfoDetails
pub fn build(self) -> AwsMskClusterClusterInfoEncryptionInfoDetails
Consumes the builder and constructs a AwsMskClusterClusterInfoEncryptionInfoDetails.
Trait Implementations§
source§impl Clone for AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder
impl Clone for AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder
source§fn clone(&self) -> AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder
fn clone(&self) -> AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Default for AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder
impl Default for AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder
source§fn default() -> AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder
fn default() -> AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder
impl PartialEq for AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder
source§fn eq(
&self,
other: &AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder,
) -> bool
fn eq( &self, other: &AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder, ) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder
Auto Trait Implementations§
impl Freeze for AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder
impl RefUnwindSafe for AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder
impl Send for AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder
impl Sync for AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder
impl Unpin for AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder
impl UnwindSafe for AwsMskClusterClusterInfoEncryptionInfoDetailsBuilder
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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.