Class CfnDataSet.JoinOperandPropertiesProperty
Properties that control how columns are handled for a join operand, including column name overrides.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSet.JoinOperandPropertiesProperty : CfnDataSet.IJoinOperandPropertiesProperty
Syntax (vb)
Public Class CfnDataSet.JoinOperandPropertiesProperty Implements CfnDataSet.IJoinOperandPropertiesProperty
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 joinOperandPropertiesProperty = new JoinOperandPropertiesProperty {
OutputColumnNameOverrides = new [] { new OutputColumnNameOverrideProperty {
OutputColumnName = "outputColumnName",
// the properties below are optional
SourceColumnName = "sourceColumnName"
} }
};
Synopsis
Constructors
| JoinOperandPropertiesProperty() | Properties that control how columns are handled for a join operand, including column name overrides. |
Properties
| OutputColumnNameOverrides | A list of column name overrides to apply to the join operand's output columns. |
Constructors
JoinOperandPropertiesProperty()
Properties that control how columns are handled for a join operand, including column name overrides.
public JoinOperandPropertiesProperty()
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 joinOperandPropertiesProperty = new JoinOperandPropertiesProperty {
OutputColumnNameOverrides = new [] { new OutputColumnNameOverrideProperty {
OutputColumnName = "outputColumnName",
// the properties below are optional
SourceColumnName = "sourceColumnName"
} }
};
Properties
OutputColumnNameOverrides
A list of column name overrides to apply to the join operand's output columns.
public object OutputColumnNameOverrides { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnDataSet.IOutputColumnNameOverrideProperty)[]