Struct aws_sdk_dax::types::SseDescription
source · #[non_exhaustive]pub struct SseDescription {
pub status: Option<SseStatus>,
}
Expand description
The description of the server-side encryption status on the specified DAX cluster.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.status: Option<SseStatus>
The current state of server-side encryption:
-
ENABLING
- Server-side encryption is being enabled. -
ENABLED
- Server-side encryption is enabled. -
DISABLING
- Server-side encryption is being disabled. -
DISABLED
- Server-side encryption is disabled.
Implementations§
source§impl SseDescription
impl SseDescription
sourcepub fn builder() -> SseDescriptionBuilder
pub fn builder() -> SseDescriptionBuilder
Creates a new builder-style object to manufacture SseDescription
.
Trait Implementations§
source§impl Clone for SseDescription
impl Clone for SseDescription
source§fn clone(&self) -> SseDescription
fn clone(&self) -> SseDescription
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 Debug for SseDescription
impl Debug for SseDescription
source§impl PartialEq for SseDescription
impl PartialEq for SseDescription
source§fn eq(&self, other: &SseDescription) -> bool
fn eq(&self, other: &SseDescription) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SseDescription
Auto Trait Implementations§
impl RefUnwindSafe for SseDescription
impl Send for SseDescription
impl Sync for SseDescription
impl Unpin for SseDescription
impl UnwindSafe for SseDescription
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> 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>
Creates a shared type from an unshared type.