Interface CfnPipe.MultiMeasureMappingProperty

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

@Stability(Stable) public static interface CfnPipe.MultiMeasureMappingProperty extends software.amazon.jsii.JsiiSerializable
Maps multiple measures from the source event to the same Timestream for LiveAnalytics record.

For more information, see Amazon Timestream for LiveAnalytics concepts

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.pipes.*;
 MultiMeasureMappingProperty multiMeasureMappingProperty = MultiMeasureMappingProperty.builder()
         .multiMeasureAttributeMappings(List.of(MultiMeasureAttributeMappingProperty.builder()
                 .measureValue("measureValue")
                 .measureValueType("measureValueType")
                 .multiMeasureAttributeName("multiMeasureAttributeName")
                 .build()))
         .multiMeasureName("multiMeasureName")
         .build();
 

See Also: