Class DescribeElasticsearchDomainsResult
- java.lang.Object
-
- com.amazonaws.services.elasticsearch.model.DescribeElasticsearchDomainsResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeElasticsearchDomainsResult extends Object implements Serializable, Cloneable
The result of a
DescribeElasticsearchDomains
request. Contains the status of the specified domains or all domains owned by the account.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeElasticsearchDomainsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeElasticsearchDomainsResult
clone()
boolean
equals(Object obj)
List<ElasticsearchDomainStatus>
getDomainStatusList()
The status of the domains requested in theDescribeElasticsearchDomains
request.int
hashCode()
void
setDomainStatusList(Collection<ElasticsearchDomainStatus> domainStatusList)
The status of the domains requested in theDescribeElasticsearchDomains
request.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeElasticsearchDomainsResult
withDomainStatusList(ElasticsearchDomainStatus... domainStatusList)
The status of the domains requested in theDescribeElasticsearchDomains
request.DescribeElasticsearchDomainsResult
withDomainStatusList(Collection<ElasticsearchDomainStatus> domainStatusList)
The status of the domains requested in theDescribeElasticsearchDomains
request.
-
-
-
Method Detail
-
getDomainStatusList
public List<ElasticsearchDomainStatus> getDomainStatusList()
The status of the domains requested in the
DescribeElasticsearchDomains
request.- Returns:
- The status of the domains requested in the
DescribeElasticsearchDomains
request.
-
setDomainStatusList
public void setDomainStatusList(Collection<ElasticsearchDomainStatus> domainStatusList)
The status of the domains requested in the
DescribeElasticsearchDomains
request.- Parameters:
domainStatusList
- The status of the domains requested in theDescribeElasticsearchDomains
request.
-
withDomainStatusList
public DescribeElasticsearchDomainsResult withDomainStatusList(ElasticsearchDomainStatus... domainStatusList)
The status of the domains requested in the
DescribeElasticsearchDomains
request.NOTE: This method appends the values to the existing list (if any). Use
setDomainStatusList(java.util.Collection)
orwithDomainStatusList(java.util.Collection)
if you want to override the existing values.- Parameters:
domainStatusList
- The status of the domains requested in theDescribeElasticsearchDomains
request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withDomainStatusList
public DescribeElasticsearchDomainsResult withDomainStatusList(Collection<ElasticsearchDomainStatus> domainStatusList)
The status of the domains requested in the
DescribeElasticsearchDomains
request.- Parameters:
domainStatusList
- The status of the domains requested in theDescribeElasticsearchDomains
request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DescribeElasticsearchDomainsResult clone()
-
-