pub struct CreateBackupSelectionOutput {
pub backup_plan_id: Option<String>,
pub creation_date: Option<f64>,
pub selection_id: Option<String>,
}
Fields§
§backup_plan_id: Option<String>
Uniquely identifies 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.
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 CreateBackupSelectionOutput
impl Clone for CreateBackupSelectionOutput
Source§fn clone(&self) -> CreateBackupSelectionOutput
fn clone(&self) -> CreateBackupSelectionOutput
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 CreateBackupSelectionOutput
impl Debug for CreateBackupSelectionOutput
Source§impl Default for CreateBackupSelectionOutput
impl Default for CreateBackupSelectionOutput
Source§fn default() -> CreateBackupSelectionOutput
fn default() -> CreateBackupSelectionOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateBackupSelectionOutput
impl<'de> Deserialize<'de> for CreateBackupSelectionOutput
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 CreateBackupSelectionOutput
Auto Trait Implementations§
impl Freeze for CreateBackupSelectionOutput
impl RefUnwindSafe for CreateBackupSelectionOutput
impl Send for CreateBackupSelectionOutput
impl Sync for CreateBackupSelectionOutput
impl Unpin for CreateBackupSelectionOutput
impl UnwindSafe for CreateBackupSelectionOutput
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