Interface SearchTablesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<SearchTablesResponse.Builder,SearchTablesResponse>,GlueResponse.Builder,SdkBuilder<SearchTablesResponse.Builder,SearchTablesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- SearchTablesResponse
public static interface SearchTablesResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<SearchTablesResponse.Builder,SearchTablesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchTablesResponse.BuildernextToken(String nextToken)A continuation token, present if the current list segment is not the last.SearchTablesResponse.BuildertableList(Collection<Table> tableList)A list of the requestedTableobjects.SearchTablesResponse.BuildertableList(Consumer<Table.Builder>... tableList)A list of the requestedTableobjects.SearchTablesResponse.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
-
nextToken
SearchTablesResponse.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.
-
tableList
SearchTablesResponse.Builder tableList(Collection<Table> tableList)
A list of the requested
Tableobjects. TheSearchTablesresponse returns only the tables that you have access to.- Parameters:
tableList- A list of the requestedTableobjects. TheSearchTablesresponse returns only the tables that you have access to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableList
SearchTablesResponse.Builder tableList(Table... tableList)
A list of the requested
Tableobjects. TheSearchTablesresponse returns only the tables that you have access to.- Parameters:
tableList- A list of the requestedTableobjects. TheSearchTablesresponse returns only the tables that you have access to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableList
SearchTablesResponse.Builder tableList(Consumer<Table.Builder>... tableList)
A list of the requested
This is a convenience method that creates an instance of theTableobjects. TheSearchTablesresponse returns only the tables that you have access to.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)
-
-