#[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>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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§
source§impl 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.
source§impl RestoreSnapshotTierOutput
impl RestoreSnapshotTierOutput
sourcepub fn builder() -> RestoreSnapshotTierOutputBuilder
pub fn builder() -> RestoreSnapshotTierOutputBuilder
Creates a new builder-style object to manufacture RestoreSnapshotTierOutput
.
Trait Implementations§
source§impl Clone for RestoreSnapshotTierOutput
impl Clone for RestoreSnapshotTierOutput
source§fn clone(&self) -> RestoreSnapshotTierOutput
fn clone(&self) -> RestoreSnapshotTierOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RestoreSnapshotTierOutput
impl Debug for RestoreSnapshotTierOutput
source§impl PartialEq<RestoreSnapshotTierOutput> for RestoreSnapshotTierOutput
impl PartialEq<RestoreSnapshotTierOutput> for RestoreSnapshotTierOutput
source§fn 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 ==
.source§impl RequestId for RestoreSnapshotTierOutput
impl RequestId for RestoreSnapshotTierOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.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§
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
Mutably borrows from an owned value. Read more