#[non_exhaustive]pub struct EnableFastSnapshotRestoreSuccessItem {
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 enabled.
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.
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§
source§impl EnableFastSnapshotRestoreSuccessItem
impl EnableFastSnapshotRestoreSuccessItem
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.
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.
source§impl EnableFastSnapshotRestoreSuccessItem
impl EnableFastSnapshotRestoreSuccessItem
sourcepub fn builder() -> EnableFastSnapshotRestoreSuccessItemBuilder
pub fn builder() -> EnableFastSnapshotRestoreSuccessItemBuilder
Creates a new builder-style object to manufacture EnableFastSnapshotRestoreSuccessItem
.
Trait Implementations§
source§impl Clone for EnableFastSnapshotRestoreSuccessItem
impl Clone for EnableFastSnapshotRestoreSuccessItem
source§fn clone(&self) -> EnableFastSnapshotRestoreSuccessItem
fn clone(&self) -> EnableFastSnapshotRestoreSuccessItem
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for EnableFastSnapshotRestoreSuccessItem
impl PartialEq for EnableFastSnapshotRestoreSuccessItem
source§fn eq(&self, other: &EnableFastSnapshotRestoreSuccessItem) -> bool
fn eq(&self, other: &EnableFastSnapshotRestoreSuccessItem) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for EnableFastSnapshotRestoreSuccessItem
Auto Trait Implementations§
impl Freeze for EnableFastSnapshotRestoreSuccessItem
impl RefUnwindSafe for EnableFastSnapshotRestoreSuccessItem
impl Send for EnableFastSnapshotRestoreSuccessItem
impl Sync for EnableFastSnapshotRestoreSuccessItem
impl Unpin for EnableFastSnapshotRestoreSuccessItem
impl UnwindSafe for EnableFastSnapshotRestoreSuccessItem
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> 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