@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.458Z") @Stability(value=Stable) public interface LustreFileSystemProps extends software.amazon.jsii.JsiiSerializable, FileSystemProps
Example:
// Example automatically generated from non-compiling source. May contain errors.
Vpc vpc;
s3.Bucket bucket;
Map<String, Object> lustreConfiguration = Map.of(
"deploymentType", LustreDeploymentType.SCRATCH_2,
"exportPath", bucket.s3UrlForObject(),
"importPath", bucket.s3UrlForObject(),
"autoImportPolicy", LustreAutoImportPolicy.NEW_CHANGED_DELETED);
LustreFileSystem fs = LustreFileSystem.Builder.create(this, "FsxLustreFileSystem")
.vpc(vpc)
.vpcSubnet(vpc.getPrivateSubnets()[0])
.storageCapacityGiB(1200)
.lustreConfiguration(lustreConfiguration)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
LustreFileSystemProps.Builder
A builder for
LustreFileSystemProps |
static class |
LustreFileSystemProps.Jsii$Proxy
An implementation for
LustreFileSystemProps |
| Modifier and Type | Method and Description |
|---|---|
static LustreFileSystemProps.Builder |
builder() |
LustreConfiguration |
getLustreConfiguration()
Additional configuration for FSx specific to Lustre.
|
ISubnet |
getVpcSubnet()
The subnet that the file system will be accessible from.
|
getBackupId, getKmsKey, getRemovalPolicy, getSecurityGroup, getStorageCapacityGiB, getVpc@Stability(value=Stable) @NotNull LustreConfiguration getLustreConfiguration()
@Stability(value=Stable) @NotNull ISubnet getVpcSubnet()
@Stability(value=Stable) static LustreFileSystemProps.Builder builder()
builder in interface FileSystemPropsLustreFileSystemProps.Builder of LustreFileSystemPropsCopyright © 2022. All rights reserved.