interface MultiMeasureMappingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Timestream.Mixins.CfnScheduledQueryPropsMixin.MultiMeasureMappingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstimestream/mixins#CfnScheduledQueryPropsMixin_MultiMeasureMappingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.timestream.mixins.CfnScheduledQueryPropsMixin.MultiMeasureMappingsProperty |
Python | aws_cdk.mixins_preview.aws_timestream.mixins.CfnScheduledQueryPropsMixin.MultiMeasureMappingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_timestream » mixins » CfnScheduledQueryPropsMixin » MultiMeasureMappingsProperty |
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 { mixins as timestream_mixins } from '@aws-cdk/mixins-preview/aws-timestream';
const multiMeasureMappingsProperty: timestream_mixins.CfnScheduledQueryPropsMixin.MultiMeasureMappingsProperty = {
multiMeasureAttributeMappings: [{
measureValueType: 'measureValueType',
sourceColumn: 'sourceColumn',
targetMultiMeasureAttributeName: 'targetMultiMeasureAttributeName',
}],
targetMultiMeasureName: 'targetMultiMeasureName',
};
Properties
| Name | Type | Description |
|---|---|---|
| multi | IResolvable | (IResolvable | Multi)[] | Required. |
| target | string | The name of the target multi-measure name in the derived table. |
multiMeasureAttributeMappings?
Type:
IResolvable | (IResolvable | Multi)[]
(optional)
Required.
Attribute mappings to be used for mapping query results to ingest data for multi-measure attributes.
targetMultiMeasureName?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript