public class DomainStatus extends Object implements Serializable
The current status of the search domain.
Constructor and Description |
---|
DomainStatus() |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
String |
getARN()
The Amazon Resource Name (ARN) of the search domain.
|
Boolean |
getCreated()
True if the search domain is created.
|
Boolean |
getDeleted()
True if the search domain has been deleted.
|
ServiceEndpoint |
getDocService()
The service endpoint for updating documents in a search domain.
|
String |
getDomainId()
An internally generated unique identifier for a domain.
|
String |
getDomainName()
A string that represents the name of a domain.
|
Boolean |
getProcessing()
True if processing is being done to activate the current domain
configuration.
|
Boolean |
getRequiresIndexDocuments()
True if IndexDocuments needs to be called to activate the
current domain configuration.
|
Integer |
getSearchInstanceCount()
The number of search instances that are available to process search
requests.
|
String |
getSearchInstanceType()
The instance type that is being used to process search requests.
|
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() |
Boolean |
isCreated()
True if the search domain is created.
|
Boolean |
isDeleted()
True if the search domain has been deleted.
|
Boolean |
isProcessing()
True if processing is being done to activate the current domain
configuration.
|
Boolean |
isRequiresIndexDocuments()
True if IndexDocuments needs to be called to activate the
current domain configuration.
|
void |
setARN(String aRN)
The Amazon Resource Name (ARN) of the search domain.
|
void |
setCreated(Boolean created)
True if the search domain is created.
|
void |
setDeleted(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(String domainId)
An internally generated unique identifier for a domain.
|
void |
setDomainName(String domainName)
A string that represents the name of a domain.
|
void |
setProcessing(Boolean processing)
True if processing is being done to activate the current domain
configuration.
|
void |
setRequiresIndexDocuments(Boolean requiresIndexDocuments)
True if IndexDocuments needs to be called to activate the
current domain configuration.
|
void |
setSearchInstanceCount(Integer searchInstanceCount)
The number of search instances that are available to process search
requests.
|
void |
setSearchInstanceType(String searchInstanceType)
The instance type that is being used to process search requests.
|
void |
setSearchPartitionCount(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.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
DomainStatus |
withARN(String aRN)
The Amazon Resource Name (ARN) of the search domain.
|
DomainStatus |
withCreated(Boolean created)
True if the search domain is created.
|
DomainStatus |
withDeleted(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(String domainId)
An internally generated unique identifier for a domain.
|
DomainStatus |
withDomainName(String domainName)
A string that represents the name of a domain.
|
DomainStatus |
withProcessing(Boolean processing)
True if processing is being done to activate the current domain
configuration.
|
DomainStatus |
withRequiresIndexDocuments(Boolean requiresIndexDocuments)
True if IndexDocuments needs to be called to activate the
current domain configuration.
|
DomainStatus |
withSearchInstanceCount(Integer searchInstanceCount)
The number of search instances that are available to process search
requests.
|
DomainStatus |
withSearchInstanceType(String searchInstanceType)
The instance type that is being used to process search requests.
|
DomainStatus |
withSearchPartitionCount(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 String getDomainId()
Constraints:
Length: 1 - 64
public void setDomainId(String domainId)
Constraints:
Length: 1 - 64
domainId
- An internally generated unique identifier for a domain.public DomainStatus withDomainId(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 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 are unique
across the domains owned by an account within an AWS region. Domain
names start with a letter or number and can contain the following
characters: a-z (lowercase), 0-9, and - (hyphen).public DomainStatus 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 are unique
across the domains owned by an account within an AWS region. Domain
names start with a letter or number and can contain the following
characters: a-z (lowercase), 0-9, and - (hyphen).public String getARN()
public void setARN(String aRN)
aRN
- The Amazon Resource Name (ARN) of the search domain. See Identifiers for IAM Entities in Using AWS
Identity and Access Management for more information.public DomainStatus withARN(String aRN)
Returns a reference to this object so that method calls can be chained together.
aRN
- The Amazon Resource Name (ARN) of the search domain. See Identifiers for IAM Entities in Using AWS
Identity and Access Management for more information.public Boolean isCreated()
public void setCreated(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(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 Boolean getCreated()
public Boolean isDeleted()
public void setDeleted(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(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 Boolean getDeleted()
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 Boolean isRequiresIndexDocuments()
public void setRequiresIndexDocuments(Boolean requiresIndexDocuments)
requiresIndexDocuments
- True if IndexDocuments needs to be called to activate the
current domain configuration.public DomainStatus withRequiresIndexDocuments(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 Boolean getRequiresIndexDocuments()
public Boolean isProcessing()
public void setProcessing(Boolean processing)
processing
- True if processing is being done to activate the current domain
configuration.public DomainStatus withProcessing(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 Boolean getProcessing()
public String getSearchInstanceType()
public void setSearchInstanceType(String searchInstanceType)
searchInstanceType
- The instance type that is being used to process search requests.public DomainStatus withSearchInstanceType(String searchInstanceType)
Returns a reference to this object so that method calls can be chained together.
searchInstanceType
- The instance type that is being used to process search requests.public Integer getSearchPartitionCount()
Constraints:
Range: 1 -
public void setSearchPartitionCount(Integer searchPartitionCount)
Constraints:
Range: 1 -
searchPartitionCount
- The number of partitions across which the search index is spread.public DomainStatus withSearchPartitionCount(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 Integer getSearchInstanceCount()
Constraints:
Range: 1 -
public void setSearchInstanceCount(Integer searchInstanceCount)
Constraints:
Range: 1 -
searchInstanceCount
- The number of search instances that are available to process search
requests.public DomainStatus withSearchInstanceCount(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 String toString()
toString
in class Object
Object.toString()
Copyright © 2014. All rights reserved.