Interface CfnDataSet.JoinInstructionProperty

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

@Stability(Stable) public static interface CfnDataSet.JoinInstructionProperty extends software.amazon.jsii.JsiiSerializable
The instructions associated with a join.

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();
 
  • Method Details

    • getLeftOperand

      @Stability(Stable) @NotNull String getLeftOperand()
      The operand on the left side of a join.
    • getOnClause

      @Stability(Stable) @NotNull String getOnClause()
      The join instructions provided in the ON clause of a join.
    • getRightOperand

      @Stability(Stable) @NotNull String getRightOperand()
      The operand on the right side of a join.
    • getType

      @Stability(Stable) @NotNull String getType()
      The type of join that it is.
    • getLeftJoinKeyProperties

      @Stability(Stable) @Nullable default Object getLeftJoinKeyProperties()
      Join key properties of the left operand.
    • getRightJoinKeyProperties

      @Stability(Stable) @Nullable default Object getRightJoinKeyProperties()
      Join key properties of the right operand.
    • builder

      @Stability(Stable) static CfnDataSet.JoinInstructionProperty.Builder builder()
      Returns:
      a CfnDataSet.JoinInstructionProperty.Builder of CfnDataSet.JoinInstructionProperty