interface DimensionMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Timestream.Mixins.CfnScheduledQueryPropsMixin.DimensionMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstimestream/mixins#CfnScheduledQueryPropsMixin_DimensionMappingProperty |
Java | software.amazon.awscdk.mixins.preview.services.timestream.mixins.CfnScheduledQueryPropsMixin.DimensionMappingProperty |
Python | aws_cdk.mixins_preview.aws_timestream.mixins.CfnScheduledQueryPropsMixin.DimensionMappingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_timestream » mixins » 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 { mixins as timestream_mixins } from '@aws-cdk/mixins-preview/aws-timestream';
const dimensionMappingProperty: timestream_mixins.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