Class CfnDataSet.AppendedColumnProperty
Represents a column that will be included in the result of an append operation, combining data from multiple sources.
Implements
Inherited Members
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
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
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
Remarks
NewColumnId
A unique identifier for the column in the appended result.
public string NewColumnId { get; set; }