@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.457Z") @Stability(value=Stable) public enum LustreDeploymentType extends Enum<LustreDeploymentType>
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();
| Enum Constant and Description |
|---|
PERSISTENT_1
Long term storage.
|
PERSISTENT_2
Newer type of long term storage with higher throughput tiers.
|
SCRATCH_1
Original type for shorter term data processing.
|
SCRATCH_2
Newer type for shorter term data processing.
|
| Modifier and Type | Method and Description |
|---|---|
static LustreDeploymentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LustreDeploymentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Stable) public static final LustreDeploymentType SCRATCH_1
Data is not replicated and does not persist on server fail.
@Stability(value=Stable) public static final LustreDeploymentType SCRATCH_2
Data is not replicated and does not persist on server fail. Provides better support for spiky workloads.
@Stability(value=Stable) public static final LustreDeploymentType PERSISTENT_1
Data is replicated and file servers are replaced if they fail.
@Stability(value=Stable) public static final LustreDeploymentType PERSISTENT_2
Data is replicated and file servers are replaced if they fail.
public static LustreDeploymentType[] values()
for (LustreDeploymentType c : LustreDeploymentType.values()) System.out.println(c);
public static LustreDeploymentType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022. All rights reserved.