Enum LustreDeploymentType
The different kinds of file system deployments used by Lustre.
Namespace: Amazon.CDK.AWS.FSx
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public enum LustreDeploymentType
Syntax (vb)
Public Enum LustreDeploymentType
Remarks
ExampleMetadata: infused
Examples
using Amazon.CDK.AWS.S3;
Vpc vpc;
Bucket bucket;
IDictionary<string, object> lustreConfiguration = new Dictionary<string, object> {
{ "deploymentType", LustreDeploymentType.SCRATCH_2 },
{ "exportPath", bucket.S3UrlForObject() },
{ "importPath", bucket.S3UrlForObject() },
{ "autoImportPolicy", LustreAutoImportPolicy.NEW_CHANGED_DELETED }
};
var fs = new LustreFileSystem(this, "FsxLustreFileSystem", new LustreFileSystemProps {
Vpc = vpc,
VpcSubnet = vpc.PrivateSubnets[0],
StorageCapacityGiB = 1200,
LustreConfiguration = lustreConfiguration
});
Synopsis
Fields
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. |
Fields
Name | 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. |