Package com.amazonaws.services.rds.model
Class DBParameterGroupStatus
- java.lang.Object
-
- com.amazonaws.services.rds.model.DBParameterGroupStatus
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DBParameterGroupStatus extends Object implements Serializable, Cloneable
The status of the DB parameter group.
This data type is used as a response element in the following actions:
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DBParameterGroupStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DBParameterGroupStatus
clone()
boolean
equals(Object obj)
String
getDBParameterGroupName()
The name of the DP parameter group.String
getParameterApplyStatus()
The status of parameter updates.int
hashCode()
void
setDBParameterGroupName(String dBParameterGroupName)
The name of the DP parameter group.void
setParameterApplyStatus(String parameterApplyStatus)
The status of parameter updates.String
toString()
Returns a string representation of this object; useful for testing and debugging.DBParameterGroupStatus
withDBParameterGroupName(String dBParameterGroupName)
The name of the DP parameter group.DBParameterGroupStatus
withParameterApplyStatus(String parameterApplyStatus)
The status of parameter updates.
-
-
-
Method Detail
-
setDBParameterGroupName
public void setDBParameterGroupName(String dBParameterGroupName)
The name of the DP parameter group.
- Parameters:
dBParameterGroupName
- The name of the DP parameter group.
-
getDBParameterGroupName
public String getDBParameterGroupName()
The name of the DP parameter group.
- Returns:
- The name of the DP parameter group.
-
withDBParameterGroupName
public DBParameterGroupStatus withDBParameterGroupName(String dBParameterGroupName)
The name of the DP parameter group.
- Parameters:
dBParameterGroupName
- The name of the DP parameter group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setParameterApplyStatus
public void setParameterApplyStatus(String parameterApplyStatus)
The status of parameter updates.
- Parameters:
parameterApplyStatus
- The status of parameter updates.
-
getParameterApplyStatus
public String getParameterApplyStatus()
The status of parameter updates.
- Returns:
- The status of parameter updates.
-
withParameterApplyStatus
public DBParameterGroupStatus withParameterApplyStatus(String parameterApplyStatus)
The status of parameter updates.
- Parameters:
parameterApplyStatus
- The status of parameter updates.- 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 DBParameterGroupStatus clone()
-
-