Interface CfnScheduledQueryPropsMixin.MultiMeasureMappingsProperty

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

@Stability(Stable) public static interface CfnScheduledQueryPropsMixin.MultiMeasureMappingsProperty extends software.amazon.jsii.JsiiSerializable
Only one of MixedMeasureMappings or MultiMeasureMappings is to be provided.

MultiMeasureMappings can be used to ingest data as 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.cfnpropertymixins.services.timestream.*;
 MultiMeasureMappingsProperty multiMeasureMappingsProperty = MultiMeasureMappingsProperty.builder()
         .multiMeasureAttributeMappings(List.of(MultiMeasureAttributeMappingProperty.builder()
                 .measureValueType("measureValueType")
                 .sourceColumn("sourceColumn")
                 .targetMultiMeasureAttributeName("targetMultiMeasureAttributeName")
                 .build()))
         .targetMultiMeasureName("targetMultiMeasureName")
         .build();
 

See Also: