Interface CfnScheduledQuery.MixedMeasureMappingProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnScheduledQuery.MixedMeasureMappingProperty.Jsii$Proxy
Enclosing class:
CfnScheduledQuery

@Stability(Stable) public static interface CfnScheduledQuery.MixedMeasureMappingProperty extends software.amazon.jsii.JsiiSerializable
MixedMeasureMappings are mappings that can be used to ingest data into a mixture of narrow and multi measures in the derived table.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.timestream.*;
 MixedMeasureMappingProperty mixedMeasureMappingProperty = MixedMeasureMappingProperty.builder()
         .measureValueType("measureValueType")
         // the properties below are optional
         .measureName("measureName")
         .multiMeasureAttributeMappings(List.of(MultiMeasureAttributeMappingProperty.builder()
                 .measureValueType("measureValueType")
                 .sourceColumn("sourceColumn")
                 // the properties below are optional
                 .targetMultiMeasureAttributeName("targetMultiMeasureAttributeName")
                 .build()))
         .sourceColumn("sourceColumn")
         .targetMeasureName("targetMeasureName")
         .build();
 

See Also: