Class: Aws::Finspace::Types::KxDataviewSegmentConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#db_pathsArray<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.

Returns:

  • (Array<String>)


3541
3542
3543
3544
3545
3546
3547
# File 'gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb', line 3541

class KxDataviewSegmentConfiguration < Struct.new(
  :db_paths,
  :volume_name,
  :on_demand)
  SENSITIVE = []
  include Aws::Structure
end

#on_demandBoolean

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.

Returns:

  • (Boolean)


3541
3542
3543
3544
3545
3546
3547
# File 'gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb', line 3541

class KxDataviewSegmentConfiguration < Struct.new(
  :db_paths,
  :volume_name,
  :on_demand)
  SENSITIVE = []
  include Aws::Structure
end

#volume_nameString

The name of the volume where you want to add data.

Returns:

  • (String)


3541
3542
3543
3544
3545
3546
3547
# File 'gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb', line 3541

class KxDataviewSegmentConfiguration < Struct.new(
  :db_paths,
  :volume_name,
  :on_demand)
  SENSITIVE = []
  include Aws::Structure
end