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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.JoinOperandPropertiesPropertystatic final classAn implementation forCfnDataSet.JoinOperandPropertiesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()A list of column name overrides to apply to the join operand's output columns.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOutputColumnNameOverrides
A list of column name overrides to apply to the join operand's output columns.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataSet.OutputColumnNameOverrideProperty>- See Also:
-
builder
-