@Stability(value=Stable)
public static interface CfnScheduledQuery.MultiMeasureMappingsProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnScheduledQuery.MultiMeasureMappingsProperty.Builder
A builder for
CfnScheduledQuery.MultiMeasureMappingsProperty |
static class |
CfnScheduledQuery.MultiMeasureMappingsProperty.Jsii$Proxy
An implementation for
CfnScheduledQuery.MultiMeasureMappingsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnScheduledQuery.MultiMeasureMappingsProperty.Builder |
builder() |
Object |
getMultiMeasureAttributeMappings()
Required.
|
default String |
getTargetMultiMeasureName()
The name of the target multi-measure name in the derived table.
|
@Stability(value=Stable) @NotNull Object getMultiMeasureAttributeMappings()
Attribute mappings to be used for mapping query results to ingest data for multi-measure attributes.
@Stability(value=Stable) @Nullable default String getTargetMultiMeasureName()
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.
@Stability(value=Stable) static CfnScheduledQuery.MultiMeasureMappingsProperty.Builder builder()
Copyright © 2022. All rights reserved.