Class: Aws::FSx::Types::DeleteVolumeOntapConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::DeleteVolumeOntapConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-fsx/types.rb
Overview
Use to specify skipping a final backup, adding tags to a final backup, or bypassing the retention period of an FSx for ONTAP SnapLock Enterprise volume when deleting an FSx for ONTAP volume.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bypass_snaplock_enterprise_retention ⇒ Boolean
Setting this to ‘true` allows a SnapLock administrator to delete an FSx for ONTAP SnapLock Enterprise volume with unexpired write once, read many (WORM) files.
-
#final_backup_tags ⇒ Array<Types::Tag>
A list of ‘Tag` values, with a maximum of 50 elements.
-
#skip_final_backup ⇒ Boolean
Set to true if you want to skip taking a final backup of the volume you are deleting.
Instance Attribute Details
#bypass_snaplock_enterprise_retention ⇒ Boolean
Setting this to ‘true` allows a SnapLock administrator to delete an FSx for ONTAP SnapLock Enterprise volume with unexpired write once, read many (WORM) files. The IAM permission `fsx:BypassSnaplockEnterpriseRetention` is also required to delete SnapLock Enterprise volumes with unexpired WORM files. The default value is `false`.
For more information, see [ Deleting a SnapLock volume].
[1]: docs.aws.amazon.com/fsx/latest/ONTAPGuide/snaplock-delete-volume.html
4564 4565 4566 4567 4568 4569 4570 |
# File 'lib/aws-sdk-fsx/types.rb', line 4564 class DeleteVolumeOntapConfiguration < Struct.new( :skip_final_backup, :final_backup_tags, :bypass_snaplock_enterprise_retention) SENSITIVE = [] include Aws::Structure end |
#final_backup_tags ⇒ Array<Types::Tag>
A list of ‘Tag` values, with a maximum of 50 elements.
4564 4565 4566 4567 4568 4569 4570 |
# File 'lib/aws-sdk-fsx/types.rb', line 4564 class DeleteVolumeOntapConfiguration < Struct.new( :skip_final_backup, :final_backup_tags, :bypass_snaplock_enterprise_retention) SENSITIVE = [] include Aws::Structure end |
#skip_final_backup ⇒ Boolean
Set to true if you want to skip taking a final backup of the volume you are deleting.
4564 4565 4566 4567 4568 4569 4570 |
# File 'lib/aws-sdk-fsx/types.rb', line 4564 class DeleteVolumeOntapConfiguration < Struct.new( :skip_final_backup, :final_backup_tags, :bypass_snaplock_enterprise_retention) SENSITIVE = [] include Aws::Structure end |