@Stability(value=Stable)
public static interface CfnScheduledQuery.MixedMeasureMappingProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
MixedMeasureMappingProperty mixedMeasureMappingProperty = MixedMeasureMappingProperty.builder()
.measureValueType("measureValueType")
// the properties below are optional
.measureName("measureName")
.multiMeasureAttributeMappings(List.of(MultiMeasureAttributeMappingProperty.builder()
.measureValueType("measureValueType")
.sourceColumn("sourceColumn")
// the properties below are optional
.targetMultiMeasureAttributeName("targetMultiMeasureAttributeName")
.build()))
.sourceColumn("sourceColumn")
.targetMeasureName("targetMeasureName")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnScheduledQuery.MixedMeasureMappingProperty.Builder
A builder for
CfnScheduledQuery.MixedMeasureMappingProperty |
static class |
CfnScheduledQuery.MixedMeasureMappingProperty.Jsii$Proxy
An implementation for
CfnScheduledQuery.MixedMeasureMappingProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnScheduledQuery.MixedMeasureMappingProperty.Builder |
builder() |
default String |
getMeasureName()
Refers to the value of measure_name in a result row.
|
String |
getMeasureValueType()
Type of the value that is to be read from sourceColumn.
|
default Object |
getMultiMeasureAttributeMappings()
Required when measureValueType is MULTI.
|
default String |
getSourceColumn()
This field refers to the source column from which measure-value is to be read for result materialization.
|
default String |
getTargetMeasureName()
Target measure name to be used.
|
@Stability(value=Stable) @NotNull String getMeasureValueType()
If the mapping is for MULTI, use MeasureValueType.MULTI.
@Stability(value=Stable) @Nullable default String getMeasureName()
This field is required if MeasureNameColumn is provided.
@Stability(value=Stable) @Nullable default Object getMultiMeasureAttributeMappings()
Attribute mappings for MULTI value measures.
@Stability(value=Stable) @Nullable default String getSourceColumn()
@Stability(value=Stable) @Nullable default String getTargetMeasureName()
If not provided, the target measure name by default would be measure-name if provided, or sourceColumn otherwise.
@Stability(value=Stable) static CfnScheduledQuery.MixedMeasureMappingProperty.Builder builder()
Copyright © 2022. All rights reserved.