interface SingleMeasureMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Pipes.CfnPipePropsMixin.SingleMeasureMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspipes#CfnPipePropsMixin_SingleMeasureMappingProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.pipes.CfnPipePropsMixin.SingleMeasureMappingProperty |
Python | aws_cdk.cfn_property_mixins.aws_pipes.CfnPipePropsMixin.SingleMeasureMappingProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pipes » 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 { aws_pipes as pipes } from '@aws-cdk/cfn-property-mixins';
const singleMeasureMappingProperty: pipes.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