interface MultiMeasureAttributeMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Pipes.CfnPipePropsMixin.MultiMeasureAttributeMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspipes#CfnPipePropsMixin_MultiMeasureAttributeMappingProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.pipes.CfnPipePropsMixin.MultiMeasureAttributeMappingProperty |
Python | aws_cdk.cfn_property_mixins.aws_pipes.CfnPipePropsMixin.MultiMeasureAttributeMappingProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pipes » CfnPipePropsMixin » MultiMeasureAttributeMappingProperty |
A mapping of a source event data field to a measure in a Timestream for LiveAnalytics record.
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 multiMeasureAttributeMappingProperty: pipes.CfnPipePropsMixin.MultiMeasureAttributeMappingProperty = {
measureValue: 'measureValue',
measureValueType: 'measureValueType',
multiMeasureAttributeName: 'multiMeasureAttributeName',
};
Properties
| Name | Type | Description |
|---|---|---|
| measure | string | Dynamic path to the measurement attribute in the source event. |
| measure | string | Data type of the measurement attribute in the source event. |
| multi | string | Target measure name to be used. |
measureValue?
Type:
string
(optional)
Dynamic path to the measurement attribute in the source event.
measureValueType?
Type:
string
(optional)
Data type of the measurement attribute in the source event.
multiMeasureAttributeName?
Type:
string
(optional)
Target measure name to be used.

.NET
Go
Java
Python
TypeScript