Show / Hide Table of Contents

Class CfnDataSet.AppendedColumnProperty

Represents a column that will be included in the result of an append operation, combining data from multiple sources.

Inheritance
object
CfnDataSet.AppendedColumnProperty
Implements
CfnDataSet.IAppendedColumnProperty
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.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSet.AppendedColumnProperty : CfnDataSet.IAppendedColumnProperty
Syntax (vb)
Public Class CfnDataSet.AppendedColumnProperty Implements CfnDataSet.IAppendedColumnProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-appendedcolumn.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.QuickSight;

             var appendedColumnProperty = new AppendedColumnProperty {
                 ColumnName = "columnName",
                 NewColumnId = "newColumnId"
             };

Synopsis

Constructors

AppendedColumnProperty()

Represents a column that will be included in the result of an append operation, combining data from multiple sources.

Properties

ColumnName

The name of the column to include in the appended result.

NewColumnId

A unique identifier for the column in the appended result.

Constructors

AppendedColumnProperty()

Represents a column that will be included in the result of an append operation, combining data from multiple sources.

public AppendedColumnProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-appendedcolumn.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.QuickSight;

             var appendedColumnProperty = new AppendedColumnProperty {
                 ColumnName = "columnName",
                 NewColumnId = "newColumnId"
             };

Properties

ColumnName

The name of the column to include in the appended result.

public string ColumnName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-appendedcolumn.html#cfn-quicksight-dataset-appendedcolumn-columnname

NewColumnId

A unique identifier for the column in the appended result.

public string NewColumnId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-appendedcolumn.html#cfn-quicksight-dataset-appendedcolumn-newcolumnid

Implements

CfnDataSet.IAppendedColumnProperty
Back to top Generated by DocFX