pub struct DescribeProtectedResourceOutput {
pub last_backup_time: Option<f64>,
pub resource_arn: Option<String>,
pub resource_type: Option<String>,
}
Fields§
§last_backup_time: Option<f64>
The date and time that 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 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 saved as a recovery point; for example, an EBS volume or an Amazon RDS database.
Trait Implementations§
Source§impl Clone for DescribeProtectedResourceOutput
impl Clone for DescribeProtectedResourceOutput
Source§fn clone(&self) -> DescribeProtectedResourceOutput
fn clone(&self) -> DescribeProtectedResourceOutput
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 Default for DescribeProtectedResourceOutput
impl Default for DescribeProtectedResourceOutput
Source§fn default() -> DescribeProtectedResourceOutput
fn default() -> DescribeProtectedResourceOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeProtectedResourceOutput
impl<'de> Deserialize<'de> for DescribeProtectedResourceOutput
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 DescribeProtectedResourceOutput
impl PartialEq for DescribeProtectedResourceOutput
Source§fn eq(&self, other: &DescribeProtectedResourceOutput) -> bool
fn eq(&self, other: &DescribeProtectedResourceOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeProtectedResourceOutput
Auto Trait Implementations§
impl Freeze for DescribeProtectedResourceOutput
impl RefUnwindSafe for DescribeProtectedResourceOutput
impl Send for DescribeProtectedResourceOutput
impl Sync for DescribeProtectedResourceOutput
impl Unpin for DescribeProtectedResourceOutput
impl UnwindSafe for DescribeProtectedResourceOutput
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