pub struct DeleteFileSystemWindowsConfiguration {
pub final_backup_tags: Option<Vec<Tag>>,
pub skip_final_backup: Option<bool>,
}Expand description
The configuration object for the Microsoft Windows file system used in the DeleteFileSystem operation.
Fields§
A set of tags for your final backup.
skip_final_backup: Option<bool>By default, Amazon FSx for Windows takes a final backup on your behalf when the DeleteFileSystem operation is invoked. Doing this helps protect you from data loss, and we highly recommend taking the final backup. If you want to skip this backup, use this flag to do so.
Trait Implementations§
Source§impl Clone for DeleteFileSystemWindowsConfiguration
impl Clone for DeleteFileSystemWindowsConfiguration
Source§fn clone(&self) -> DeleteFileSystemWindowsConfiguration
fn clone(&self) -> DeleteFileSystemWindowsConfiguration
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 Default for DeleteFileSystemWindowsConfiguration
impl Default for DeleteFileSystemWindowsConfiguration
Source§fn default() -> DeleteFileSystemWindowsConfiguration
fn default() -> DeleteFileSystemWindowsConfiguration
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteFileSystemWindowsConfiguration
impl PartialEq for DeleteFileSystemWindowsConfiguration
Source§fn eq(&self, other: &DeleteFileSystemWindowsConfiguration) -> bool
fn eq(&self, other: &DeleteFileSystemWindowsConfiguration) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteFileSystemWindowsConfiguration
Auto Trait Implementations§
impl Freeze for DeleteFileSystemWindowsConfiguration
impl RefUnwindSafe for DeleteFileSystemWindowsConfiguration
impl Send for DeleteFileSystemWindowsConfiguration
impl Sync for DeleteFileSystemWindowsConfiguration
impl Unpin for DeleteFileSystemWindowsConfiguration
impl UnwindSafe for DeleteFileSystemWindowsConfiguration
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