interface ReadCacheConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FSx.Mixins.CfnFileSystemPropsMixin.ReadCacheConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfsx/mixins#CfnFileSystemPropsMixin_ReadCacheConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.fsx.mixins.CfnFileSystemPropsMixin.ReadCacheConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_fsx.mixins.CfnFileSystemPropsMixin.ReadCacheConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_fsx » mixins » CfnFileSystemPropsMixin » ReadCacheConfigurationProperty |
The configuration for the optional provisioned SSD read cache on Amazon FSx for OpenZFS file systems that use the Intelligent-Tiering storage class.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as fsx_mixins } from '@aws-cdk/mixins-preview/aws-fsx';
const readCacheConfigurationProperty: fsx_mixins.CfnFileSystemPropsMixin.ReadCacheConfigurationProperty = {
sizeGiB: 123,
sizingMode: 'sizingMode',
};
Properties
| Name | Type | Description |
|---|---|---|
| size | number | Required if SizingMode is set to USER_PROVISIONED . |
| sizing | string | Specifies how the provisioned SSD read cache is sized, as follows:. |
sizeGiB?
Type:
number
(optional)
Required if SizingMode is set to USER_PROVISIONED .
Specifies the size of the file system's SSD read cache, in gibibytes (GiB).
sizingMode?
Type:
string
(optional)
Specifies how the provisioned SSD read cache is sized, as follows:.
- Set to
NO_CACHEif you do not want to use an SSD read cache with your Intelligent-Tiering file system. - Set to
USER_PROVISIONEDto specify the exact size of your SSD read cache. - Set to
PROPORTIONAL_TO_THROUGHPUT_CAPACITYto have your SSD read cache automatically sized based on your throughput capacity.

.NET
Go
Java
Python
TypeScript