Interface CfnDataSet.JoinOperandPropertiesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSet.JoinOperandPropertiesProperty.Jsii$Proxy
Enclosing class:
CfnDataSet

@Stability(Stable) public static interface CfnDataSet.JoinOperandPropertiesProperty extends software.amazon.jsii.JsiiSerializable
Properties that control how columns are handled for a join operand, including column name overrides.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.quicksight.*;
 JoinOperandPropertiesProperty joinOperandPropertiesProperty = JoinOperandPropertiesProperty.builder()
         .outputColumnNameOverrides(List.of(OutputColumnNameOverrideProperty.builder()
                 .outputColumnName("outputColumnName")
                 // the properties below are optional
                 .sourceColumnName("sourceColumnName")
                 .build()))
         .build();
 

See Also: