Interface CfnPipe.SingleMeasureMappingProperty

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

@Stability(Stable) public static interface CfnPipe.SingleMeasureMappingProperty extends software.amazon.jsii.JsiiSerializable
Maps a single source data field to a single record in the specified Timestream for LiveAnalytics table.

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.*;
 SingleMeasureMappingProperty singleMeasureMappingProperty = SingleMeasureMappingProperty.builder()
         .measureName("measureName")
         .measureValue("measureValue")
         .measureValueType("measureValueType")
         .build();
 

See Also: