public class DomainStatus
extends java.lang.Object
implements java.io.Serializable
The current status of the search domain.
| コンストラクタと説明 |
|---|
DomainStatus() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.Boolean |
getCreated()
True if the search domain is created.
|
java.lang.Boolean |
getDeleted()
True if the search domain has been deleted.
|
ServiceEndpoint |
getDocService()
The service endpoint for updating documents in a search domain.
|
java.lang.String |
getDomainId()
An internally generated unique identifier for a domain.
|
java.lang.String |
getDomainName()
A string that represents the name of a domain.
|
java.lang.Integer |
getNumSearchableDocs()
The number of documents that have been submitted to the domain and
indexed.
|
java.lang.Boolean |
getProcessing()
True if processing is being done to activate the current domain
configuration.
|
java.lang.Boolean |
getRequiresIndexDocuments()
True if IndexDocuments needs to be called to activate the
current domain configuration.
|
java.lang.Integer |
getSearchInstanceCount()
The number of search instances that are available to process search
requests.
|
java.lang.String |
getSearchInstanceType()
The instance type that is being used to process search requests.
|
java.lang.Integer |
getSearchPartitionCount()
The number of partitions across which the search index is spread.
|
ServiceEndpoint |
getSearchService()
The service endpoint for requesting search results from a search
domain.
|
int |
hashCode() |
java.lang.Boolean |
isCreated()
True if the search domain is created.
|
java.lang.Boolean |
isDeleted()
True if the search domain has been deleted.
|
java.lang.Boolean |
isProcessing()
True if processing is being done to activate the current domain
configuration.
|
java.lang.Boolean |
isRequiresIndexDocuments()
True if IndexDocuments needs to be called to activate the
current domain configuration.
|
void |
setCreated(java.lang.Boolean created)
True if the search domain is created.
|
void |
setDeleted(java.lang.Boolean deleted)
True if the search domain has been deleted.
|
void |
setDocService(ServiceEndpoint docService)
The service endpoint for updating documents in a search domain.
|
void |
setDomainId(java.lang.String domainId)
An internally generated unique identifier for a domain.
|
void |
setDomainName(java.lang.String domainName)
A string that represents the name of a domain.
|
void |
setNumSearchableDocs(java.lang.Integer numSearchableDocs)
The number of documents that have been submitted to the domain and
indexed.
|
void |
setProcessing(java.lang.Boolean processing)
True if processing is being done to activate the current domain
configuration.
|
void |
setRequiresIndexDocuments(java.lang.Boolean requiresIndexDocuments)
True if IndexDocuments needs to be called to activate the
current domain configuration.
|
void |
setSearchInstanceCount(java.lang.Integer searchInstanceCount)
The number of search instances that are available to process search
requests.
|
void |
setSearchInstanceType(SearchInstanceType searchInstanceType)
The instance type that is being used to process search requests.
|
void |
setSearchInstanceType(java.lang.String searchInstanceType)
The instance type that is being used to process search requests.
|
void |
setSearchPartitionCount(java.lang.Integer searchPartitionCount)
The number of partitions across which the search index is spread.
|
void |
setSearchService(ServiceEndpoint searchService)
The service endpoint for requesting search results from a search
domain.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
DomainStatus |
withCreated(java.lang.Boolean created)
True if the search domain is created.
|
DomainStatus |
withDeleted(java.lang.Boolean deleted)
True if the search domain has been deleted.
|
DomainStatus |
withDocService(ServiceEndpoint docService)
The service endpoint for updating documents in a search domain.
|
DomainStatus |
withDomainId(java.lang.String domainId)
An internally generated unique identifier for a domain.
|
DomainStatus |
withDomainName(java.lang.String domainName)
A string that represents the name of a domain.
|
DomainStatus |
withNumSearchableDocs(java.lang.Integer numSearchableDocs)
The number of documents that have been submitted to the domain and
indexed.
|
DomainStatus |
withProcessing(java.lang.Boolean processing)
True if processing is being done to activate the current domain
configuration.
|
DomainStatus |
withRequiresIndexDocuments(java.lang.Boolean requiresIndexDocuments)
True if IndexDocuments needs to be called to activate the
current domain configuration.
|
DomainStatus |
withSearchInstanceCount(java.lang.Integer searchInstanceCount)
The number of search instances that are available to process search
requests.
|
DomainStatus |
withSearchInstanceType(SearchInstanceType searchInstanceType)
The instance type that is being used to process search requests.
|
DomainStatus |
withSearchInstanceType(java.lang.String searchInstanceType)
The instance type that is being used to process search requests.
|
DomainStatus |
withSearchPartitionCount(java.lang.Integer searchPartitionCount)
The number of partitions across which the search index is spread.
|
DomainStatus |
withSearchService(ServiceEndpoint searchService)
The service endpoint for requesting search results from a search
domain.
|
public java.lang.String getDomainId()
Constraints:
Length: 1 - 64
public void setDomainId(java.lang.String domainId)
Constraints:
Length: 1 - 64
domainId - An internally generated unique identifier for a domain.public DomainStatus withDomainId(java.lang.String domainId)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 64
domainId - An internally generated unique identifier for a domain.public java.lang.String getDomainName()
Constraints:
Length: 3 - 28
Pattern: [a-z][a-z0-9\-]+
public void setDomainName(java.lang.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 DomainStatus withDomainName(java.lang.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 java.lang.Boolean isCreated()
public void setCreated(java.lang.Boolean created)
created - True if the search domain is created. It can take several minutes to
initialize a domain when CreateDomain is called. Newly created
search domains are returned from DescribeDomains with a false
value for Created until domain creation is complete.public DomainStatus withCreated(java.lang.Boolean created)
Returns a reference to this object so that method calls can be chained together.
created - True if the search domain is created. It can take several minutes to
initialize a domain when CreateDomain is called. Newly created
search domains are returned from DescribeDomains with a false
value for Created until domain creation is complete.public java.lang.Boolean getCreated()
public java.lang.Boolean isDeleted()
public void setDeleted(java.lang.Boolean deleted)
deleted - True if the search domain has been deleted. The system must clean up
resources dedicated to the search domain when DeleteDomain is
called. Newly deleted search domains are returned from
DescribeDomains with a true value for IsDeleted for several
minutes until resource cleanup is complete.public DomainStatus withDeleted(java.lang.Boolean deleted)
Returns a reference to this object so that method calls can be chained together.
deleted - True if the search domain has been deleted. The system must clean up
resources dedicated to the search domain when DeleteDomain is
called. Newly deleted search domains are returned from
DescribeDomains with a true value for IsDeleted for several
minutes until resource cleanup is complete.public java.lang.Boolean getDeleted()
public java.lang.Integer getNumSearchableDocs()
Constraints:
Range: 0 -
public void setNumSearchableDocs(java.lang.Integer numSearchableDocs)
Constraints:
Range: 0 -
numSearchableDocs - The number of documents that have been submitted to the domain and
indexed.public DomainStatus withNumSearchableDocs(java.lang.Integer numSearchableDocs)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Range: 0 -
numSearchableDocs - The number of documents that have been submitted to the domain and
indexed.public ServiceEndpoint getDocService()
public void setDocService(ServiceEndpoint docService)
docService - The service endpoint for updating documents in a search domain.public DomainStatus withDocService(ServiceEndpoint docService)
Returns a reference to this object so that method calls can be chained together.
docService - The service endpoint for updating documents in a search domain.public ServiceEndpoint getSearchService()
public void setSearchService(ServiceEndpoint searchService)
searchService - The service endpoint for requesting search results from a search
domain.public DomainStatus withSearchService(ServiceEndpoint searchService)
Returns a reference to this object so that method calls can be chained together.
searchService - The service endpoint for requesting search results from a search
domain.public java.lang.Boolean isRequiresIndexDocuments()
public void setRequiresIndexDocuments(java.lang.Boolean requiresIndexDocuments)
requiresIndexDocuments - True if IndexDocuments needs to be called to activate the
current domain configuration.public DomainStatus withRequiresIndexDocuments(java.lang.Boolean requiresIndexDocuments)
Returns a reference to this object so that method calls can be chained together.
requiresIndexDocuments - True if IndexDocuments needs to be called to activate the
current domain configuration.public java.lang.Boolean getRequiresIndexDocuments()
public java.lang.Boolean isProcessing()
public void setProcessing(java.lang.Boolean processing)
processing - True if processing is being done to activate the current domain
configuration.public DomainStatus withProcessing(java.lang.Boolean processing)
Returns a reference to this object so that method calls can be chained together.
processing - True if processing is being done to activate the current domain
configuration.public java.lang.Boolean getProcessing()
public java.lang.String getSearchInstanceType()
Constraints:
Allowed Values: SearchInstance:t1.micro, SearchInstance:m1.small, SearchInstance:m1.large, SearchInstance:m2.xlarge
SearchInstanceTypepublic void setSearchInstanceType(java.lang.String searchInstanceType)
Constraints:
Allowed Values: SearchInstance:t1.micro, SearchInstance:m1.small, SearchInstance:m1.large, SearchInstance:m2.xlarge
searchInstanceType - The instance type that is being used to process search requests.SearchInstanceTypepublic DomainStatus withSearchInstanceType(java.lang.String searchInstanceType)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Allowed Values: SearchInstance:t1.micro, SearchInstance:m1.small, SearchInstance:m1.large, SearchInstance:m2.xlarge
searchInstanceType - The instance type that is being used to process search requests.SearchInstanceTypepublic void setSearchInstanceType(SearchInstanceType searchInstanceType)
Constraints:
Allowed Values: SearchInstance:t1.micro, SearchInstance:m1.small, SearchInstance:m1.large, SearchInstance:m2.xlarge
searchInstanceType - The instance type that is being used to process search requests.SearchInstanceTypepublic DomainStatus withSearchInstanceType(SearchInstanceType searchInstanceType)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Allowed Values: SearchInstance:t1.micro, SearchInstance:m1.small, SearchInstance:m1.large, SearchInstance:m2.xlarge
searchInstanceType - The instance type that is being used to process search requests.SearchInstanceTypepublic java.lang.Integer getSearchPartitionCount()
Constraints:
Range: 1 -
public void setSearchPartitionCount(java.lang.Integer searchPartitionCount)
Constraints:
Range: 1 -
searchPartitionCount - The number of partitions across which the search index is spread.public DomainStatus withSearchPartitionCount(java.lang.Integer searchPartitionCount)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Range: 1 -
searchPartitionCount - The number of partitions across which the search index is spread.public java.lang.Integer getSearchInstanceCount()
Constraints:
Range: 1 -
public void setSearchInstanceCount(java.lang.Integer searchInstanceCount)
Constraints:
Range: 1 -
searchInstanceCount - The number of search instances that are available to process search
requests.public DomainStatus withSearchInstanceCount(java.lang.Integer searchInstanceCount)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Range: 1 -
searchInstanceCount - The number of search instances that are available to process search
requests.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object