interface SingleMeasureMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pipes.Mixins.CfnPipePropsMixin.SingleMeasureMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspipes/mixins#CfnPipePropsMixin_SingleMeasureMappingProperty |
Java | software.amazon.awscdk.mixins.preview.services.pipes.mixins.CfnPipePropsMixin.SingleMeasureMappingProperty |
Python | aws_cdk.mixins_preview.aws_pipes.mixins.CfnPipePropsMixin.SingleMeasureMappingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pipes » mixins » CfnPipePropsMixin » SingleMeasureMappingProperty |
Maps a single source data field to a single record in the specified 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 singleMeasureMappingProperty: pipes_mixins.CfnPipePropsMixin.SingleMeasureMappingProperty = {
measureName: 'measureName',
measureValue: 'measureValue',
measureValueType: 'measureValueType',
};
Properties
| Name | Type | Description |
|---|---|---|
| measure | string | Target measure name for the measurement attribute in the Timestream table. |
| measure | string | Dynamic path of the source field to map to the measure in the record. |
| measure | string | Data type of the source field. |
measureName?
Type:
string
(optional)
Target measure name for the measurement attribute in the Timestream table.
measureValue?
Type:
string
(optional)
Dynamic path of the source field to map to the measure in the record.
measureValueType?
Type:
string
(optional)
Data type of the source field.

.NET
Go
Java
Python
TypeScript