Interface JoinColumn.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<JoinColumn.Builder,JoinColumn>,SdkBuilder<JoinColumn.Builder,JoinColumn>,SdkPojo
- Enclosing class:
- JoinColumn
public static interface JoinColumn.Builder extends SdkPojo, CopyableBuilder<JoinColumn.Builder,JoinColumn>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JoinColumn.Builderfrom(String from)The column to be joined.JoinColumn.Builderkeys(Collection<? extends Collection<String>> keys)The key of the column to be joined.JoinColumn.Builderkeys(Collection<String>... keys)The key of the column to be joined.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
from
JoinColumn.Builder from(String from)
The column to be joined.
- Parameters:
from- The column to be joined.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keys
JoinColumn.Builder keys(Collection<? extends Collection<String>> keys)
The key of the column to be joined.
- Parameters:
keys- The key of the column to be joined.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keys
JoinColumn.Builder keys(Collection<String>... keys)
The key of the column to be joined.
- Parameters:
keys- The key of the column to be joined.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-