Class ElasticsearchClusterConfigStatus
- java.lang.Object
-
- com.amazonaws.services.elasticsearch.model.ElasticsearchClusterConfigStatus
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ElasticsearchClusterConfigStatus extends Object implements Serializable, Cloneable
Specifies the configuration status for the specified Elasticsearch domain.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ElasticsearchClusterConfigStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ElasticsearchClusterConfigStatus
clone()
boolean
equals(Object obj)
ElasticsearchClusterConfig
getOptions()
Specifies the cluster configuration for the specified Elasticsearch domain.OptionStatus
getStatus()
Specifies the status of the configuration for the specified Elasticsearch domain.int
hashCode()
void
setOptions(ElasticsearchClusterConfig options)
Specifies the cluster configuration for the specified Elasticsearch domain.void
setStatus(OptionStatus status)
Specifies the status of the configuration for the specified Elasticsearch domain.String
toString()
Returns a string representation of this object; useful for testing and debugging.ElasticsearchClusterConfigStatus
withOptions(ElasticsearchClusterConfig options)
Specifies the cluster configuration for the specified Elasticsearch domain.ElasticsearchClusterConfigStatus
withStatus(OptionStatus status)
Specifies the status of the configuration for the specified Elasticsearch domain.
-
-
-
Method Detail
-
setOptions
public void setOptions(ElasticsearchClusterConfig options)
Specifies the cluster configuration for the specified Elasticsearch domain.
- Parameters:
options
- Specifies the cluster configuration for the specified Elasticsearch domain.
-
getOptions
public ElasticsearchClusterConfig getOptions()
Specifies the cluster configuration for the specified Elasticsearch domain.
- Returns:
- Specifies the cluster configuration for the specified Elasticsearch domain.
-
withOptions
public ElasticsearchClusterConfigStatus withOptions(ElasticsearchClusterConfig options)
Specifies the cluster configuration for the specified Elasticsearch domain.
- Parameters:
options
- Specifies the cluster configuration for the specified Elasticsearch domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setStatus
public void setStatus(OptionStatus status)
Specifies the status of the configuration for the specified Elasticsearch domain.
- Parameters:
status
- Specifies the status of the configuration for the specified Elasticsearch domain.
-
getStatus
public OptionStatus getStatus()
Specifies the status of the configuration for the specified Elasticsearch domain.
- Returns:
- Specifies the status of the configuration for the specified Elasticsearch domain.
-
withStatus
public ElasticsearchClusterConfigStatus withStatus(OptionStatus status)
Specifies the status of the configuration for the specified Elasticsearch domain.
- Parameters:
status
- Specifies the status of the configuration for the specified Elasticsearch domain.- 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 ElasticsearchClusterConfigStatus clone()
-
-