Deletes a DB Security Group.
The specified DB Security Group must not be associated with any DB Instances.
Access
public
Parameters
Parameter |
Type |
Required |
Description |
---|---|---|---|
|
Required |
The name of the DB Security Group to delete. You cannot delete the default DB Security Group. Constraints:
|
|
|
Optional |
An associative array of parameters that can have the following keys:
|
Returns
Type |
Description |
---|---|
A |
Examples
Delete a security group.
// Instantiate the class $rds = new AmazonRDS(); $response = $rds->delete_db_security_group('mySecurityGroup'); // Success? var_dump($response->isOK());Result:
bool(true)
Related Methods
Source
Method defined in services/rds.class.php | Toggle source view (7 lines) | View on GitHub