Interface DescribeSuggestersResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CloudSearchResponse.Builder,CopyableBuilder<DescribeSuggestersResponse.Builder,DescribeSuggestersResponse>,SdkBuilder<DescribeSuggestersResponse.Builder,DescribeSuggestersResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeSuggestersResponse
public static interface DescribeSuggestersResponse.Builder extends CloudSearchResponse.Builder, SdkPojo, CopyableBuilder<DescribeSuggestersResponse.Builder,DescribeSuggestersResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeSuggestersResponse.Buildersuggesters(Collection<SuggesterStatus> suggesters)The suggesters configured for the domain specified in the request.DescribeSuggestersResponse.Buildersuggesters(Consumer<SuggesterStatus.Builder>... suggesters)The suggesters configured for the domain specified in the request.DescribeSuggestersResponse.Buildersuggesters(SuggesterStatus... suggesters)The suggesters configured for the domain specified in the request.-
Methods inherited from interface software.amazon.awssdk.services.cloudsearch.model.CloudSearchResponse.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
-
suggesters
DescribeSuggestersResponse.Builder suggesters(Collection<SuggesterStatus> suggesters)
The suggesters configured for the domain specified in the request.
- Parameters:
suggesters- The suggesters configured for the domain specified in the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
suggesters
DescribeSuggestersResponse.Builder suggesters(SuggesterStatus... suggesters)
The suggesters configured for the domain specified in the request.
- Parameters:
suggesters- The suggesters configured for the domain specified in the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
suggesters
DescribeSuggestersResponse.Builder suggesters(Consumer<SuggesterStatus.Builder>... suggesters)
The suggesters configured for the domain specified in the request.
This is a convenience method that creates an instance of theSuggesterStatus.Builderavoiding the need to create one manually viaSuggesterStatus.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#suggesters(List.) - Parameters:
suggesters- a consumer that will call methods onSuggesterStatus.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#suggesters(java.util.Collection)
-
-