pub struct ProtectedResource {
pub last_backup_time: Option<f64>,
pub resource_arn: Option<String>,
pub resource_type: Option<String>,
}
Expand description
A structure that contains information about a backed-up resource.
Fields§
§last_backup_time: Option<f64>
The date and time a resource was last backed up, in Unix format and Coordinated Universal Time (UTC). The value of LastBackupTime
is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
resource_arn: Option<String>
An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN depends on the resource type.
resource_type: Option<String>
The type of AWS resource; for example, an Amazon Elastic Block Store (Amazon EBS) volume or an Amazon Relational Database Service (Amazon RDS) database.
Trait Implementations§
Source§impl Clone for ProtectedResource
impl Clone for ProtectedResource
Source§fn clone(&self) -> ProtectedResource
fn clone(&self) -> ProtectedResource
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 ProtectedResource
impl Debug for ProtectedResource
Source§impl Default for ProtectedResource
impl Default for ProtectedResource
Source§fn default() -> ProtectedResource
fn default() -> ProtectedResource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProtectedResource
impl<'de> Deserialize<'de> for ProtectedResource
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ProtectedResource
impl PartialEq for ProtectedResource
impl StructuralPartialEq for ProtectedResource
Auto Trait Implementations§
impl Freeze for ProtectedResource
impl RefUnwindSafe for ProtectedResource
impl Send for ProtectedResource
impl Sync for ProtectedResource
impl Unpin for ProtectedResource
impl UnwindSafe for ProtectedResource
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