Interface CfnVolume.SnaplockConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVolume.SnaplockConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnVolume
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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnVolume.SnaplockConfigurationProperty
static final class
An implementation forCfnVolume.SnaplockConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
Enables or disables the audit log volume for an FSx for ONTAP SnapLock volume.default Object
The configuration object for setting the autocommit period of files in an FSx for ONTAP SnapLock volume.default String
Enables, disables, or permanently disables privileged delete on an FSx for ONTAP SnapLock Enterprise volume.default Object
Specifies the retention period of an FSx for ONTAP SnapLock volume.Specifies the retention mode of an FSx for ONTAP SnapLock volume.default String
Enables or disables volume-append mode on an FSx for ONTAP SnapLock volume.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSnaplockType
Specifies the retention mode of an FSx for ONTAP SnapLock volume.After it is set, it can't be changed. You can choose one of the following retention modes:
COMPLIANCE
: Files transitioned to write once, read many (WORM) on a Compliance volume can't be deleted until their retention periods expire. This retention mode is used to address government or industry-specific mandates or to protect against ransomware attacks. For more information, see SnapLock Compliance .ENTERPRISE
: Files transitioned to WORM on an Enterprise volume can be deleted by authorized users before their retention periods expire using privileged delete. This retention mode is used to advance an organization's data integrity and internal compliance or to test retention settings before using SnapLock Compliance. For more information, see SnapLock Enterprise .
- See Also:
-
getAuditLogVolume
Enables or disables the audit log volume for an FSx for ONTAP SnapLock volume.The default value is
false
. If you setAuditLogVolume
totrue
, the SnapLock volume is created as an audit log volume. The minimum retention period for an audit log volume is six months.For more information, see SnapLock audit log volumes .
- See Also:
-
getAutocommitPeriod
The configuration object for setting the autocommit period of files in an FSx for ONTAP SnapLock volume.- See Also:
-
getPrivilegedDelete
Enables, disables, or permanently disables privileged delete on an FSx for ONTAP SnapLock Enterprise volume.Enabling privileged delete allows SnapLock administrators to delete write once, read many (WORM) files even if they have active retention periods.
PERMANENTLY_DISABLED
is a terminal state. If privileged delete is permanently disabled on a SnapLock volume, you can't re-enable it. The default value isDISABLED
.For more information, see Privileged delete .
- See Also:
-
getRetentionPeriod
Specifies the retention period of an FSx for ONTAP SnapLock volume.- See Also:
-
getVolumeAppendModeEnabled
Enables or disables volume-append mode on an FSx for ONTAP SnapLock volume.Volume-append mode allows you to create WORM-appendable files and write data to them incrementally. The default value is
false
.For more information, see Volume-append mode .
- See Also:
-
builder
-