interface MultiMeasureMappingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Timestream.CfnScheduledQueryPropsMixin.MultiMeasureMappingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstimestream#CfnScheduledQueryPropsMixin_MultiMeasureMappingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.timestream.CfnScheduledQueryPropsMixin.MultiMeasureMappingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_timestream.CfnScheduledQueryPropsMixin.MultiMeasureMappingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_timestream » 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 { aws_timestream as timestream } from '@aws-cdk/cfn-property-mixins';
const multiMeasureMappingsProperty: timestream.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