Class: Aws::FSx::Types::OpenZFSReadCacheConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::OpenZFSReadCacheConfiguration
- Defined in:
- gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb
Overview
The configuration for the optional provisioned SSD read cache on file systems that use the Intelligent-Tiering storage class.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#size_gi_b ⇒ Integer
Required if
SizingMode
is set toUSER_PROVISIONED
. -
#sizing_mode ⇒ String
Specifies how the provisioned SSD read cache is sized, as follows:.
Instance Attribute Details
#size_gi_b ⇒ Integer
Required if SizingMode
is set to USER_PROVISIONED
. Specifies the
size of the file system's SSD read cache, in gibibytes (GiB).
7562 7563 7564 7565 7566 7567 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 7562 class OpenZFSReadCacheConfiguration < Struct.new( :sizing_mode, :size_gi_b) SENSITIVE = [] include Aws::Structure end |
#sizing_mode ⇒ String
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.
7562 7563 7564 7565 7566 7567 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 7562 class OpenZFSReadCacheConfiguration < Struct.new( :sizing_mode, :size_gi_b) SENSITIVE = [] include Aws::Structure end |