Class: Aws::FSx::Types::SnaplockRetentionPeriod
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::SnaplockRetentionPeriod
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-fsx/types.rb
Overview
The configuration to set the retention period of an FSx for ONTAP SnapLock volume. The retention period includes default, maximum, and minimum settings. For more information, see [Working with the retention period in SnapLock].
[1]: docs.aws.amazon.com/fsx/latest/ONTAPGuide/snaplock-retention.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#default_retention ⇒ Types::RetentionPeriod
The retention period assigned to a write once, read many (WORM) file by default if an explicit retention period is not set for an FSx for ONTAP SnapLock volume.
-
#maximum_retention ⇒ Types::RetentionPeriod
The longest retention period that can be assigned to a WORM file on an FSx for ONTAP SnapLock volume.
-
#minimum_retention ⇒ Types::RetentionPeriod
The shortest retention period that can be assigned to a WORM file on an FSx for ONTAP SnapLock volume.
Instance Attribute Details
#default_retention ⇒ Types::RetentionPeriod
The retention period assigned to a write once, read many (WORM) file by default if an explicit retention period is not set for an FSx for ONTAP SnapLock volume. The default retention period must be greater than or equal to the minimum retention period and less than or equal to the maximum retention period.
8111 8112 8113 8114 8115 8116 8117 |
# File 'lib/aws-sdk-fsx/types.rb', line 8111 class SnaplockRetentionPeriod < Struct.new( :default_retention, :minimum_retention, :maximum_retention) SENSITIVE = [] include Aws::Structure end |
#maximum_retention ⇒ Types::RetentionPeriod
The longest retention period that can be assigned to a WORM file on an FSx for ONTAP SnapLock volume.
8111 8112 8113 8114 8115 8116 8117 |
# File 'lib/aws-sdk-fsx/types.rb', line 8111 class SnaplockRetentionPeriod < Struct.new( :default_retention, :minimum_retention, :maximum_retention) SENSITIVE = [] include Aws::Structure end |
#minimum_retention ⇒ Types::RetentionPeriod
The shortest retention period that can be assigned to a WORM file on an FSx for ONTAP SnapLock volume.
8111 8112 8113 8114 8115 8116 8117 |
# File 'lib/aws-sdk-fsx/types.rb', line 8111 class SnaplockRetentionPeriod < Struct.new( :default_retention, :minimum_retention, :maximum_retention) SENSITIVE = [] include Aws::Structure end |