Interface CfnVolume.AutocommitPeriodProperty

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

@Stability(Stable) public static interface CfnVolume.AutocommitPeriodProperty extends software.amazon.jsii.JsiiSerializable
Sets the autocommit period of files in an FSx for ONTAP SnapLock volume, which determines how long the files must remain unmodified before they're automatically transitioned to the write once, read many (WORM) state.

For more information, see Autocommit .

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.*;
 AutocommitPeriodProperty autocommitPeriodProperty = AutocommitPeriodProperty.builder()
         .type("type")
         // the properties below are optional
         .value(123)
         .build();
 

See Also: