Package com.amazonaws.services.rds.model
Class DBClusterOptionGroupStatus
- java.lang.Object
-
- com.amazonaws.services.rds.model.DBClusterOptionGroupStatus
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DBClusterOptionGroupStatus extends Object implements Serializable, Cloneable
Contains status information for a DB cluster option group.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DBClusterOptionGroupStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DBClusterOptionGroupStatus
clone()
boolean
equals(Object obj)
String
getDBClusterOptionGroupName()
Specifies the name of the DB cluster option group.String
getStatus()
Specifies the status of the DB cluster option group.int
hashCode()
void
setDBClusterOptionGroupName(String dBClusterOptionGroupName)
Specifies the name of the DB cluster option group.void
setStatus(String status)
Specifies the status of the DB cluster option group.String
toString()
Returns a string representation of this object; useful for testing and debugging.DBClusterOptionGroupStatus
withDBClusterOptionGroupName(String dBClusterOptionGroupName)
Specifies the name of the DB cluster option group.DBClusterOptionGroupStatus
withStatus(String status)
Specifies the status of the DB cluster option group.
-
-
-
Method Detail
-
setDBClusterOptionGroupName
public void setDBClusterOptionGroupName(String dBClusterOptionGroupName)
Specifies the name of the DB cluster option group.
- Parameters:
dBClusterOptionGroupName
- Specifies the name of the DB cluster option group.
-
getDBClusterOptionGroupName
public String getDBClusterOptionGroupName()
Specifies the name of the DB cluster option group.
- Returns:
- Specifies the name of the DB cluster option group.
-
withDBClusterOptionGroupName
public DBClusterOptionGroupStatus withDBClusterOptionGroupName(String dBClusterOptionGroupName)
Specifies the name of the DB cluster option group.
- Parameters:
dBClusterOptionGroupName
- Specifies the name of the DB cluster option group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setStatus
public void setStatus(String status)
Specifies the status of the DB cluster option group.
- Parameters:
status
- Specifies the status of the DB cluster option group.
-
getStatus
public String getStatus()
Specifies the status of the DB cluster option group.
- Returns:
- Specifies the status of the DB cluster option group.
-
withStatus
public DBClusterOptionGroupStatus withStatus(String status)
Specifies the status of the DB cluster option group.
- Parameters:
status
- Specifies the status of the DB cluster option group.- 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 DBClusterOptionGroupStatus clone()
-
-