Interface GetTablesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetTablesResponse.Builder,GetTablesResponse>,GlueResponse.Builder,SdkBuilder<GetTablesResponse.Builder,GetTablesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetTablesResponse
public static interface GetTablesResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<GetTablesResponse.Builder,GetTablesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetTablesResponse.BuildernextToken(String nextToken)A continuation token, present if the current list segment is not the last.GetTablesResponse.BuildertableList(Collection<Table> tableList)A list of the requestedTableobjects.GetTablesResponse.BuildertableList(Consumer<Table.Builder>... tableList)A list of the requestedTableobjects.GetTablesResponse.BuildertableList(Table... tableList)A list of the requestedTableobjects.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.glue.model.GlueResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
tableList
GetTablesResponse.Builder tableList(Collection<Table> tableList)
A list of the requested
Tableobjects.- Parameters:
tableList- A list of the requestedTableobjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableList
GetTablesResponse.Builder tableList(Table... tableList)
A list of the requested
Tableobjects.- Parameters:
tableList- A list of the requestedTableobjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableList
GetTablesResponse.Builder tableList(Consumer<Table.Builder>... tableList)
A list of the requested
This is a convenience method that creates an instance of theTableobjects.Table.Builderavoiding the need to create one manually viaTable.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tableList(List).
- Parameters:
tableList- a consumer that will call methods onTable.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tableList(java.util.Collection)
-
nextToken
GetTablesResponse.Builder nextToken(String nextToken)
A continuation token, present if the current list segment is not the last.
- Parameters:
nextToken- A continuation token, present if the current list segment is not the last.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-