VM::EC2::DB::Reserved::Instance::Offering - An RDS Database Reserved Instance Offering
Contents
Description
This object represents an RDS Reserved Instance Offering. It is returned by the
VM::EC2->describe_reserved_db_instances_offerings() call.
Name
VM::EC2::DB::Reserved::Instance::Offering - An RDS Database Reserved Instance Offering
See Also
VM::EC2 VM::EC2::Generic VM::EC2::DB::Instance
String Overloading
In string context, this object returns a formatted string containing all the data available on the
reserved instance offering.
Synopsis
use VM::EC2;
$ec2 = VM::EC2->new(...);
my @i = $ec2->describe_reserved_db_instances_offerings;
print "$_\n" foreach grep { $_->MultiAZ } @i;
