Show / Hide Table of Contents

Class CfnScheduledQuery.DimensionMappingProperty

This type is used to map column(s) from the query result to a dimension in the destination table.

Inheritance
object
CfnScheduledQuery.DimensionMappingProperty
Implements
CfnScheduledQuery.IDimensionMappingProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-timestream-scheduledquery-dimensionmapping.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-timestream-scheduledquery-dimensionmapping.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-timestream-scheduledquery-dimensionmapping.html#cfn-timestream-scheduledquery-dimensionmapping-dimensionvaluetype

Name

Column name from query result.

public string Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-timestream-scheduledquery-dimensionmapping.html#cfn-timestream-scheduledquery-dimensionmapping-name

Implements

CfnScheduledQuery.IDimensionMappingProperty
Back to top Generated by DocFX