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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipe.MultiMeasureMappingPropertystatic final classAn implementation forCfnPipe.MultiMeasureMappingProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Mappings that represent multiple source event fields mapped to measures in the same Timestream for LiveAnalytics record.The name of the multiple measurements per record (multi-measure).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMultiMeasureAttributeMappings
Mappings that represent multiple source event fields mapped to measures in the same Timestream for LiveAnalytics record.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnPipe.MultiMeasureAttributeMappingProperty>- See Also:
-
getMultiMeasureName
The name of the multiple measurements per record (multi-measure).- See Also:
-
builder
-