Class: Aws::TimestreamQuery::Types::MultiMeasureAttributeMapping
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamQuery::Types::MultiMeasureAttributeMapping
- Defined in:
- gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb
Overview
Attribute mapping for MULTI value measures.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#measure_value_type ⇒ String
Type of the attribute to be read from the source column.
-
#source_column ⇒ String
Source column from where the attribute value is to be read.
-
#target_multi_measure_attribute_name ⇒ String
Custom name to be used for attribute name in derived table.
Instance Attribute Details
#measure_value_type ⇒ String
Type of the attribute to be read from the source column.
621 622 623 624 625 626 627 |
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 621 class MultiMeasureAttributeMapping < Struct.new( :source_column, :target_multi_measure_attribute_name, :measure_value_type) SENSITIVE = [] include Aws::Structure end |
#source_column ⇒ String
Source column from where the attribute value is to be read.
621 622 623 624 625 626 627 |
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 621 class MultiMeasureAttributeMapping < Struct.new( :source_column, :target_multi_measure_attribute_name, :measure_value_type) SENSITIVE = [] include Aws::Structure end |
#target_multi_measure_attribute_name ⇒ String
Custom name to be used for attribute name in derived table. If not provided, source column name would be used.
621 622 623 624 625 626 627 |
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 621 class MultiMeasureAttributeMapping < Struct.new( :source_column, :target_multi_measure_attribute_name, :measure_value_type) SENSITIVE = [] include Aws::Structure end |