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