pub struct GetBackupSelectionOutput {
pub backup_plan_id: Option<String>,
pub backup_selection: Option<BackupSelection>,
pub creation_date: Option<f64>,
pub creator_request_id: Option<String>,
pub selection_id: Option<String>,
}
Fields§
§backup_plan_id: Option<String>
Uniquely identifies a backup plan.
backup_selection: Option<BackupSelection>
Specifies the body of a request to assign a set of resources to a backup plan.
creation_date: Option<f64>
The date and time a backup selection 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.
selection_id: Option<String>
Uniquely identifies the body of a request to assign a set of resources to a backup plan.
Trait Implementations§
Source§impl Clone for GetBackupSelectionOutput
impl Clone for GetBackupSelectionOutput
Source§fn clone(&self) -> GetBackupSelectionOutput
fn clone(&self) -> GetBackupSelectionOutput
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 GetBackupSelectionOutput
impl Debug for GetBackupSelectionOutput
Source§impl Default for GetBackupSelectionOutput
impl Default for GetBackupSelectionOutput
Source§fn default() -> GetBackupSelectionOutput
fn default() -> GetBackupSelectionOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetBackupSelectionOutput
impl<'de> Deserialize<'de> for GetBackupSelectionOutput
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 GetBackupSelectionOutput
impl PartialEq for GetBackupSelectionOutput
impl StructuralPartialEq for GetBackupSelectionOutput
Auto Trait Implementations§
impl Freeze for GetBackupSelectionOutput
impl RefUnwindSafe for GetBackupSelectionOutput
impl Send for GetBackupSelectionOutput
impl Sync for GetBackupSelectionOutput
impl Unpin for GetBackupSelectionOutput
impl UnwindSafe for GetBackupSelectionOutput
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