Class: Aws::TimestreamQuery::Types::MultiMeasureMappings
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamQuery::Types::MultiMeasureMappings
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-timestreamquery/types.rb
Overview
Only one of MixedMeasureMappings or MultiMeasureMappings is to be provided. MultiMeasureMappings can be used to ingest data as multi measures in the derived table.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#multi_measure_attribute_mappings ⇒ Array<Types::MultiMeasureAttributeMapping>
Required.
-
#target_multi_measure_name ⇒ String
The name of the target multi-measure name in the derived table.
Instance Attribute Details
#multi_measure_attribute_mappings ⇒ Array<Types::MultiMeasureAttributeMapping>
Required. Attribute mappings to be used for mapping query results to ingest data for multi-measure attributes.
712 713 714 715 716 717 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 712 class MultiMeasureMappings < Struct.new( :target_multi_measure_name, :multi_measure_attribute_mappings) SENSITIVE = [] include Aws::Structure end |
#target_multi_measure_name ⇒ String
The name of the target multi-measure name in the derived table. This input is required when measureNameColumn is not provided. If MeasureNameColumn is provided, then value from that column will be used as multi-measure name.
712 713 714 715 716 717 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 712 class MultiMeasureMappings < Struct.new( :target_multi_measure_name, :multi_measure_attribute_mappings) SENSITIVE = [] include Aws::Structure end |