#[non_exhaustive]pub struct DisableFastSnapshotRestoreSuccessItem {
pub snapshot_id: Option<String>,
pub availability_zone: Option<String>,
pub state: Option<FastSnapshotRestoreStateCode>,
pub state_transition_reason: Option<String>,
pub owner_id: Option<String>,
pub owner_alias: Option<String>,
pub enabling_time: Option<DateTime>,
pub optimizing_time: Option<DateTime>,
pub enabled_time: Option<DateTime>,
pub disabling_time: Option<DateTime>,
pub disabled_time: Option<DateTime>,
}
Expand description
Describes fast snapshot restores that were successfully disabled.
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.snapshot_id: Option<String>
The ID of the snapshot.
availability_zone: Option<String>
The Availability Zone.
state: Option<FastSnapshotRestoreStateCode>
The state of fast snapshot restores for the snapshot.
state_transition_reason: Option<String>
The reason for the state transition. The possible values are as follows:
-
Client.UserInitiated
- The state successfully transitioned toenabling
ordisabling
. -
Client.UserInitiated - Lifecycle state transition
- The state successfully transitioned tooptimizing
,enabled
, ordisabled
.
owner_id: Option<String>
The ID of the Amazon Web Services account that enabled fast snapshot restores on the snapshot.
owner_alias: Option<String>
The Amazon Web Services owner alias that enabled fast snapshot restores on the snapshot. This is intended for future use.
enabling_time: Option<DateTime>
The time at which fast snapshot restores entered the enabling
state.
optimizing_time: Option<DateTime>
The time at which fast snapshot restores entered the optimizing
state.
enabled_time: Option<DateTime>
The time at which fast snapshot restores entered the enabled
state.
disabling_time: Option<DateTime>
The time at which fast snapshot restores entered the disabling
state.
disabled_time: Option<DateTime>
The time at which fast snapshot restores entered the disabled
state.
Implementations
sourceimpl DisableFastSnapshotRestoreSuccessItem
impl DisableFastSnapshotRestoreSuccessItem
sourcepub fn snapshot_id(&self) -> Option<&str>
pub fn snapshot_id(&self) -> Option<&str>
The ID of the snapshot.
sourcepub fn availability_zone(&self) -> Option<&str>
pub fn availability_zone(&self) -> Option<&str>
The Availability Zone.
sourcepub fn state(&self) -> Option<&FastSnapshotRestoreStateCode>
pub fn state(&self) -> Option<&FastSnapshotRestoreStateCode>
The state of fast snapshot restores for the snapshot.
sourcepub fn state_transition_reason(&self) -> Option<&str>
pub fn state_transition_reason(&self) -> Option<&str>
The reason for the state transition. The possible values are as follows:
-
Client.UserInitiated
- The state successfully transitioned toenabling
ordisabling
. -
Client.UserInitiated - Lifecycle state transition
- The state successfully transitioned tooptimizing
,enabled
, ordisabled
.
sourcepub fn owner_id(&self) -> Option<&str>
pub fn owner_id(&self) -> Option<&str>
The ID of the Amazon Web Services account that enabled fast snapshot restores on the snapshot.
sourcepub fn owner_alias(&self) -> Option<&str>
pub fn owner_alias(&self) -> Option<&str>
The Amazon Web Services owner alias that enabled fast snapshot restores on the snapshot. This is intended for future use.
sourcepub fn enabling_time(&self) -> Option<&DateTime>
pub fn enabling_time(&self) -> Option<&DateTime>
The time at which fast snapshot restores entered the enabling
state.
sourcepub fn optimizing_time(&self) -> Option<&DateTime>
pub fn optimizing_time(&self) -> Option<&DateTime>
The time at which fast snapshot restores entered the optimizing
state.
sourcepub fn enabled_time(&self) -> Option<&DateTime>
pub fn enabled_time(&self) -> Option<&DateTime>
The time at which fast snapshot restores entered the enabled
state.
sourcepub fn disabling_time(&self) -> Option<&DateTime>
pub fn disabling_time(&self) -> Option<&DateTime>
The time at which fast snapshot restores entered the disabling
state.
sourcepub fn disabled_time(&self) -> Option<&DateTime>
pub fn disabled_time(&self) -> Option<&DateTime>
The time at which fast snapshot restores entered the disabled
state.
sourceimpl DisableFastSnapshotRestoreSuccessItem
impl DisableFastSnapshotRestoreSuccessItem
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DisableFastSnapshotRestoreSuccessItem
.
Trait Implementations
sourceimpl Clone for DisableFastSnapshotRestoreSuccessItem
impl Clone for DisableFastSnapshotRestoreSuccessItem
sourcefn clone(&self) -> DisableFastSnapshotRestoreSuccessItem
fn clone(&self) -> DisableFastSnapshotRestoreSuccessItem
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 PartialEq<DisableFastSnapshotRestoreSuccessItem> for DisableFastSnapshotRestoreSuccessItem
impl PartialEq<DisableFastSnapshotRestoreSuccessItem> for DisableFastSnapshotRestoreSuccessItem
sourcefn eq(&self, other: &DisableFastSnapshotRestoreSuccessItem) -> bool
fn eq(&self, other: &DisableFastSnapshotRestoreSuccessItem) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DisableFastSnapshotRestoreSuccessItem) -> bool
fn ne(&self, other: &DisableFastSnapshotRestoreSuccessItem) -> bool
This method tests for !=
.
impl StructuralPartialEq for DisableFastSnapshotRestoreSuccessItem
Auto Trait Implementations
impl RefUnwindSafe for DisableFastSnapshotRestoreSuccessItem
impl Send for DisableFastSnapshotRestoreSuccessItem
impl Sync for DisableFastSnapshotRestoreSuccessItem
impl Unpin for DisableFastSnapshotRestoreSuccessItem
impl UnwindSafe for DisableFastSnapshotRestoreSuccessItem
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