interface MultiMeasureAttributeMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Timestream.CfnScheduledQueryPropsMixin.MultiMeasureAttributeMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstimestream#CfnScheduledQueryPropsMixin_MultiMeasureAttributeMappingProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.timestream.CfnScheduledQueryPropsMixin.MultiMeasureAttributeMappingProperty |
Python | aws_cdk.cfn_property_mixins.aws_timestream.CfnScheduledQueryPropsMixin.MultiMeasureAttributeMappingProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_timestream » CfnScheduledQueryPropsMixin » 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 { aws_timestream as timestream } from '@aws-cdk/cfn-property-mixins';
const multiMeasureAttributeMappingProperty: timestream.CfnScheduledQueryPropsMixin.MultiMeasureAttributeMappingProperty = {
measureValueType: 'measureValueType',
sourceColumn: 'sourceColumn',
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
(optional)
Type of the attribute to be read from the source column.
sourceColumn?
Type:
string
(optional)
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
Go
Java
Python
TypeScript