aws-cdk-lib.aws_timestream.CfnScheduledQuery.MultiMeasureAttributeMappingProperty

interface MultiMeasureAttributeMappingProperty

LanguageType name
.NETAmazon.CDK.AWS.Timestream.CfnScheduledQuery.MultiMeasureAttributeMappingProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awstimestream#CfnScheduledQuery_MultiMeasureAttributeMappingProperty
Javasoftware.amazon.awscdk.services.timestream.CfnScheduledQuery.MultiMeasureAttributeMappingProperty
Pythonaws_cdk.aws_timestream.CfnScheduledQuery.MultiMeasureAttributeMappingProperty
TypeScript aws-cdk-lib » 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 { aws_timestream as timestream } from 'aws-cdk-lib';
const multiMeasureAttributeMappingProperty: timestream.CfnScheduledQuery.MultiMeasureAttributeMappingProperty = {
  measureValueType: 'measureValueType',
  sourceColumn: 'sourceColumn',

  // the properties below are optional
  targetMultiMeasureAttributeName: 'targetMultiMeasureAttributeName',
};

Properties

NameTypeDescription
measureValueTypestringType of the attribute to be read from the source column.
sourceColumnstringSource column from where the attribute value is to be read.
targetMultiMeasureAttributeName?stringCustom 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.