Class: Aws::TimestreamQuery::Types::TimestreamConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-timestreamquery/types.rb

Overview

Configuration to write data into Timestream database and table. This configuration allows the user to map the query result select columns into the destination table columns.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#database_nameString

Name of Timestream database to which the query result will be written.

Returns:

  • (String)


1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
# File 'lib/aws-sdk-timestreamquery/types.rb', line 1896

class TimestreamConfiguration < Struct.new(
  :database_name,
  :table_name,
  :time_column,
  :dimension_mappings,
  :multi_measure_mappings,
  :mixed_measure_mappings,
  :measure_name_column)
  SENSITIVE = []
  include Aws::Structure
end

#dimension_mappingsArray<Types::DimensionMapping>

This is to allow mapping column(s) from the query result to the dimension in the destination table.

Returns:



1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
# File 'lib/aws-sdk-timestreamquery/types.rb', line 1896

class TimestreamConfiguration < Struct.new(
  :database_name,
  :table_name,
  :time_column,
  :dimension_mappings,
  :multi_measure_mappings,
  :mixed_measure_mappings,
  :measure_name_column)
  SENSITIVE = []
  include Aws::Structure
end

#measure_name_columnString

Name of the measure column.

Returns:

  • (String)


1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
# File 'lib/aws-sdk-timestreamquery/types.rb', line 1896

class TimestreamConfiguration < Struct.new(
  :database_name,
  :table_name,
  :time_column,
  :dimension_mappings,
  :multi_measure_mappings,
  :mixed_measure_mappings,
  :measure_name_column)
  SENSITIVE = []
  include Aws::Structure
end

#mixed_measure_mappingsArray<Types::MixedMeasureMapping>

Specifies how to map measures to multi-measure records.

Returns:



1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
# File 'lib/aws-sdk-timestreamquery/types.rb', line 1896

class TimestreamConfiguration < Struct.new(
  :database_name,
  :table_name,
  :time_column,
  :dimension_mappings,
  :multi_measure_mappings,
  :mixed_measure_mappings,
  :measure_name_column)
  SENSITIVE = []
  include Aws::Structure
end

#multi_measure_mappingsTypes::MultiMeasureMappings

Multi-measure mappings.



1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
# File 'lib/aws-sdk-timestreamquery/types.rb', line 1896

class TimestreamConfiguration < Struct.new(
  :database_name,
  :table_name,
  :time_column,
  :dimension_mappings,
  :multi_measure_mappings,
  :mixed_measure_mappings,
  :measure_name_column)
  SENSITIVE = []
  include Aws::Structure
end

#table_nameString

Name of Timestream table that the query result will be written to. The table should be within the same database that is provided in Timestream configuration.

Returns:

  • (String)


1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
# File 'lib/aws-sdk-timestreamquery/types.rb', line 1896

class TimestreamConfiguration < Struct.new(
  :database_name,
  :table_name,
  :time_column,
  :dimension_mappings,
  :multi_measure_mappings,
  :mixed_measure_mappings,
  :measure_name_column)
  SENSITIVE = []
  include Aws::Structure
end

#time_columnString

Column from query result that should be used as the time column in destination table. Column type for this should be TIMESTAMP.

Returns:

  • (String)


1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
# File 'lib/aws-sdk-timestreamquery/types.rb', line 1896

class TimestreamConfiguration < Struct.new(
  :database_name,
  :table_name,
  :time_column,
  :dimension_mappings,
  :multi_measure_mappings,
  :mixed_measure_mappings,
  :measure_name_column)
  SENSITIVE = []
  include Aws::Structure
end