Interface CfnVolume.OpenZFSConfigurationProperty

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

@Stability(Stable) public static interface CfnVolume.OpenZFSConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Specifies the configuration of the Amazon FSx for OpenZFS volume that you are creating.

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.*;
 OpenZFSConfigurationProperty openZFSConfigurationProperty = OpenZFSConfigurationProperty.builder()
         .parentVolumeId("parentVolumeId")
         // the properties below are optional
         .copyTagsToSnapshots(false)
         .dataCompressionType("dataCompressionType")
         .nfsExports(List.of(NfsExportsProperty.builder()
                 .clientConfigurations(List.of(ClientConfigurationsProperty.builder()
                         .clients("clients")
                         .options(List.of("options"))
                         .build()))
                 .build()))
         .options(List.of("options"))
         .originSnapshot(OriginSnapshotProperty.builder()
                 .copyStrategy("copyStrategy")
                 .snapshotArn("snapshotArn")
                 .build())
         .readOnly(false)
         .recordSizeKiB(123)
         .storageCapacityQuotaGiB(123)
         .storageCapacityReservationGiB(123)
         .userAndGroupQuotas(List.of(UserAndGroupQuotasProperty.builder()
                 .id(123)
                 .storageCapacityQuotaGiB(123)
                 .type("type")
                 .build()))
         .build();
 

See Also: