#[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 ==.impl StructuralPartialEq for DeleteFileSystemLustreConfiguration
Auto Trait Implementations§
impl Freeze for DeleteFileSystemLustreConfiguration
impl RefUnwindSafe for DeleteFileSystemLustreConfiguration
impl Send for DeleteFileSystemLustreConfiguration
impl Sync for DeleteFileSystemLustreConfiguration
impl Unpin for DeleteFileSystemLustreConfiguration
impl UnwindSafe for DeleteFileSystemLustreConfiguration
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more