VM::EC2::DB::Option::Group - An RDS Database Option Group
Contents
Description
This object represents a DB Option Group. It is the result of a VM::EC2->create_option_group(),
VM::EC2->describe_option_groups(), or VM::EC2->modify_option_group() call.
Name
VM::EC2::DB::Option::Group - An RDS Database Option Group
See Also
VM::EC2 VM::EC2::Generic VM::EC2::DB::Instance
String Overloading
In string context, the object returns the Option Group Name.
Synopsis
use VM::EC2;
$ec2 = VM::EC2->new(...);
@grps = $ec2->describe_option_groups();
print $_->OptionGroupName,': ',$_->EngineName,"\n" foreach @grps;
