Interface JoinInstruction.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<JoinInstruction.Builder,JoinInstruction>,SdkBuilder<JoinInstruction.Builder,JoinInstruction>,SdkPojo
- Enclosing class:
- JoinInstruction
public static interface JoinInstruction.Builder extends SdkPojo, CopyableBuilder<JoinInstruction.Builder,JoinInstruction>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default JoinInstruction.BuilderleftJoinKeyProperties(Consumer<JoinKeyProperties.Builder> leftJoinKeyProperties)Join key properties of the left operand.JoinInstruction.BuilderleftJoinKeyProperties(JoinKeyProperties leftJoinKeyProperties)Join key properties of the left operand.JoinInstruction.BuilderleftOperand(String leftOperand)The operand on the left side of a join.JoinInstruction.BuilderonClause(String onClause)The join instructions provided in theONclause of a join.default JoinInstruction.BuilderrightJoinKeyProperties(Consumer<JoinKeyProperties.Builder> rightJoinKeyProperties)Join key properties of the right operand.JoinInstruction.BuilderrightJoinKeyProperties(JoinKeyProperties rightJoinKeyProperties)Join key properties of the right operand.JoinInstruction.BuilderrightOperand(String rightOperand)The operand on the right side of a join.JoinInstruction.Buildertype(String type)The type of join that it is.JoinInstruction.Buildertype(JoinType type)The type of join that it is.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
leftOperand
JoinInstruction.Builder leftOperand(String leftOperand)
The operand on the left side of a join.
- Parameters:
leftOperand- The operand on the left side of a join.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rightOperand
JoinInstruction.Builder rightOperand(String rightOperand)
The operand on the right side of a join.
- Parameters:
rightOperand- The operand on the right side of a join.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
leftJoinKeyProperties
JoinInstruction.Builder leftJoinKeyProperties(JoinKeyProperties leftJoinKeyProperties)
Join key properties of the left operand.
- Parameters:
leftJoinKeyProperties- Join key properties of the left operand.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
leftJoinKeyProperties
default JoinInstruction.Builder leftJoinKeyProperties(Consumer<JoinKeyProperties.Builder> leftJoinKeyProperties)
Join key properties of the left operand.
This is a convenience method that creates an instance of theJoinKeyProperties.Builderavoiding the need to create one manually viaJoinKeyProperties.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toleftJoinKeyProperties(JoinKeyProperties).- Parameters:
leftJoinKeyProperties- a consumer that will call methods onJoinKeyProperties.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
leftJoinKeyProperties(JoinKeyProperties)
-
rightJoinKeyProperties
JoinInstruction.Builder rightJoinKeyProperties(JoinKeyProperties rightJoinKeyProperties)
Join key properties of the right operand.
- Parameters:
rightJoinKeyProperties- Join key properties of the right operand.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rightJoinKeyProperties
default JoinInstruction.Builder rightJoinKeyProperties(Consumer<JoinKeyProperties.Builder> rightJoinKeyProperties)
Join key properties of the right operand.
This is a convenience method that creates an instance of theJoinKeyProperties.Builderavoiding the need to create one manually viaJoinKeyProperties.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed torightJoinKeyProperties(JoinKeyProperties).- Parameters:
rightJoinKeyProperties- a consumer that will call methods onJoinKeyProperties.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
rightJoinKeyProperties(JoinKeyProperties)
-
type
JoinInstruction.Builder type(String type)
The type of join that it is.
-
type
JoinInstruction.Builder type(JoinType type)
The type of join that it is.
-
onClause
JoinInstruction.Builder onClause(String onClause)
The join instructions provided in the
ONclause of a join.- Parameters:
onClause- The join instructions provided in theONclause of a join.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-