Interface LustreFileSystemProps

All Superinterfaces:
FileSystemProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
LustreFileSystemProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:40.280Z") @Stability(Stable) public interface LustreFileSystemProps extends software.amazon.jsii.JsiiSerializable, FileSystemProps
Properties specific to the Lustre version of the FSx file system.

Example:

 Vpc vpc;
 LustreFileSystem fileSystem = LustreFileSystem.Builder.create(this, "FsxLustreFileSystem")
         .lustreConfiguration(LustreConfiguration.builder().deploymentType(LustreDeploymentType.SCRATCH_2).build())
         .storageCapacityGiB(1200)
         .vpc(vpc)
         .vpcSubnet(vpc.getPrivateSubnets()[0])
         .build();