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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipe.DimensionMappingPropertystatic final classAn implementation forCfnPipe.DimensionMappingProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The metadata attributes of the time series.Dynamic path to the dimension value in the source event.The data type of the dimension for the time-series data.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDimensionName
The metadata attributes of the time series.For example, the name and Availability Zone of an Amazon EC2 instance or the name of the manufacturer of a wind turbine are dimensions.
- See Also:
-
getDimensionValue
Dynamic path to the dimension value in the source event.- See Also:
-
getDimensionValueType
The data type of the dimension for the time-series data.- See Also:
-
builder
-