Interface ListTablesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,BcmDataExportsResponse.Builder,Buildable,CopyableBuilder<ListTablesResponse.Builder,ListTablesResponse>,SdkBuilder<ListTablesResponse.Builder,ListTablesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListTablesResponse
public static interface ListTablesResponse.Builder extends BcmDataExportsResponse.Builder, SdkPojo, CopyableBuilder<ListTablesResponse.Builder,ListTablesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListTablesResponse.BuildernextToken(String nextToken)The token to retrieve the next set of results.ListTablesResponse.Buildertables(Collection<Table> tables)The list of tables.ListTablesResponse.Buildertables(Consumer<Table.Builder>... tables)The list of tables.ListTablesResponse.Buildertables(Table... tables)The list of tables.-
Methods inherited from interface software.amazon.awssdk.services.bcmdataexports.model.BcmDataExportsResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
nextToken
ListTablesResponse.Builder nextToken(String nextToken)
The token to retrieve the next set of results.
- Parameters:
nextToken- The token to retrieve the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tables
ListTablesResponse.Builder tables(Collection<Table> tables)
The list of tables.
- Parameters:
tables- The list of tables.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tables
ListTablesResponse.Builder tables(Table... tables)
The list of tables.
- Parameters:
tables- The list of tables.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tables
ListTablesResponse.Builder tables(Consumer<Table.Builder>... tables)
The list of tables.
This is a convenience method that creates an instance of theTable.Builderavoiding the need to create one manually viaTable.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tables(List).
- Parameters:
tables- 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:
#tables(java.util.Collection)
-
-