public class SuggestRequest extends AmazonWebServiceRequest implements Serializable
Suggest operation
.
Retrieves autocomplete suggestions for a partial query string. You can use suggestions enable you to display likely matches before users finish typing. In Amazon CloudSearch, suggestions are based on the contents of a particular text field. When you request suggestions, Amazon CloudSearch finds all of the documents whose values in the suggester field start with the specified query string. The beginning of the field must match the query string to be considered a match.
For more information about configuring suggesters and retrieving suggestions, see Getting Suggestions in the Amazon CloudSearch Developer Guide .
The endpoint for submitting Suggest
requests is
domain-specific. You submit suggest requests to a domain's search
endpoint. To get the search endpoint for your domain, use the Amazon
CloudSearch configuration service DescribeDomains
action.
A domain's endpoints are also displayed on the domain dashboard in the
Amazon CloudSearch console.
NOOP
Constructor and Description |
---|
SuggestRequest() |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
String |
getQuery()
Specifies the string for which you want to get suggestions.
|
Long |
getSize()
Specifies the maximum number of suggestions to return.
|
String |
getSuggester()
Specifies the name of the suggester to use to find suggested matches.
|
int |
hashCode() |
void |
setQuery(String query)
Specifies the string for which you want to get suggestions.
|
void |
setSize(Long size)
Specifies the maximum number of suggestions to return.
|
void |
setSuggester(String suggester)
Specifies the name of the suggester to use to find suggested matches.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
SuggestRequest |
withQuery(String query)
Specifies the string for which you want to get suggestions.
|
SuggestRequest |
withSize(Long size)
Specifies the maximum number of suggestions to return.
|
SuggestRequest |
withSuggester(String suggester)
Specifies the name of the suggester to use to find suggested matches.
|
copyPrivateRequestParameters, getGeneralProgressListener, getRequestClientOptions, getRequestCredentials, getRequestMetricCollector, setGeneralProgressListener, setRequestCredentials, setRequestMetricCollector, withGeneralProgressListener, withRequestMetricCollector
public String getQuery()
public void setQuery(String query)
query
- Specifies the string for which you want to get suggestions.public SuggestRequest withQuery(String query)
Returns a reference to this object so that method calls can be chained together.
query
- Specifies the string for which you want to get suggestions.public String getSuggester()
public void setSuggester(String suggester)
suggester
- Specifies the name of the suggester to use to find suggested matches.public SuggestRequest withSuggester(String suggester)
Returns a reference to this object so that method calls can be chained together.
suggester
- Specifies the name of the suggester to use to find suggested matches.public Long getSize()
public void setSize(Long size)
size
- Specifies the maximum number of suggestions to return.public SuggestRequest withSize(Long size)
Returns a reference to this object so that method calls can be chained together.
size
- Specifies the maximum number of suggestions to return.public String toString()
toString
in class Object
Object.toString()
Copyright © 2014. All rights reserved.