Show / Hide Table of Contents

Class CfnScheduledQuery.TargetConfigurationProperty

Configuration used for writing the output of a query.

Inheritance
System.Object
CfnScheduledQuery.TargetConfigurationProperty
Implements
CfnScheduledQuery.ITargetConfigurationProperty
Namespace: Amazon.CDK.AWS.Timestream
Assembly: Amazon.CDK.AWS.Timestream.dll
Syntax (csharp)
public class TargetConfigurationProperty : Object, CfnScheduledQuery.ITargetConfigurationProperty
Syntax (vb)
Public Class TargetConfigurationProperty
    Inherits Object
    Implements CfnScheduledQuery.ITargetConfigurationProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-timestream-scheduledquery-targetconfiguration.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 targetConfigurationProperty = new TargetConfigurationProperty {
    TimestreamConfiguration = new TimestreamConfigurationProperty {
        DatabaseName = "databaseName",
        DimensionMappings = new [] { new DimensionMappingProperty {
            DimensionValueType = "dimensionValueType",
            Name = "name"
        } },
        TableName = "tableName",
        TimeColumn = "timeColumn",

        // the properties below are optional
        MeasureNameColumn = "measureNameColumn",
        MixedMeasureMappings = new [] { new MixedMeasureMappingProperty {
            MeasureValueType = "measureValueType",

            // the properties below are optional
            MeasureName = "measureName",
            MultiMeasureAttributeMappings = new [] { new MultiMeasureAttributeMappingProperty {
                MeasureValueType = "measureValueType",
                SourceColumn = "sourceColumn",

                // the properties below are optional
                TargetMultiMeasureAttributeName = "targetMultiMeasureAttributeName"
            } },
            SourceColumn = "sourceColumn",
            TargetMeasureName = "targetMeasureName"
        } },
        MultiMeasureMappings = new MultiMeasureMappingsProperty {
            MultiMeasureAttributeMappings = new [] { new MultiMeasureAttributeMappingProperty {
                MeasureValueType = "measureValueType",
                SourceColumn = "sourceColumn",

                // the properties below are optional
                TargetMultiMeasureAttributeName = "targetMultiMeasureAttributeName"
            } },

            // the properties below are optional
            TargetMultiMeasureName = "targetMultiMeasureName"
        }
    }
};

Synopsis

Constructors

TargetConfigurationProperty()

Properties

TimestreamConfiguration

Configuration needed to write data into the Timestream database and table.

Constructors

TargetConfigurationProperty()

public TargetConfigurationProperty()

Properties

TimestreamConfiguration

Configuration needed to write data into the Timestream database and table.

public object TimestreamConfiguration { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-timestream-scheduledquery-targetconfiguration.html#cfn-timestream-scheduledquery-targetconfiguration-timestreamconfiguration

Implements

CfnScheduledQuery.ITargetConfigurationProperty
Back to top Generated by DocFX