Class DeleteElasticsearchDomainResult
- java.lang.Object
-
- com.amazonaws.services.elasticsearch.model.DeleteElasticsearchDomainResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class DeleteElasticsearchDomainResult extends Object implements Serializable, Cloneable
The result of a
DeleteElasticsearchDomainrequest. Contains the status of the pending deletion, or no status if the domain and all of its resources have been deleted.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DeleteElasticsearchDomainResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeleteElasticsearchDomainResultclone()booleanequals(Object obj)ElasticsearchDomainStatusgetDomainStatus()The status of the Elasticsearch domain being deleted.inthashCode()voidsetDomainStatus(ElasticsearchDomainStatus domainStatus)The status of the Elasticsearch domain being deleted.StringtoString()Returns a string representation of this object; useful for testing and debugging.DeleteElasticsearchDomainResultwithDomainStatus(ElasticsearchDomainStatus domainStatus)The status of the Elasticsearch domain being deleted.
-
-
-
Method Detail
-
setDomainStatus
public void setDomainStatus(ElasticsearchDomainStatus domainStatus)
The status of the Elasticsearch domain being deleted.
- Parameters:
domainStatus- The status of the Elasticsearch domain being deleted.
-
getDomainStatus
public ElasticsearchDomainStatus getDomainStatus()
The status of the Elasticsearch domain being deleted.
- Returns:
- The status of the Elasticsearch domain being deleted.
-
withDomainStatus
public DeleteElasticsearchDomainResult withDomainStatus(ElasticsearchDomainStatus domainStatus)
The status of the Elasticsearch domain being deleted.
- Parameters:
domainStatus- The status of the Elasticsearch domain being deleted.- 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 DeleteElasticsearchDomainResult clone()
-
-