Returns a list of DBSecurityGroup descriptions. If a DBSecurityGroupName is specified, the list will contain only the descriptions of the specified DBSecurityGroup.
For an overview of CIDR ranges, go to the Wikipedia Tutorial.
Access
public
Parameters
Parameter |
Type |
Required |
Description |
---|---|---|---|
|
Optional |
An associative array of parameters that can have the following keys:
|
Returns
Type |
Description |
---|---|
A |
Examples
Describe a database security group.
// Instantiate the class $rds = new AmazonRDS(); $response = $rds->describe_db_security_groups(array( 'DBSecurityGroupName' => 'mySecurityGroup' )); // Success? var_dump($response->isOK());Result:
bool(true)
Related Methods
Source
Method defined in services/rds.class.php | Toggle source view (6 lines) | View on GitHub