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