Interface CfnVolume.RetentionPeriodProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnVolume.RetentionPeriodProperty.Jsii$Proxy
Enclosing class:
CfnVolume

@Stability(Stable) public static interface CfnVolume.RetentionPeriodProperty extends software.amazon.jsii.JsiiSerializable
Specifies the retention period of an FSx for ONTAP SnapLock volume.

After it is set, it can't be changed. Files can't be deleted or modified during the retention period.

For more information, see Working with the retention period in SnapLock .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.fsx.*;
 RetentionPeriodProperty retentionPeriodProperty = RetentionPeriodProperty.builder()
         .type("type")
         // the properties below are optional
         .value(123)
         .build();
 

See Also: