Class: Aws::Finspace::Types::KxDatabaseCacheConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Finspace::Types::KxDatabaseCacheConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-finspace/types.rb
Overview
The structure of database cache configuration that is used for mapping database paths to cache types in clusters.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cache_type ⇒ String
The type of disk cache.
-
#dataview_name ⇒ String
The name of the dataview to be used for caching historical data on disk.
-
#db_paths ⇒ Array<String>
Specifies the portions of database that will be loaded into the cache for access.
Instance Attribute Details
#cache_type ⇒ String
The type of disk cache. This parameter is used to map the database path to cache storage. The valid values are:
-
CACHE_1000 – This type provides at least 1000 MB/s disk access throughput.
^
3284 3285 3286 3287 3288 3289 3290 |
# File 'lib/aws-sdk-finspace/types.rb', line 3284 class KxDatabaseCacheConfiguration < Struct.new( :cache_type, :db_paths, :dataview_name) SENSITIVE = [] include Aws::Structure end |
#dataview_name ⇒ String
The name of the dataview to be used for caching historical data on disk.
3284 3285 3286 3287 3288 3289 3290 |
# File 'lib/aws-sdk-finspace/types.rb', line 3284 class KxDatabaseCacheConfiguration < Struct.new( :cache_type, :db_paths, :dataview_name) SENSITIVE = [] include Aws::Structure end |
#db_paths ⇒ Array<String>
Specifies the portions of database that will be loaded into the cache for access.
3284 3285 3286 3287 3288 3289 3290 |
# File 'lib/aws-sdk-finspace/types.rb', line 3284 class KxDatabaseCacheConfiguration < Struct.new( :cache_type, :db_paths, :dataview_name) SENSITIVE = [] include Aws::Structure end |