Class CfnPipePropsMixin.DimensionMappingProperty
Maps source data to a dimension in the target Timestream for LiveAnalytics table.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Pipes
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnPipePropsMixin.DimensionMappingProperty : CfnPipePropsMixin.IDimensionMappingProperty
Syntax (vb)
Public Class CfnPipePropsMixin.DimensionMappingProperty Implements CfnPipePropsMixin.IDimensionMappingProperty
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.CfnPropertyMixins.AWS.Pipes;
var dimensionMappingProperty = new DimensionMappingProperty {
DimensionName = "dimensionName",
DimensionValue = "dimensionValue",
DimensionValueType = "dimensionValueType"
};
Synopsis
Constructors
| DimensionMappingProperty() | Maps source data to a dimension in the target Timestream for LiveAnalytics table. |
Properties
| DimensionName | The metadata attributes of the time series. |
| DimensionValue | Dynamic path to the dimension value in the source event. |
| DimensionValueType | The data type of the dimension for the time-series data. |
Constructors
DimensionMappingProperty()
Maps source data to a dimension in the target Timestream for LiveAnalytics table.
public DimensionMappingProperty()
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.CfnPropertyMixins.AWS.Pipes;
var dimensionMappingProperty = new DimensionMappingProperty {
DimensionName = "dimensionName",
DimensionValue = "dimensionValue",
DimensionValueType = "dimensionValueType"
};
Properties
DimensionName
The metadata attributes of the time series.
public string? DimensionName { get; set; }
Property Value
Remarks
For example, the name and Availability Zone of an Amazon EC2 instance or the name of the manufacturer of a wind turbine are dimensions.
DimensionValue
Dynamic path to the dimension value in the source event.
public string? DimensionValue { get; set; }
Property Value
Remarks
DimensionValueType
The data type of the dimension for the time-series data.
public string? DimensionValueType { get; set; }