Interface CfnPipe.DimensionMappingProperty

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

@Stability(Stable) public static interface CfnPipe.DimensionMappingProperty extends software.amazon.jsii.JsiiSerializable
Maps source data to a dimension in the target 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.*;
 DimensionMappingProperty dimensionMappingProperty = DimensionMappingProperty.builder()
         .dimensionName("dimensionName")
         .dimensionValue("dimensionValue")
         .dimensionValueType("dimensionValueType")
         .build();
 

See Also: