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