Interface TableReference.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TableReference.Builder,TableReference>,SdkBuilder<TableReference.Builder,TableReference>,SdkPojo
- Enclosing class:
- TableReference
public static interface TableReference.Builder extends SdkPojo, CopyableBuilder<TableReference.Builder,TableReference>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default TableReference.Builderglue(Consumer<GlueTableReference.Builder> glue)If present, a reference to the Glue table referred to by this table reference.TableReference.Builderglue(GlueTableReference glue)If present, a reference to the Glue table referred to by this table reference.-
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
-
glue
TableReference.Builder glue(GlueTableReference glue)
If present, a reference to the Glue table referred to by this table reference.
- Parameters:
glue- If present, a reference to the Glue table referred to by this table reference.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
glue
default TableReference.Builder glue(Consumer<GlueTableReference.Builder> glue)
If present, a reference to the Glue table referred to by this table reference.
This is a convenience method that creates an instance of theGlueTableReference.Builderavoiding the need to create one manually viaGlueTableReference.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toglue(GlueTableReference).- Parameters:
glue- a consumer that will call methods onGlueTableReference.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
glue(GlueTableReference)
-
-