Struct aws_sdk_ec2::output::RestoreSnapshotTierOutput
source · [−]#[non_exhaustive]pub struct RestoreSnapshotTierOutput {
pub snapshot_id: Option<String>,
pub restore_start_time: Option<DateTime>,
pub restore_duration: Option<i32>,
pub is_permanent_restore: Option<bool>,
}
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.
restore_start_time: Option<DateTime>
The date and time when the snapshot restore process started.
restore_duration: Option<i32>
For temporary restores only. The number of days for which the archived snapshot is temporarily restored.
is_permanent_restore: Option<bool>
Indicates whether the snapshot is permanently restored. true
indicates a permanent restore. false
indicates a temporary restore.
Implementations
sourceimpl RestoreSnapshotTierOutput
impl RestoreSnapshotTierOutput
sourcepub fn snapshot_id(&self) -> Option<&str>
pub fn snapshot_id(&self) -> Option<&str>
The ID of the snapshot.
sourcepub fn restore_start_time(&self) -> Option<&DateTime>
pub fn restore_start_time(&self) -> Option<&DateTime>
The date and time when the snapshot restore process started.
sourcepub fn restore_duration(&self) -> Option<i32>
pub fn restore_duration(&self) -> Option<i32>
For temporary restores only. The number of days for which the archived snapshot is temporarily restored.
sourcepub fn is_permanent_restore(&self) -> Option<bool>
pub fn is_permanent_restore(&self) -> Option<bool>
Indicates whether the snapshot is permanently restored. true
indicates a permanent restore. false
indicates a temporary restore.
sourceimpl RestoreSnapshotTierOutput
impl RestoreSnapshotTierOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RestoreSnapshotTierOutput
.
Trait Implementations
sourceimpl Clone for RestoreSnapshotTierOutput
impl Clone for RestoreSnapshotTierOutput
sourcefn clone(&self) -> RestoreSnapshotTierOutput
fn clone(&self) -> RestoreSnapshotTierOutput
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 RestoreSnapshotTierOutput
impl Debug for RestoreSnapshotTierOutput
sourceimpl PartialEq<RestoreSnapshotTierOutput> for RestoreSnapshotTierOutput
impl PartialEq<RestoreSnapshotTierOutput> for RestoreSnapshotTierOutput
sourcefn eq(&self, other: &RestoreSnapshotTierOutput) -> bool
fn eq(&self, other: &RestoreSnapshotTierOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &RestoreSnapshotTierOutput) -> bool
fn ne(&self, other: &RestoreSnapshotTierOutput) -> bool
This method tests for !=
.
impl StructuralPartialEq for RestoreSnapshotTierOutput
Auto Trait Implementations
impl RefUnwindSafe for RestoreSnapshotTierOutput
impl Send for RestoreSnapshotTierOutput
impl Sync for RestoreSnapshotTierOutput
impl Unpin for RestoreSnapshotTierOutput
impl UnwindSafe for RestoreSnapshotTierOutput
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