Interface CfnScheduledQueryPropsMixin.MultiMeasureMappingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnScheduledQueryPropsMixin.MultiMeasureMappingsProperty.Jsii$Proxy
- Enclosing class:
CfnScheduledQueryPropsMixin
@Stability(Stable)
public static interface CfnScheduledQueryPropsMixin.MultiMeasureMappingsProperty
extends software.amazon.jsii.JsiiSerializable
Only one of MixedMeasureMappings or MultiMeasureMappings is to be provided.
MultiMeasureMappings can be used to ingest data as multi measures in the derived table.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.timestream.*;
MultiMeasureMappingsProperty multiMeasureMappingsProperty = MultiMeasureMappingsProperty.builder()
.multiMeasureAttributeMappings(List.of(MultiMeasureAttributeMappingProperty.builder()
.measureValueType("measureValueType")
.sourceColumn("sourceColumn")
.targetMultiMeasureAttributeName("targetMultiMeasureAttributeName")
.build()))
.targetMultiMeasureName("targetMultiMeasureName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnScheduledQueryPropsMixin.MultiMeasureMappingsPropertystatic final classAn implementation forCfnScheduledQueryPropsMixin.MultiMeasureMappingsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMultiMeasureAttributeMappings
Required.Attribute mappings to be used for mapping query results to ingest data for multi-measure attributes.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnScheduledQueryPropsMixin.MultiMeasureAttributeMappingProperty>- See Also:
-
getTargetMultiMeasureName
The name of the target multi-measure name in the derived table.This input is required when measureNameColumn is not provided. If MeasureNameColumn is provided, then value from that column will be used as multi-measure name.
- See Also:
-
builder
@Stability(Stable) static CfnScheduledQueryPropsMixin.MultiMeasureMappingsProperty.Builder builder()
-