Class: Aws::Finspace::Types::KxDataviewSegmentConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Finspace::Types::KxDataviewSegmentConfiguration
- Defined in:
- gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb
Overview
The configuration that contains the database path of the data that you want to place on each selected volume. Each segment must have a unique database path for each volume. If you do not explicitly specify any database path for a volume, they are accessible from the cluster through the default S3/object store segment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_paths ⇒ Array<String>
The database path of the data that you want to place on each selected volume for the segment.
-
#on_demand ⇒ Boolean
Enables on-demand caching on the selected database path when a particular file or a column of the database is accessed.
-
#volume_name ⇒ String
The name of the volume where you want to add data.
Instance Attribute Details
#db_paths ⇒ Array<String>
The database path of the data that you want to place on each selected volume for the segment. Each segment must have a unique database path for each volume.
3557 3558 3559 3560 3561 3562 3563 |
# File 'gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb', line 3557 class KxDataviewSegmentConfiguration < Struct.new( :db_paths, :volume_name, :on_demand) SENSITIVE = [] include Aws::Structure end |
#on_demand ⇒ Boolean
Enables on-demand caching on the selected database path when a particular file or a column of the database is accessed. When on demand caching is True, dataviews perform minimal loading of files on the filesystem as needed. When it is set to False, everything is cached. The default value is False.
3557 3558 3559 3560 3561 3562 3563 |
# File 'gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb', line 3557 class KxDataviewSegmentConfiguration < Struct.new( :db_paths, :volume_name, :on_demand) SENSITIVE = [] include Aws::Structure end |
#volume_name ⇒ String
The name of the volume where you want to add data.
3557 3558 3559 3560 3561 3562 3563 |
# File 'gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb', line 3557 class KxDataviewSegmentConfiguration < Struct.new( :db_paths, :volume_name, :on_demand) SENSITIVE = [] include Aws::Structure end |