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 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 class
A builder forCfnFileSystem.ReadCacheConfigurationProperty
static final class
An implementation forCfnFileSystem.ReadCacheConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSizeGiB
Required ifSizingMode
is 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_CACHE
if you do not want to use an SSD read cache with your Intelligent-Tiering file system. - Set to
USER_PROVISIONED
to specify the exact size of your SSD read cache. - Set to
PROPORTIONAL_TO_THROUGHPUT_CAPACITY
to have your SSD read cache automatically sized based on your throughput capacity.
- See Also:
- Set to
-
builder
-