Interface ListVocabularyFiltersResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListVocabularyFiltersResponse.Builder,ListVocabularyFiltersResponse>,SdkBuilder<ListVocabularyFiltersResponse.Builder,ListVocabularyFiltersResponse>,SdkPojo,SdkResponse.Builder,TranscribeResponse.Builder
- Enclosing class:
- ListVocabularyFiltersResponse
public static interface ListVocabularyFiltersResponse.Builder extends TranscribeResponse.Builder, SdkPojo, CopyableBuilder<ListVocabularyFiltersResponse.Builder,ListVocabularyFiltersResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListVocabularyFiltersResponse.BuildernextToken(String nextToken)IfNextTokenis present in your response, it indicates that not all results are displayed.ListVocabularyFiltersResponse.BuildervocabularyFilters(Collection<VocabularyFilterInfo> vocabularyFilters)Provides information about the custom vocabulary filters that match the criteria specified in your request.ListVocabularyFiltersResponse.BuildervocabularyFilters(Consumer<VocabularyFilterInfo.Builder>... vocabularyFilters)Provides information about the custom vocabulary filters that match the criteria specified in your request.ListVocabularyFiltersResponse.BuildervocabularyFilters(VocabularyFilterInfo... vocabularyFilters)Provides information about the custom vocabulary filters that match the criteria specified in your request.-
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
-
Methods inherited from interface software.amazon.awssdk.services.transcribe.model.TranscribeResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
nextToken
ListVocabularyFiltersResponse.Builder nextToken(String nextToken)
If
NextTokenis present in your response, it indicates that not all results are displayed. To view the next set of results, copy the string associated with theNextTokenparameter in your results output, then run your request again includingNextTokenwith the value of the copied string. Repeat as needed to view all your results.- Parameters:
nextToken- IfNextTokenis present in your response, it indicates that not all results are displayed. To view the next set of results, copy the string associated with theNextTokenparameter in your results output, then run your request again includingNextTokenwith the value of the copied string. Repeat as needed to view all your results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vocabularyFilters
ListVocabularyFiltersResponse.Builder vocabularyFilters(Collection<VocabularyFilterInfo> vocabularyFilters)
Provides information about the custom vocabulary filters that match the criteria specified in your request.
- Parameters:
vocabularyFilters- Provides information about the custom vocabulary filters that match the criteria specified in your request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vocabularyFilters
ListVocabularyFiltersResponse.Builder vocabularyFilters(VocabularyFilterInfo... vocabularyFilters)
Provides information about the custom vocabulary filters that match the criteria specified in your request.
- Parameters:
vocabularyFilters- Provides information about the custom vocabulary filters that match the criteria specified in your request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vocabularyFilters
ListVocabularyFiltersResponse.Builder vocabularyFilters(Consumer<VocabularyFilterInfo.Builder>... vocabularyFilters)
Provides information about the custom vocabulary filters that match the criteria specified in your request.
This is a convenience method that creates an instance of theVocabularyFilterInfo.Builderavoiding the need to create one manually viaVocabularyFilterInfo.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#vocabularyFilters(List.) - Parameters:
vocabularyFilters- a consumer that will call methods onVocabularyFilterInfo.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#vocabularyFilters(java.util.Collection)
-
-