Interface SearchVocabulariesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,ConnectResponse.Builder,CopyableBuilder<SearchVocabulariesResponse.Builder,SearchVocabulariesResponse>,SdkBuilder<SearchVocabulariesResponse.Builder,SearchVocabulariesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- SearchVocabulariesResponse
public static interface SearchVocabulariesResponse.Builder extends ConnectResponse.Builder, SdkPojo, CopyableBuilder<SearchVocabulariesResponse.Builder,SearchVocabulariesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchVocabulariesResponse.BuildernextToken(String nextToken)If there are additional results, this is the token for the next set of results.SearchVocabulariesResponse.BuildervocabularySummaryList(Collection<VocabularySummary> vocabularySummaryList)The list of the available custom vocabularies.SearchVocabulariesResponse.BuildervocabularySummaryList(Consumer<VocabularySummary.Builder>... vocabularySummaryList)The list of the available custom vocabularies.SearchVocabulariesResponse.BuildervocabularySummaryList(VocabularySummary... vocabularySummaryList)The list of the available custom vocabularies.-
Methods inherited from interface software.amazon.awssdk.services.connect.model.ConnectResponse.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
-
vocabularySummaryList
SearchVocabulariesResponse.Builder vocabularySummaryList(Collection<VocabularySummary> vocabularySummaryList)
The list of the available custom vocabularies.
- Parameters:
vocabularySummaryList- The list of the available custom vocabularies.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vocabularySummaryList
SearchVocabulariesResponse.Builder vocabularySummaryList(VocabularySummary... vocabularySummaryList)
The list of the available custom vocabularies.
- Parameters:
vocabularySummaryList- The list of the available custom vocabularies.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vocabularySummaryList
SearchVocabulariesResponse.Builder vocabularySummaryList(Consumer<VocabularySummary.Builder>... vocabularySummaryList)
The list of the available custom vocabularies.
This is a convenience method that creates an instance of theVocabularySummary.Builderavoiding the need to create one manually viaVocabularySummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#vocabularySummaryList(List.) - Parameters:
vocabularySummaryList- a consumer that will call methods onVocabularySummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#vocabularySummaryList(java.util.Collection)
-
nextToken
SearchVocabulariesResponse.Builder nextToken(String nextToken)
If there are additional results, this is the token for the next set of results.
- Parameters:
nextToken- If there are additional results, this is the token for the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-