interface MultiMeasureAttributeMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pipes.Mixins.CfnPipePropsMixin.MultiMeasureAttributeMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspipes/mixins#CfnPipePropsMixin_MultiMeasureAttributeMappingProperty |
Java | software.amazon.awscdk.mixins.preview.services.pipes.mixins.CfnPipePropsMixin.MultiMeasureAttributeMappingProperty |
Python | aws_cdk.mixins_preview.aws_pipes.mixins.CfnPipePropsMixin.MultiMeasureAttributeMappingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pipes » mixins » 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 { mixins as pipes_mixins } from '@aws-cdk/mixins-preview/aws-pipes';
const multiMeasureAttributeMappingProperty: pipes_mixins.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