Show / Hide Table of Contents

Class CfnDataSet.JoinOperandPropertiesProperty

Properties that control how columns are handled for a join operand, including column name overrides.

Inheritance
object
CfnDataSet.JoinOperandPropertiesProperty
Implements
CfnDataSet.IJoinOperandPropertiesProperty
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.JoinOperandPropertiesProperty : CfnDataSet.IJoinOperandPropertiesProperty
Syntax (vb)
Public Class CfnDataSet.JoinOperandPropertiesProperty Implements CfnDataSet.IJoinOperandPropertiesProperty
Remarks

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

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

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnDataSet.IOutputColumnNameOverrideProperty)[]

Implements

CfnDataSet.IJoinOperandPropertiesProperty
Back to top Generated by DocFX