Interface LogicalTableSource.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LogicalTableSource.Builder,LogicalTableSource>,SdkBuilder<LogicalTableSource.Builder,LogicalTableSource>,SdkPojo
- Enclosing class:
- LogicalTableSource
@Mutable @NotThreadSafe public static interface LogicalTableSource.Builder extends SdkPojo, CopyableBuilder<LogicalTableSource.Builder,LogicalTableSource>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description LogicalTableSource.BuilderdataSetArn(String dataSetArn)The Amazon Resource Number (ARN) of the parent dataset.default LogicalTableSource.BuilderjoinInstruction(Consumer<JoinInstruction.Builder> joinInstruction)Specifies the result of a join of two logical tables.LogicalTableSource.BuilderjoinInstruction(JoinInstruction joinInstruction)Specifies the result of a join of two logical tables.LogicalTableSource.BuilderphysicalTableId(String physicalTableId)Physical table ID.-
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
-
joinInstruction
LogicalTableSource.Builder joinInstruction(JoinInstruction joinInstruction)
Specifies the result of a join of two logical tables.
- Parameters:
joinInstruction- Specifies the result of a join of two logical tables.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
joinInstruction
default LogicalTableSource.Builder joinInstruction(Consumer<JoinInstruction.Builder> joinInstruction)
Specifies the result of a join of two logical tables.
This is a convenience method that creates an instance of theJoinInstruction.Builderavoiding the need to create one manually viaJoinInstruction.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tojoinInstruction(JoinInstruction).- Parameters:
joinInstruction- a consumer that will call methods onJoinInstruction.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
joinInstruction(JoinInstruction)
-
physicalTableId
LogicalTableSource.Builder physicalTableId(String physicalTableId)
Physical table ID.
- Parameters:
physicalTableId- Physical table ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataSetArn
LogicalTableSource.Builder dataSetArn(String dataSetArn)
The Amazon Resource Number (ARN) of the parent dataset.
- Parameters:
dataSetArn- The Amazon Resource Number (ARN) of the parent dataset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-