Interface CfnFileSystem.LustreConfigurationProperty

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

@Stability(Stable) public static interface CfnFileSystem.LustreConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration for the Amazon FSx for Lustre file system.

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.*;
 LustreConfigurationProperty lustreConfigurationProperty = LustreConfigurationProperty.builder()
         .autoImportPolicy("autoImportPolicy")
         .automaticBackupRetentionDays(123)
         .copyTagsToBackups(false)
         .dailyAutomaticBackupStartTime("dailyAutomaticBackupStartTime")
         .dataCompressionType("dataCompressionType")
         .deploymentType("deploymentType")
         .driveCacheType("driveCacheType")
         .exportPath("exportPath")
         .importedFileChunkSize(123)
         .importPath("importPath")
         .metadataConfiguration(MetadataConfigurationProperty.builder()
                 .iops(123)
                 .mode("mode")
                 .build())
         .perUnitStorageThroughput(123)
         .weeklyMaintenanceStartTime("weeklyMaintenanceStartTime")
         .build();
 

See Also: