[][src]Struct rusoto_fsx::DeleteFileSystemWindowsConfiguration

pub struct DeleteFileSystemWindowsConfiguration {
    pub final_backup_tags: Option<Vec<Tag>>,
    pub skip_final_backup: Option<bool>,
}

The configuration object for the Microsoft Windows file system used in the DeleteFileSystem operation.

Fields

final_backup_tags: Option<Vec<Tag>>

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

impl Clone for DeleteFileSystemWindowsConfiguration[src]

impl Debug for DeleteFileSystemWindowsConfiguration[src]

impl Default for DeleteFileSystemWindowsConfiguration[src]

impl PartialEq<DeleteFileSystemWindowsConfiguration> for DeleteFileSystemWindowsConfiguration[src]

impl Serialize for DeleteFileSystemWindowsConfiguration[src]

impl StructuralPartialEq for DeleteFileSystemWindowsConfiguration[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.