Class: Aws::FSx::Types::DeleteVolumeOntapConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::DeleteVolumeOntapConfiguration
- Defined in:
- gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb
Overview
Note:
When making an API call, you may pass DeleteVolumeOntapConfiguration data as a hash:
{
skip_final_backup: false,
final_backup_tags: [
{
key: "TagKey", # required
value: "TagValue", # required
},
],
}
Use to specify skipping a final backup, or to add tags to a final backup.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#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
#final_backup_tags ⇒ Array<Types::Tag>
A list of Tag
values, with a maximum of 50 elements.
4325 4326 4327 4328 4329 4330 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4325 class DeleteVolumeOntapConfiguration < Struct.new( :skip_final_backup, :final_backup_tags) 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.
4325 4326 4327 4328 4329 4330 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4325 class DeleteVolumeOntapConfiguration < Struct.new( :skip_final_backup, :final_backup_tags) SENSITIVE = [] include Aws::Structure end |