Class: Aws::FSx::Types::DeleteFileSystemOpenZFSConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::DeleteFileSystemOpenZFSConfiguration
- Defined in:
- gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb
Overview
The configuration object for the Amazon FSx for OpenZFS file system
used in the DeleteFileSystem
operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#final_backup_tags ⇒ Array<Types::Tag>
A list of tags to apply to the file system's final backup.
-
#options ⇒ Array<String>
To delete a file system if there are child volumes present below the root volume, use the string
DELETE_CHILD_VOLUMES_AND_SNAPSHOTS
. -
#skip_final_backup ⇒ Boolean
By default, Amazon FSx for OpenZFS takes a final backup on your behalf when the
DeleteFileSystem
operation is invoked.
Instance Attribute Details
#final_backup_tags ⇒ Array<Types::Tag>
A list of tags to apply to the file system's final backup.
4436 4437 4438 4439 4440 4441 4442 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4436 class DeleteFileSystemOpenZFSConfiguration < Struct.new( :skip_final_backup, :final_backup_tags, :options) SENSITIVE = [] include Aws::Structure end |
#options ⇒ Array<String>
To delete a file system if there are child volumes present below the
root volume, use the string DELETE_CHILD_VOLUMES_AND_SNAPSHOTS
. If
your file system has child volumes and you don't use this option,
the delete request will fail.
4436 4437 4438 4439 4440 4441 4442 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4436 class DeleteFileSystemOpenZFSConfiguration < Struct.new( :skip_final_backup, :final_backup_tags, :options) SENSITIVE = [] include Aws::Structure end |
#skip_final_backup ⇒ Boolean
By default, Amazon FSx for OpenZFS 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 taking a final backup, set this
value to true
.
4436 4437 4438 4439 4440 4441 4442 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4436 class DeleteFileSystemOpenZFSConfiguration < Struct.new( :skip_final_backup, :final_backup_tags, :options) SENSITIVE = [] include Aws::Structure end |