Interface CfnVolume.SnaplockConfigurationProperty

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

@Stability(Stable) public static interface CfnVolume.SnaplockConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Specifies the SnapLock configuration for an FSx for ONTAP SnapLock volume.

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.*;
 SnaplockConfigurationProperty snaplockConfigurationProperty = SnaplockConfigurationProperty.builder()
         .snaplockType("snaplockType")
         // the properties below are optional
         .auditLogVolume("auditLogVolume")
         .autocommitPeriod(AutocommitPeriodProperty.builder()
                 .type("type")
                 // the properties below are optional
                 .value(123)
                 .build())
         .privilegedDelete("privilegedDelete")
         .retentionPeriod(SnaplockRetentionPeriodProperty.builder()
                 .defaultRetention(RetentionPeriodProperty.builder()
                         .type("type")
                         // the properties below are optional
                         .value(123)
                         .build())
                 .maximumRetention(RetentionPeriodProperty.builder()
                         .type("type")
                         // the properties below are optional
                         .value(123)
                         .build())
                 .minimumRetention(RetentionPeriodProperty.builder()
                         .type("type")
                         // the properties below are optional
                         .value(123)
                         .build())
                 .build())
         .volumeAppendModeEnabled("volumeAppendModeEnabled")
         .build();
 

See Also: