pub struct BackupSelectionsListMember {
pub backup_plan_id: Option<String>,
pub creation_date: Option<f64>,
pub creator_request_id: Option<String>,
pub iam_role_arn: Option<String>,
pub selection_id: Option<String>,
pub selection_name: Option<String>,
}Expand description
Contains metadata about a BackupSelection object.
Fields§
§backup_plan_id: Option<String>Uniquely identifies a backup plan.
creation_date: Option<f64>The date and time a backup plan is created, in Unix format and Coordinated Universal Time (UTC). The value of CreationDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
creator_request_id: Option<String>A unique string that identifies the request and allows failed requests to be retried without the risk of executing the operation twice.
iam_role_arn: Option<String>Specifies the IAM role Amazon Resource Name (ARN) to create the target recovery point; for example, arn:aws:iam::123456789012:role/S3Access.
selection_id: Option<String>Uniquely identifies a request to assign a set of resources to a backup plan.
selection_name: Option<String>The display name of a resource selection document.
Trait Implementations§
Source§impl Clone for BackupSelectionsListMember
impl Clone for BackupSelectionsListMember
Source§fn clone(&self) -> BackupSelectionsListMember
fn clone(&self) -> BackupSelectionsListMember
Returns a duplicate 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 BackupSelectionsListMember
impl Debug for BackupSelectionsListMember
Source§impl Default for BackupSelectionsListMember
impl Default for BackupSelectionsListMember
Source§fn default() -> BackupSelectionsListMember
fn default() -> BackupSelectionsListMember
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BackupSelectionsListMember
impl<'de> Deserialize<'de> for BackupSelectionsListMember
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
impl StructuralPartialEq for BackupSelectionsListMember
Auto Trait Implementations§
impl Freeze for BackupSelectionsListMember
impl RefUnwindSafe for BackupSelectionsListMember
impl Send for BackupSelectionsListMember
impl Sync for BackupSelectionsListMember
impl Unpin for BackupSelectionsListMember
impl UnwindSafe for BackupSelectionsListMember
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