Interface CfnFileSystem.ReadCacheConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFileSystem.ReadCacheConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnFileSystem
@Stability(Stable)
public static interface CfnFileSystem.ReadCacheConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.fsx.*;
ReadCacheConfigurationProperty readCacheConfigurationProperty = ReadCacheConfigurationProperty.builder()
.sizeGiB(123)
.sizingMode("sizingMode")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFileSystem.ReadCacheConfigurationPropertystatic final classAn implementation forCfnFileSystem.ReadCacheConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSizeGiB
Required ifSizingModeis set toUSER_PROVISIONED.Specifies the size of the file system's SSD read cache, in gibibytes (GiB).
- See Also:
-
getSizingMode
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.
- See Also:
- Set to
-
builder
-