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 DBParameterGroupStatusclone()booleanequals(Object obj)StringgetDBParameterGroupName()The name of the DP parameter group.StringgetParameterApplyStatus()The status of parameter updates.inthashCode()voidsetDBParameterGroupName(String dBParameterGroupName)The name of the DP parameter group.voidsetParameterApplyStatus(String parameterApplyStatus)The status of parameter updates.StringtoString()Returns a string representation of this object; useful for testing and debugging.DBParameterGroupStatuswithDBParameterGroupName(String dBParameterGroupName)The name of the DP parameter group.DBParameterGroupStatuswithParameterApplyStatus(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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DBParameterGroupStatus clone()
-
-