Struct aws_sdk_qldb::output::DescribeLedgerOutput
source · [−]#[non_exhaustive]pub struct DescribeLedgerOutput {
pub name: Option<String>,
pub arn: Option<String>,
pub state: Option<LedgerState>,
pub creation_date_time: Option<DateTime>,
pub permissions_mode: Option<PermissionsMode>,
pub deletion_protection: Option<bool>,
pub encryption_description: Option<LedgerEncryptionDescription>,
}
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.name: Option<String>
The name of the ledger.
arn: Option<String>
The Amazon Resource Name (ARN) for the ledger.
state: Option<LedgerState>
The current status of the ledger.
creation_date_time: Option<DateTime>
The date and time, in epoch time format, when the ledger was created. (Epoch time format is the number of seconds elapsed since 12:00:00 AM January 1, 1970 UTC.)
permissions_mode: Option<PermissionsMode>
The permissions mode of the ledger.
deletion_protection: Option<bool>
The flag that prevents a ledger from being deleted by any user. If not provided on ledger creation, this feature is enabled (true
) by default.
If deletion protection is enabled, you must first disable it before you can delete the ledger. You can disable it by calling the UpdateLedger
operation to set the flag to false
.
encryption_description: Option<LedgerEncryptionDescription>
Information about the encryption of data at rest in the ledger. This includes the current status, the KMS key, and when the key became inaccessible (in the case of an error).
Implementations
sourceimpl DescribeLedgerOutput
impl DescribeLedgerOutput
sourcepub fn state(&self) -> Option<&LedgerState>
pub fn state(&self) -> Option<&LedgerState>
The current status of the ledger.
sourcepub fn creation_date_time(&self) -> Option<&DateTime>
pub fn creation_date_time(&self) -> Option<&DateTime>
The date and time, in epoch time format, when the ledger was created. (Epoch time format is the number of seconds elapsed since 12:00:00 AM January 1, 1970 UTC.)
sourcepub fn permissions_mode(&self) -> Option<&PermissionsMode>
pub fn permissions_mode(&self) -> Option<&PermissionsMode>
The permissions mode of the ledger.
sourcepub fn deletion_protection(&self) -> Option<bool>
pub fn deletion_protection(&self) -> Option<bool>
The flag that prevents a ledger from being deleted by any user. If not provided on ledger creation, this feature is enabled (true
) by default.
If deletion protection is enabled, you must first disable it before you can delete the ledger. You can disable it by calling the UpdateLedger
operation to set the flag to false
.
sourcepub fn encryption_description(&self) -> Option<&LedgerEncryptionDescription>
pub fn encryption_description(&self) -> Option<&LedgerEncryptionDescription>
Information about the encryption of data at rest in the ledger. This includes the current status, the KMS key, and when the key became inaccessible (in the case of an error).
sourceimpl DescribeLedgerOutput
impl DescribeLedgerOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeLedgerOutput
Trait Implementations
sourceimpl Clone for DescribeLedgerOutput
impl Clone for DescribeLedgerOutput
sourcefn clone(&self) -> DescribeLedgerOutput
fn clone(&self) -> DescribeLedgerOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DescribeLedgerOutput
impl Debug for DescribeLedgerOutput
sourceimpl PartialEq<DescribeLedgerOutput> for DescribeLedgerOutput
impl PartialEq<DescribeLedgerOutput> for DescribeLedgerOutput
sourcefn eq(&self, other: &DescribeLedgerOutput) -> bool
fn eq(&self, other: &DescribeLedgerOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DescribeLedgerOutput) -> bool
fn ne(&self, other: &DescribeLedgerOutput) -> bool
This method tests for !=
.
impl StructuralPartialEq for DescribeLedgerOutput
Auto Trait Implementations
impl RefUnwindSafe for DescribeLedgerOutput
impl Send for DescribeLedgerOutput
impl Sync for DescribeLedgerOutput
impl Unpin for DescribeLedgerOutput
impl UnwindSafe for DescribeLedgerOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more