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 SnapshotOptionsStatusclone()booleanequals(Object obj)SnapshotOptionsgetOptions()Specifies the daily snapshot options specified for the Elasticsearch domain.OptionStatusgetStatus()Specifies the status of a daily automated snapshot.inthashCode()voidsetOptions(SnapshotOptions options)Specifies the daily snapshot options specified for the Elasticsearch domain.voidsetStatus(OptionStatus status)Specifies the status of a daily automated snapshot.StringtoString()Returns a string representation of this object; useful for testing and debugging.SnapshotOptionsStatuswithOptions(SnapshotOptions options)Specifies the daily snapshot options specified for the Elasticsearch domain.SnapshotOptionsStatuswithStatus(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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public SnapshotOptionsStatus clone()
-
-