@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)", date="2023-01-31T18:36:54.150Z") public enum LustreDeploymentType extends java.lang.Enum<LustreDeploymentType>
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();
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(java.lang.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.
|
public static final LustreDeploymentType SCRATCH_1
Data is not replicated and does not persist on server fail.
public static final LustreDeploymentType SCRATCH_2
Data is not replicated and does not persist on server fail. Provides better support for spiky workloads.
public static final LustreDeploymentType PERSISTENT_1
Data is replicated and file servers are replaced if they fail.
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(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null