VM::EC2::DB::Option::Group::Option - An RDS Database Option Group Option
Contents
Description
This object represents an Option Group Option, as returned by the
VM::EC2->describe_option_group_options() call.
Name
VM::EC2::DB::Option::Group::Option - An RDS Database Option Group Option
See Also
VM::EC2 VM::EC2::Generic VM::EC2::DB::Instance
String Overloading
In string context, the object returns the Option Name.
Synopsis
use VM::EC2;
$ec2 = VM::EC2->new(...);
@options = $ec2->describe_option_group_options(-engine_name => 'oracle-se1');
foreach $option (@options) {
print $option->Name,' ',$option->MajorEngineVersion,"\n";
}
