#[non_exhaustive]pub struct DeleteFileSystemLustreConfiguration {
pub skip_final_backup: Option<bool>,
pub final_backup_tags: Option<Vec<Tag>>,
}
Expand description
The configuration object for the Amazon FSx for Lustre file system being deleted in the DeleteFileSystem
operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.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)
The fsx:CreateBackup
permission is required if you set SkipFinalBackup
to false
in order to delete the file system and take a final backup.
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.
Implementations§
source§impl DeleteFileSystemLustreConfiguration
impl DeleteFileSystemLustreConfiguration
sourcepub fn skip_final_backup(&self) -> Option<bool>
pub fn skip_final_backup(&self) -> 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)
The fsx:CreateBackup
permission is required if you set SkipFinalBackup
to false
in order to delete the file system and take a final backup.
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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .final_backup_tags.is_none()
.
source§impl DeleteFileSystemLustreConfiguration
impl DeleteFileSystemLustreConfiguration
sourcepub fn builder() -> DeleteFileSystemLustreConfigurationBuilder
pub fn builder() -> DeleteFileSystemLustreConfigurationBuilder
Creates a new builder-style object to manufacture DeleteFileSystemLustreConfiguration
.
Trait Implementations§
source§impl Clone for DeleteFileSystemLustreConfiguration
impl Clone for DeleteFileSystemLustreConfiguration
source§fn clone(&self) -> DeleteFileSystemLustreConfiguration
fn clone(&self) -> DeleteFileSystemLustreConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DeleteFileSystemLustreConfiguration
impl PartialEq for DeleteFileSystemLustreConfiguration
source§fn eq(&self, other: &DeleteFileSystemLustreConfiguration) -> bool
fn eq(&self, other: &DeleteFileSystemLustreConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.