[][src]Struct rusoto_fsx::DeleteFileSystemLustreConfiguration

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

The configuration object for the Amazon FSx for Lustre file system being deleted in the DeleteFileSystem operation.

Fields

final_backup_tags: Option<Vec<Tag>>

Use if SkipFinalBackup is set to false, and you want to apply an array of tags to the final backup. If you have set the file system property CopyTagsToBackups to true, and you specify one or more FinalBackupTags when deleting a file system, Amazon FSx will not copy any existing file system tags to the backup.

skip_final_backup: Option<bool>

Set SkipFinalBackup to false if you want to take a final backup of the file system you are deleting. By default, Amazon FSx will not take a final backup on your behalf when the DeleteFileSystem operation is invoked. (Default = true)

Trait Implementations

impl Clone for DeleteFileSystemLustreConfiguration[src]

impl Debug for DeleteFileSystemLustreConfiguration[src]

impl Default for DeleteFileSystemLustreConfiguration[src]

impl PartialEq<DeleteFileSystemLustreConfiguration> for DeleteFileSystemLustreConfiguration[src]

impl Serialize for DeleteFileSystemLustreConfiguration[src]

impl StructuralPartialEq for DeleteFileSystemLustreConfiguration[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.