Struct aws_sdk_ec2::model::SnapshotRecycleBinInfo
source · #[non_exhaustive]pub struct SnapshotRecycleBinInfo { /* private fields */ }
Expand description
Information about a snapshot that is currently in the Recycle Bin.
Implementations§
source§impl SnapshotRecycleBinInfo
impl SnapshotRecycleBinInfo
sourcepub fn snapshot_id(&self) -> Option<&str>
pub fn snapshot_id(&self) -> Option<&str>
The ID of the snapshot.
sourcepub fn recycle_bin_enter_time(&self) -> Option<&DateTime>
pub fn recycle_bin_enter_time(&self) -> Option<&DateTime>
The date and time when the snaphsot entered the Recycle Bin.
sourcepub fn recycle_bin_exit_time(&self) -> Option<&DateTime>
pub fn recycle_bin_exit_time(&self) -> Option<&DateTime>
The date and time when the snapshot is to be permanently deleted from the Recycle Bin.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description for the snapshot.
source§impl SnapshotRecycleBinInfo
impl SnapshotRecycleBinInfo
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SnapshotRecycleBinInfo
.
Trait Implementations§
source§impl Clone for SnapshotRecycleBinInfo
impl Clone for SnapshotRecycleBinInfo
source§fn clone(&self) -> SnapshotRecycleBinInfo
fn clone(&self) -> SnapshotRecycleBinInfo
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 SnapshotRecycleBinInfo
impl Debug for SnapshotRecycleBinInfo
source§impl PartialEq<SnapshotRecycleBinInfo> for SnapshotRecycleBinInfo
impl PartialEq<SnapshotRecycleBinInfo> for SnapshotRecycleBinInfo
source§fn eq(&self, other: &SnapshotRecycleBinInfo) -> bool
fn eq(&self, other: &SnapshotRecycleBinInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.