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
DescribeElasticsearchDomainsrequest. 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 DescribeElasticsearchDomainsResultclone()booleanequals(Object obj)List<ElasticsearchDomainStatus>getDomainStatusList()The status of the domains requested in theDescribeElasticsearchDomainsrequest.inthashCode()voidsetDomainStatusList(Collection<ElasticsearchDomainStatus> domainStatusList)The status of the domains requested in theDescribeElasticsearchDomainsrequest.StringtoString()Returns a string representation of this object; useful for testing and debugging.DescribeElasticsearchDomainsResultwithDomainStatusList(ElasticsearchDomainStatus... domainStatusList)The status of the domains requested in theDescribeElasticsearchDomainsrequest.DescribeElasticsearchDomainsResultwithDomainStatusList(Collection<ElasticsearchDomainStatus> domainStatusList)The status of the domains requested in theDescribeElasticsearchDomainsrequest.
-
-
-
Method Detail
-
getDomainStatusList
public List<ElasticsearchDomainStatus> getDomainStatusList()
The status of the domains requested in the
DescribeElasticsearchDomainsrequest.- Returns:
- The status of the domains requested in the
DescribeElasticsearchDomainsrequest.
-
setDomainStatusList
public void setDomainStatusList(Collection<ElasticsearchDomainStatus> domainStatusList)
The status of the domains requested in the
DescribeElasticsearchDomainsrequest.- Parameters:
domainStatusList- The status of the domains requested in theDescribeElasticsearchDomainsrequest.
-
withDomainStatusList
public DescribeElasticsearchDomainsResult withDomainStatusList(ElasticsearchDomainStatus... domainStatusList)
The status of the domains requested in the
DescribeElasticsearchDomainsrequest.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 theDescribeElasticsearchDomainsrequest.- 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
DescribeElasticsearchDomainsrequest.- Parameters:
domainStatusList- The status of the domains requested in theDescribeElasticsearchDomainsrequest.- 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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DescribeElasticsearchDomainsResult clone()
-
-