pub struct CreateBackupRequest {
pub client_request_token: Option<String>,
pub file_system_id: String,
pub tags: Option<Vec<Tag>>,
}Expand description
The request object for the CreateBackup operation.
Fields§
§client_request_token: Option<String>A string of up to 64 ASCII characters that Amazon FSx uses to ensure idempotent creation. This string is automatically filled on your behalf when you use the AWS Command Line Interface (AWS CLI) or an AWS SDK.
file_system_id: StringThe ID of the file system to back up.
The tags to apply to the backup at backup creation. The key value of the Name tag appears in the console as the backup name. If you have set CopyTagsToBackups to true, and you specify one or more tags using the CreateBackup action, no existing tags on the file system are copied from the file system to the backup.
Trait Implementations§
Source§impl Clone for CreateBackupRequest
impl Clone for CreateBackupRequest
Source§fn clone(&self) -> CreateBackupRequest
fn clone(&self) -> CreateBackupRequest
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 CreateBackupRequest
impl Debug for CreateBackupRequest
Source§impl Default for CreateBackupRequest
impl Default for CreateBackupRequest
Source§fn default() -> CreateBackupRequest
fn default() -> CreateBackupRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateBackupRequest
impl PartialEq for CreateBackupRequest
Source§impl Serialize for CreateBackupRequest
impl Serialize for CreateBackupRequest
impl StructuralPartialEq for CreateBackupRequest
Auto Trait Implementations§
impl Freeze for CreateBackupRequest
impl RefUnwindSafe for CreateBackupRequest
impl Send for CreateBackupRequest
impl Sync for CreateBackupRequest
impl Unpin for CreateBackupRequest
impl UnwindSafe for CreateBackupRequest
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