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