interface MultiMeasureAttributeMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Timestream.CfnScheduledQuery.MultiMeasureAttributeMappingProperty |
Java | software.amazon.awscdk.services.timestream.CfnScheduledQuery.MultiMeasureAttributeMappingProperty |
Python | aws_cdk.aws_timestream.CfnScheduledQuery.MultiMeasureAttributeMappingProperty |
TypeScript | @aws-cdk/aws-timestream » CfnScheduledQuery » MultiMeasureAttributeMappingProperty |
Attribute mapping for MULTI value measures.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as timestream from '@aws-cdk/aws-timestream';
const multiMeasureAttributeMappingProperty: timestream.CfnScheduledQuery.MultiMeasureAttributeMappingProperty = {
measureValueType: 'measureValueType',
sourceColumn: 'sourceColumn',
// the properties below are optional
targetMultiMeasureAttributeName: 'targetMultiMeasureAttributeName',
};
Properties
| Name | Type | Description |
|---|---|---|
| measure | string | Type of the attribute to be read from the source column. |
| source | string | Source column from where the attribute value is to be read. |
| target | string | Custom name to be used for attribute name in derived table. |
measureValueType
Type:
string
Type of the attribute to be read from the source column.
sourceColumn
Type:
string
Source column from where the attribute value is to be read.
targetMultiMeasureAttributeName?
Type:
string
(optional)
Custom name to be used for attribute name in derived table.
If not provided, source column name would be used.

.NET
Java
Python
TypeScript