Class DBClusterParameterGroup
- java.lang.Object
-
- com.amazonaws.services.rds.model.DBClusterParameterGroup
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DBClusterParameterGroup extends Object implements Serializable, Cloneable
Contains the result of a successful invocation of the CreateDBClusterParameterGroup action.
This data type is used as a request parameter in the DeleteDBClusterParameterGroup action, and as a response element in the DescribeDBClusterParameterGroups action.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DBClusterParameterGroup()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DBClusterParameterGroup
clone()
boolean
equals(Object obj)
String
getDBClusterParameterGroupName()
Provides the name of the DB cluster parameter group.String
getDBParameterGroupFamily()
Provides the name of the DB parameter group family that this DB cluster parameter group is compatible with.String
getDescription()
Provides the customer-specified description for this DB cluster parameter group.int
hashCode()
void
setDBClusterParameterGroupName(String dBClusterParameterGroupName)
Provides the name of the DB cluster parameter group.void
setDBParameterGroupFamily(String dBParameterGroupFamily)
Provides the name of the DB parameter group family that this DB cluster parameter group is compatible with.void
setDescription(String description)
Provides the customer-specified description for this DB cluster parameter group.String
toString()
Returns a string representation of this object; useful for testing and debugging.DBClusterParameterGroup
withDBClusterParameterGroupName(String dBClusterParameterGroupName)
Provides the name of the DB cluster parameter group.DBClusterParameterGroup
withDBParameterGroupFamily(String dBParameterGroupFamily)
Provides the name of the DB parameter group family that this DB cluster parameter group is compatible with.DBClusterParameterGroup
withDescription(String description)
Provides the customer-specified description for this DB cluster parameter group.
-
-
-
Method Detail
-
setDBClusterParameterGroupName
public void setDBClusterParameterGroupName(String dBClusterParameterGroupName)
Provides the name of the DB cluster parameter group.
- Parameters:
dBClusterParameterGroupName
- Provides the name of the DB cluster parameter group.
-
getDBClusterParameterGroupName
public String getDBClusterParameterGroupName()
Provides the name of the DB cluster parameter group.
- Returns:
- Provides the name of the DB cluster parameter group.
-
withDBClusterParameterGroupName
public DBClusterParameterGroup withDBClusterParameterGroupName(String dBClusterParameterGroupName)
Provides the name of the DB cluster parameter group.
- Parameters:
dBClusterParameterGroupName
- Provides the name of the DB cluster parameter group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setDBParameterGroupFamily
public void setDBParameterGroupFamily(String dBParameterGroupFamily)
Provides the name of the DB parameter group family that this DB cluster parameter group is compatible with.
- Parameters:
dBParameterGroupFamily
- Provides the name of the DB parameter group family that this DB cluster parameter group is compatible with.
-
getDBParameterGroupFamily
public String getDBParameterGroupFamily()
Provides the name of the DB parameter group family that this DB cluster parameter group is compatible with.
- Returns:
- Provides the name of the DB parameter group family that this DB cluster parameter group is compatible with.
-
withDBParameterGroupFamily
public DBClusterParameterGroup withDBParameterGroupFamily(String dBParameterGroupFamily)
Provides the name of the DB parameter group family that this DB cluster parameter group is compatible with.
- Parameters:
dBParameterGroupFamily
- Provides the name of the DB parameter group family that this DB cluster parameter group is compatible with.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setDescription
public void setDescription(String description)
Provides the customer-specified description for this DB cluster parameter group.
- Parameters:
description
- Provides the customer-specified description for this DB cluster parameter group.
-
getDescription
public String getDescription()
Provides the customer-specified description for this DB cluster parameter group.
- Returns:
- Provides the customer-specified description for this DB cluster parameter group.
-
withDescription
public DBClusterParameterGroup withDescription(String description)
Provides the customer-specified description for this DB cluster parameter group.
- Parameters:
description
- Provides the customer-specified description for this DB cluster parameter 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 DBClusterParameterGroup clone()
-
-