interface DimensionMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Timestream.CfnScheduledQueryPropsMixin.DimensionMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstimestream#CfnScheduledQueryPropsMixin_DimensionMappingProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.timestream.CfnScheduledQueryPropsMixin.DimensionMappingProperty |
Python | aws_cdk.cfn_property_mixins.aws_timestream.CfnScheduledQueryPropsMixin.DimensionMappingProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_timestream » CfnScheduledQueryPropsMixin » DimensionMappingProperty |
This type is used to map column(s) from the query result to a dimension in the destination 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 dimensionMappingProperty: timestream.CfnScheduledQueryPropsMixin.DimensionMappingProperty = {
dimensionValueType: 'dimensionValueType',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| dimension | string | Type for the dimension: VARCHAR. |
| name? | string | Column name from query result. |
dimensionValueType?
Type:
string
(optional)
Type for the dimension: VARCHAR.
name?
Type:
string
(optional)
Column name from query result.

.NET
Go
Java
Python
TypeScript