Interface CfnScheduledQuery.MultiMeasureAttributeMappingProperty

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

@Stability(Stable) public static interface CfnScheduledQuery.MultiMeasureAttributeMappingProperty extends software.amazon.jsii.JsiiSerializable
Attribute mapping for MULTI value measures.

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.*;
 MultiMeasureAttributeMappingProperty multiMeasureAttributeMappingProperty = MultiMeasureAttributeMappingProperty.builder()
         .measureValueType("measureValueType")
         .sourceColumn("sourceColumn")
         // the properties below are optional
         .targetMultiMeasureAttributeName("targetMultiMeasureAttributeName")
         .build();
 

See Also: