Interface CfnFileSystem.OpenZFSConfigurationProperty

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

@Stability(Stable) public static interface CfnFileSystem.OpenZFSConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The OpenZFS configuration for the file system that's being created.

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()
         .deploymentType("deploymentType")
         // the properties below are optional
         .automaticBackupRetentionDays(123)
         .copyTagsToBackups(false)
         .copyTagsToVolumes(false)
         .dailyAutomaticBackupStartTime("dailyAutomaticBackupStartTime")
         .diskIopsConfiguration(DiskIopsConfigurationProperty.builder()
                 .iops(123)
                 .mode("mode")
                 .build())
         .endpointIpAddressRange("endpointIpAddressRange")
         .options(List.of("options"))
         .preferredSubnetId("preferredSubnetId")
         .rootVolumeConfiguration(RootVolumeConfigurationProperty.builder()
                 .copyTagsToSnapshots(false)
                 .dataCompressionType("dataCompressionType")
                 .nfsExports(List.of(NfsExportsProperty.builder()
                         .clientConfigurations(List.of(ClientConfigurationsProperty.builder()
                                 .clients("clients")
                                 .options(List.of("options"))
                                 .build()))
                         .build()))
                 .readOnly(false)
                 .recordSizeKiB(123)
                 .userAndGroupQuotas(List.of(UserAndGroupQuotasProperty.builder()
                         .id(123)
                         .storageCapacityQuotaGiB(123)
                         .type("type")
                         .build()))
                 .build())
         .routeTableIds(List.of("routeTableIds"))
         .throughputCapacity(123)
         .weeklyMaintenanceStartTime("weeklyMaintenanceStartTime")
         .build();
 

See Also: