Interface SearchDatabasesByLfTagsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<SearchDatabasesByLfTagsResponse.Builder,SearchDatabasesByLfTagsResponse>,LakeFormationResponse.Builder,SdkBuilder<SearchDatabasesByLfTagsResponse.Builder,SearchDatabasesByLfTagsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- SearchDatabasesByLfTagsResponse
public static interface SearchDatabasesByLfTagsResponse.Builder extends LakeFormationResponse.Builder, SdkPojo, CopyableBuilder<SearchDatabasesByLfTagsResponse.Builder,SearchDatabasesByLfTagsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchDatabasesByLfTagsResponse.BuilderdatabaseList(Collection<TaggedDatabase> databaseList)A list of databases that meet the LF-tag conditions.SearchDatabasesByLfTagsResponse.BuilderdatabaseList(Consumer<TaggedDatabase.Builder>... databaseList)A list of databases that meet the LF-tag conditions.SearchDatabasesByLfTagsResponse.BuilderdatabaseList(TaggedDatabase... databaseList)A list of databases that meet the LF-tag conditions.SearchDatabasesByLfTagsResponse.BuildernextToken(String nextToken)A continuation token, present if the current list segment is not the last.-
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
SearchDatabasesByLfTagsResponse.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.
-
databaseList
SearchDatabasesByLfTagsResponse.Builder databaseList(Collection<TaggedDatabase> databaseList)
A list of databases that meet the LF-tag conditions.
- Parameters:
databaseList- A list of databases that meet the LF-tag conditions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
databaseList
SearchDatabasesByLfTagsResponse.Builder databaseList(TaggedDatabase... databaseList)
A list of databases that meet the LF-tag conditions.
- Parameters:
databaseList- A list of databases that meet the LF-tag conditions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
databaseList
SearchDatabasesByLfTagsResponse.Builder databaseList(Consumer<TaggedDatabase.Builder>... databaseList)
A list of databases that meet the LF-tag conditions.
This is a convenience method that creates an instance of theTaggedDatabase.Builderavoiding the need to create one manually viaTaggedDatabase.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#databaseList(List.) - Parameters:
databaseList- a consumer that will call methods onTaggedDatabase.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#databaseList(java.util.Collection)
-
-