Class: Aws::FSx::Types::DeleteFileSystemLustreConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::FSx::Types::DeleteFileSystemLustreConfiguration
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-fsx/types.rb
 
Overview
The configuration object for the Amazon FSx for Lustre file system being deleted in the ‘DeleteFileSystem` operation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #final_backup_tags  ⇒ Array<Types::Tag> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Use if ‘SkipFinalBackup` is set to `false`, and you want to apply an array of tags to the final backup.
 - 
  
    
      #skip_final_backup  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Set ‘SkipFinalBackup` to false if you want to take a final backup of the file system you are deleting.
 
Instance Attribute Details
#final_backup_tags ⇒ Array<Types::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.
      4362 4363 4364 4365 4366 4367  | 
    
      # File 'lib/aws-sdk-fsx/types.rb', line 4362 class DeleteFileSystemLustreConfiguration < Struct.new( :skip_final_backup, :final_backup_tags) SENSITIVE = [] include Aws::Structure end  | 
  
#skip_final_backup ⇒ Boolean
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)
<note markdown=“1”> The ‘fsx:CreateBackup` permission is required if you set `SkipFinalBackup` to `false` in order to delete the file system and take a final backup.
</note>
  
      4362 4363 4364 4365 4366 4367  | 
    
      # File 'lib/aws-sdk-fsx/types.rb', line 4362 class DeleteFileSystemLustreConfiguration < Struct.new( :skip_final_backup, :final_backup_tags) SENSITIVE = [] include Aws::Structure end  |