VM::EC2::DB::IPRange - An RDS Database IP Range
Contents
Description
This object represents an IP Range in a DB Security group.
Name
VM::EC2::DB::IPRange - An RDS Database IP Range
See Also
VM::EC2 VM::EC2::Generic VM::EC2::DB::Instance
String Overloading
In string context, this object returns the CIDRIP.
Synopsis
use VM::EC2;
$ec2 = VM::EC2->new(...);
$group = $ec2->revoke_db_security_group_ingress(-db_security_group_name => 'dbgroup',
-cidrip => '10.10.10.10/32');
print $_,"\n" foreach grep { $_->Status eq 'authorized' } $group->IPRanges;
