@Stability(value=Stable)
public static interface CfnDataSet.JoinInstructionProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
JoinInstructionProperty joinInstructionProperty = JoinInstructionProperty.builder()
.leftOperand("leftOperand")
.onClause("onClause")
.rightOperand("rightOperand")
.type("type")
// the properties below are optional
.leftJoinKeyProperties(JoinKeyPropertiesProperty.builder()
.uniqueKey(false)
.build())
.rightJoinKeyProperties(JoinKeyPropertiesProperty.builder()
.uniqueKey(false)
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataSet.JoinInstructionProperty.Builder
A builder for
CfnDataSet.JoinInstructionProperty |
static class |
CfnDataSet.JoinInstructionProperty.Jsii$Proxy
An implementation for
CfnDataSet.JoinInstructionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataSet.JoinInstructionProperty.Builder |
builder() |
default Object |
getLeftJoinKeyProperties()
Join key properties of the left operand.
|
String |
getLeftOperand()
The operand on the left side of a join.
|
String |
getOnClause()
The join instructions provided in the `ON` clause of a join.
|
default Object |
getRightJoinKeyProperties()
Join key properties of the right operand.
|
String |
getRightOperand()
The operand on the right side of a join.
|
String |
getType()
The type of join that it is.
|
@Stability(value=Stable) @NotNull String getLeftOperand()
@Stability(value=Stable) @NotNull String getOnClause()
@Stability(value=Stable) @NotNull String getRightOperand()
@Stability(value=Stable) @NotNull String getType()
@Stability(value=Stable) @Nullable default Object getLeftJoinKeyProperties()
@Stability(value=Stable) @Nullable default Object getRightJoinKeyProperties()
@Stability(value=Stable) static CfnDataSet.JoinInstructionProperty.Builder builder()
Copyright © 2022. All rights reserved.