Class CfnScheduledQuery.DimensionMappingProperty
This type is used to map column(s) from the query result to a dimension in the destination table.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Timestream
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnScheduledQuery.DimensionMappingProperty : CfnScheduledQuery.IDimensionMappingProperty
Syntax (vb)
Public Class CfnScheduledQuery.DimensionMappingProperty Implements CfnScheduledQuery.IDimensionMappingProperty
Remarks
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.Timestream;
var dimensionMappingProperty = new DimensionMappingProperty {
DimensionValueType = "dimensionValueType",
Name = "name"
};
Synopsis
Constructors
DimensionMappingProperty() | This type is used to map column(s) from the query result to a dimension in the destination table. |
Properties
DimensionValueType | Type for the dimension: VARCHAR. |
Name | Column name from query result. |
Constructors
DimensionMappingProperty()
This type is used to map column(s) from the query result to a dimension in the destination table.
public DimensionMappingProperty()
Remarks
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.Timestream;
var dimensionMappingProperty = new DimensionMappingProperty {
DimensionValueType = "dimensionValueType",
Name = "name"
};
Properties
DimensionValueType
Type for the dimension: VARCHAR.
public string DimensionValueType { get; set; }
Property Value
Remarks
Name
Column name from query result.
public string Name { get; set; }