public class UpdateStemmingOptionsRequest extends AmazonWebServiceRequest implements Serializable
UpdateStemmingOptions operation
.
Configures a stemming dictionary for the search domain. The stemming dictionary is used during indexing and when processing search requests. The maximum size of the stemming dictionary is 500 KB.
Constructor and Description |
---|
UpdateStemmingOptionsRequest() |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
String |
getDomainName()
A string that represents the name of a domain.
|
String |
getStems()
Maps terms to their stems, serialized as a JSON document.
|
int |
hashCode() |
void |
setDomainName(String domainName)
A string that represents the name of a domain.
|
void |
setStems(String stems)
Maps terms to their stems, serialized as a JSON document.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
UpdateStemmingOptionsRequest |
withDomainName(String domainName)
A string that represents the name of a domain.
|
UpdateStemmingOptionsRequest |
withStems(String stems)
Maps terms to their stems, serialized as a JSON document.
|
copyPrivateRequestParameters, getRequestClientOptions, getRequestCredentials, getRequestMetricCollector, setRequestCredentials, setRequestMetricCollector, withRequestMetricCollector
public String getDomainName()
Constraints:
Length: 3 - 28
Pattern: [a-z][a-z0-9\-]+
public void setDomainName(String domainName)
Constraints:
Length: 3 - 28
Pattern: [a-z][a-z0-9\-]+
domainName
- A string that represents the name of a domain. Domain names must be
unique across the domains owned by an account within an AWS region.
Domain names must start with a letter or number and can contain the
following characters: a-z (lowercase), 0-9, and - (hyphen). Uppercase
letters and underscores are not allowed.public UpdateStemmingOptionsRequest withDomainName(String domainName)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 3 - 28
Pattern: [a-z][a-z0-9\-]+
domainName
- A string that represents the name of a domain. Domain names must be
unique across the domains owned by an account within an AWS region.
Domain names must start with a letter or number and can contain the
following characters: a-z (lowercase), 0-9, and - (hyphen). Uppercase
letters and underscores are not allowed.public String getStems()
{ "stems": {"people": "person", "walking":
"walk"} }
{ "stems": {"people": "person", "walking":
"walk"} }
public void setStems(String stems)
{ "stems": {"people": "person", "walking":
"walk"} }
stems
- Maps terms to their stems, serialized as a JSON document. The document
has a single object with one property "stems" whose value is an object
mapping terms to their stems. The maximum size of a stemming document
is 500 KB. Example: { "stems": {"people": "person", "walking":
"walk"} }
public UpdateStemmingOptionsRequest withStems(String stems)
{ "stems": {"people": "person", "walking":
"walk"} }
Returns a reference to this object so that method calls can be chained together.
stems
- Maps terms to their stems, serialized as a JSON document. The document
has a single object with one property "stems" whose value is an object
mapping terms to their stems. The maximum size of a stemming document
is 500 KB. Example: { "stems": {"people": "person", "walking":
"walk"} }
public String toString()
toString
in class Object
Object.toString()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.