interface MultiMeasureMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Pipes.CfnPipePropsMixin.MultiMeasureMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspipes#CfnPipePropsMixin_MultiMeasureMappingProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.pipes.CfnPipePropsMixin.MultiMeasureMappingProperty |
Python | aws_cdk.cfn_property_mixins.aws_pipes.CfnPipePropsMixin.MultiMeasureMappingProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pipes » CfnPipePropsMixin » MultiMeasureMappingProperty |
Maps multiple measures from the source event to the same Timestream for LiveAnalytics record.
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 multiMeasureMappingProperty: pipes.CfnPipePropsMixin.MultiMeasureMappingProperty = {
multiMeasureAttributeMappings: [{
measureValue: 'measureValue',
measureValueType: 'measureValueType',
multiMeasureAttributeName: 'multiMeasureAttributeName',
}],
multiMeasureName: 'multiMeasureName',
};
Properties
| Name | Type | Description |
|---|---|---|
| multi | IResolvable | (IResolvable | Multi)[] | Mappings that represent multiple source event fields mapped to measures in the same Timestream for LiveAnalytics record. |
| multi | string | The name of the multiple measurements per record (multi-measure). |
multiMeasureAttributeMappings?
Type:
IResolvable | (IResolvable | Multi)[]
(optional)
Mappings that represent multiple source event fields mapped to measures in the same Timestream for LiveAnalytics record.
multiMeasureName?
Type:
string
(optional)
The name of the multiple measurements per record (multi-measure).

.NET
Go
Java
Python
TypeScript