Interface CfnScheduledQuery.MultiMeasureMappingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnScheduledQuery.MultiMeasureMappingsProperty.Jsii$Proxy
- Enclosing class:
CfnScheduledQuery
@Stability(Stable)
public static interface CfnScheduledQuery.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.services.timestream.*; MultiMeasureMappingsProperty multiMeasureMappingsProperty = MultiMeasureMappingsProperty.builder() .multiMeasureAttributeMappings(List.of(MultiMeasureAttributeMappingProperty.builder() .measureValueType("measureValueType") .sourceColumn("sourceColumn") // the properties below are optional .targetMultiMeasureAttributeName("targetMultiMeasureAttributeName") .build())) // the properties below are optional .targetMultiMeasureName("targetMultiMeasureName") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnScheduledQuery.MultiMeasureMappingsProperty
static final class
An implementation forCfnScheduledQuery.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.
- 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
-