Did this page help you?

   Yes   No   Tell us about it...

com.amazonaws.services.rds.model
Class DeleteDBParameterGroupRequest

java.lang.Object
  extended by com.amazonaws.AmazonWebServiceRequest
      extended by com.amazonaws.services.rds.model.DeleteDBParameterGroupRequest
All Implemented Interfaces:
Serializable

public class DeleteDBParameterGroupRequest
extends AmazonWebServiceRequest
implements Serializable

Container for the parameters to the DeleteDBParameterGroup operation.

Deletes a specified DBParameterGroup. The DBParameterGroup cannot be associated with any RDS instances to be deleted.

NOTE: The specified DB Parameter Group cannot be associated with any DB Instances.

See Also:
AmazonRDS.deleteDBParameterGroup(DeleteDBParameterGroupRequest), Serialized Form

Constructor Summary
DeleteDBParameterGroupRequest()
          Default constructor for a new DeleteDBParameterGroupRequest object.
DeleteDBParameterGroupRequest(String dBParameterGroupName)
          Constructs a new DeleteDBParameterGroupRequest object.
 
Method Summary
 boolean equals(Object obj)
           
 String getDBParameterGroupName()
          The name of the DB Parameter Group.
 int hashCode()
           
 void setDBParameterGroupName(String dBParameterGroupName)
          The name of the DB Parameter Group.
 String toString()
          Returns a string representation of this object; useful for testing and debugging.
 DeleteDBParameterGroupRequest withDBParameterGroupName(String dBParameterGroupName)
          The name of the DB Parameter Group.
 
Methods inherited from class com.amazonaws.AmazonWebServiceRequest
copyPrivateRequestParameters, getRequestClientOptions, getRequestCredentials, setRequestCredentials
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DeleteDBParameterGroupRequest

public DeleteDBParameterGroupRequest()
Default constructor for a new DeleteDBParameterGroupRequest object. Callers should use the setter or fluent setter (with...) methods to initialize this object after creating it.


DeleteDBParameterGroupRequest

public DeleteDBParameterGroupRequest(String dBParameterGroupName)
Constructs a new DeleteDBParameterGroupRequest object. Callers should use the setter or fluent setter (with...) methods to initialize any additional object members.

Parameters:
dBParameterGroupName - The name of the DB Parameter Group.

Constraints:

  • Must be the name of an existing DB Parameter Group
  • You cannot delete a default DB Parameter Group
  • Cannot be associated with any DB Instances
Method Detail

getDBParameterGroupName

public String getDBParameterGroupName()
The name of the DB Parameter Group.

Constraints:

Returns:
The name of the DB Parameter Group.

Constraints:

  • Must be the name of an existing DB Parameter Group
  • You cannot delete a default DB Parameter Group
  • Cannot be associated with any DB Instances

setDBParameterGroupName

public void setDBParameterGroupName(String dBParameterGroupName)
The name of the DB Parameter Group.

Constraints:

Parameters:
dBParameterGroupName - The name of the DB Parameter Group.

Constraints:

  • Must be the name of an existing DB Parameter Group
  • You cannot delete a default DB Parameter Group
  • Cannot be associated with any DB Instances

withDBParameterGroupName

public DeleteDBParameterGroupRequest withDBParameterGroupName(String dBParameterGroupName)
The name of the DB Parameter Group.

Constraints:

Returns a reference to this object so that method calls can be chained together.

Parameters:
dBParameterGroupName - The name of the DB Parameter Group.

Constraints:

  • Must be the name of an existing DB Parameter Group
  • You cannot delete a default DB Parameter Group
  • Cannot be associated with any DB Instances
Returns:
A reference to this updated 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 class Object
Returns:
A string representation of this object.
See Also:
Object.toString()

hashCode

public int hashCode()
Overrides:
hashCode in class Object

equals

public boolean equals(Object obj)
Overrides:
equals in class Object


Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.