Interface SearchTablesByLfTagsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<SearchTablesByLfTagsResponse.Builder,SearchTablesByLfTagsResponse>,LakeFormationResponse.Builder,SdkBuilder<SearchTablesByLfTagsResponse.Builder,SearchTablesByLfTagsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- SearchTablesByLfTagsResponse
public static interface SearchTablesByLfTagsResponse.Builder extends LakeFormationResponse.Builder, SdkPojo, CopyableBuilder<SearchTablesByLfTagsResponse.Builder,SearchTablesByLfTagsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchTablesByLfTagsResponse.BuildernextToken(String nextToken)A continuation token, present if the current list segment is not the last.SearchTablesByLfTagsResponse.BuildertableList(Collection<TaggedTable> tableList)A list of tables that meet the LF-tag conditions.SearchTablesByLfTagsResponse.BuildertableList(Consumer<TaggedTable.Builder>... tableList)A list of tables that meet the LF-tag conditions.SearchTablesByLfTagsResponse.BuildertableList(TaggedTable... tableList)A list of tables that meet the LF-tag conditions.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.lakeformation.model.LakeFormationResponse.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
SearchTablesByLfTagsResponse.Builder nextToken(String nextToken)
A continuation token, present if the current list segment is not the last. On the first run, if you include a not null (a value) token you can get empty pages.
- Parameters:
nextToken- A continuation token, present if the current list segment is not the last. On the first run, if you include a not null (a value) token you can get empty pages.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableList
SearchTablesByLfTagsResponse.Builder tableList(Collection<TaggedTable> tableList)
A list of tables that meet the LF-tag conditions.
- Parameters:
tableList- A list of tables that meet the LF-tag conditions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableList
SearchTablesByLfTagsResponse.Builder tableList(TaggedTable... tableList)
A list of tables that meet the LF-tag conditions.
- Parameters:
tableList- A list of tables that meet the LF-tag conditions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableList
SearchTablesByLfTagsResponse.Builder tableList(Consumer<TaggedTable.Builder>... tableList)
A list of tables that meet the LF-tag conditions.
This is a convenience method that creates an instance of theTaggedTable.Builderavoiding the need to create one manually viaTaggedTable.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 onTaggedTable.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tableList(java.util.Collection)
-
-