Class CfnPipe.MultiMeasureMappingProperty
Maps multiple measures from the source event to the same Timestream for LiveAnalytics record.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Pipes
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPipe.MultiMeasureMappingProperty : CfnPipe.IMultiMeasureMappingProperty
Syntax (vb)
Public Class CfnPipe.MultiMeasureMappingProperty Implements CfnPipe.IMultiMeasureMappingProperty
Remarks
For more information, see Amazon Timestream for LiveAnalytics concepts
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Pipes;
var multiMeasureMappingProperty = new MultiMeasureMappingProperty {
MultiMeasureAttributeMappings = new [] { new MultiMeasureAttributeMappingProperty {
MeasureValue = "measureValue",
MeasureValueType = "measureValueType",
MultiMeasureAttributeName = "multiMeasureAttributeName"
} },
MultiMeasureName = "multiMeasureName"
};
Synopsis
Constructors
MultiMeasureMappingProperty() | Maps multiple measures from the source event to the same Timestream for LiveAnalytics record. |
Properties
MultiMeasureAttributeMappings | Mappings that represent multiple source event fields mapped to measures in the same Timestream for LiveAnalytics record. |
MultiMeasureName | The name of the multiple measurements per record (multi-measure). |
Constructors
MultiMeasureMappingProperty()
Maps multiple measures from the source event to the same Timestream for LiveAnalytics record.
public MultiMeasureMappingProperty()
Remarks
For more information, see Amazon Timestream for LiveAnalytics concepts
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Pipes;
var multiMeasureMappingProperty = new MultiMeasureMappingProperty {
MultiMeasureAttributeMappings = new [] { new MultiMeasureAttributeMappingProperty {
MeasureValue = "measureValue",
MeasureValueType = "measureValueType",
MultiMeasureAttributeName = "multiMeasureAttributeName"
} },
MultiMeasureName = "multiMeasureName"
};
Properties
MultiMeasureAttributeMappings
Mappings that represent multiple source event fields mapped to measures in the same Timestream for LiveAnalytics record.
public object MultiMeasureAttributeMappings { get; set; }
Property Value
Remarks
MultiMeasureName
The name of the multiple measurements per record (multi-measure).
public string MultiMeasureName { get; set; }