interface DimensionMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pipes.Mixins.CfnPipePropsMixin.DimensionMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspipes/mixins#CfnPipePropsMixin_DimensionMappingProperty |
Java | software.amazon.awscdk.mixins.preview.services.pipes.mixins.CfnPipePropsMixin.DimensionMappingProperty |
Python | aws_cdk.mixins_preview.aws_pipes.mixins.CfnPipePropsMixin.DimensionMappingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pipes » mixins » CfnPipePropsMixin » DimensionMappingProperty |
Maps source data to a dimension in the target Timestream for LiveAnalytics table.
For more information, see Amazon Timestream for LiveAnalytics concepts
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pipes_mixins } from '@aws-cdk/mixins-preview/aws-pipes';
const dimensionMappingProperty: pipes_mixins.CfnPipePropsMixin.DimensionMappingProperty = {
dimensionName: 'dimensionName',
dimensionValue: 'dimensionValue',
dimensionValueType: 'dimensionValueType',
};
Properties
| Name | Type | Description |
|---|---|---|
| dimension | string | The metadata attributes of the time series. |
| dimension | string | Dynamic path to the dimension value in the source event. |
| dimension | string | The data type of the dimension for the time-series data. |
dimensionName?
Type:
string
(optional)
The metadata attributes of the time series.
For example, the name and Availability Zone of an Amazon EC2 instance or the name of the manufacturer of a wind turbine are dimensions.
dimensionValue?
Type:
string
(optional)
Dynamic path to the dimension value in the source event.
dimensionValueType?
Type:
string
(optional)
The data type of the dimension for the time-series data.

.NET
Go
Java
Python
TypeScript