Interface CfnScheduledQuery.MultiMeasureAttributeMappingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnScheduledQuery.MultiMeasureAttributeMappingProperty.Jsii$Proxy
- Enclosing class:
CfnScheduledQuery
@Stability(Stable)
public static interface CfnScheduledQuery.MultiMeasureAttributeMappingProperty
extends software.amazon.jsii.JsiiSerializable
Attribute mapping for MULTI value measures.
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.timestream.*;
MultiMeasureAttributeMappingProperty multiMeasureAttributeMappingProperty = MultiMeasureAttributeMappingProperty.builder()
.measureValueType("measureValueType")
.sourceColumn("sourceColumn")
// the properties below are optional
.targetMultiMeasureAttributeName("targetMultiMeasureAttributeName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnScheduledQuery.MultiMeasureAttributeMappingPropertystatic final classAn implementation forCfnScheduledQuery.MultiMeasureAttributeMappingProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMeasureValueType
Type of the attribute to be read from the source column.- See Also:
-
getSourceColumn
Source column from where the attribute value is to be read.- See Also:
-
getTargetMultiMeasureAttributeName
Custom name to be used for attribute name in derived table.If not provided, source column name would be used.
- See Also:
-
builder
-