Interface CfnScheduledQueryPropsMixin.MixedMeasureMappingProperty

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

@Stability(Stable) public static interface CfnScheduledQueryPropsMixin.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.mixins.preview.services.timestream.mixins.*;
 MixedMeasureMappingProperty mixedMeasureMappingProperty = MixedMeasureMappingProperty.builder()
         .measureName("measureName")
         .measureValueType("measureValueType")
         .multiMeasureAttributeMappings(List.of(MultiMeasureAttributeMappingProperty.builder()
                 .measureValueType("measureValueType")
                 .sourceColumn("sourceColumn")
                 .targetMultiMeasureAttributeName("targetMultiMeasureAttributeName")
                 .build()))
         .sourceColumn("sourceColumn")
         .targetMeasureName("targetMeasureName")
         .build();
 

See Also: