enum DriveCacheType
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.FSx.DriveCacheType |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsfsx#DriveCacheType |
![]() | software.amazon.awscdk.services.fsx.DriveCacheType |
![]() | aws_cdk.aws_fsx.DriveCacheType |
![]() | aws-cdk-lib » aws_fsx » DriveCacheType |
The type of drive cache used by PERSISTENT_1 file systems that are provisioned with HDD storage devices.
Example
declare const vpc: ec2.Vpc;
const fileSystem = new fsx.LustreFileSystem(this, 'FsxLustreFileSystem', {
lustreConfiguration: {
deploymentType: fsx.LustreDeploymentType.PERSISTENT_1,
driveCacheType: fsx.DriveCacheType.READ,
},
storageCapacityGiB: 1200,
vpc,
vpcSubnet: vpc.privateSubnets[0],
storageType: fsx.StorageType.HDD,
});
Members
Name | Description |
---|---|
NONE | The Lustre file system is configured with no data cache. |
READ | The Lustre file system is configured with a read cache. |
NONE
The Lustre file system is configured with no data cache.
READ
The Lustre file system is configured with a read cache.