VM::EC2::DB::Event - An RDS Database Event
Contents
Description
This object represents an event related to DB instances, DB security groups, DB snapshots, and DB
parameter groups that have happened in the past 14 days.
Name
VM::EC2::DB::Event - An RDS Database Event
See Also
VM::EC2 VM::EC2::Generic VM::EC2::DB::Instance
String Overloading
In string context, this object returns a string with the date, identifier of the source of the event, and
the event message.
Synopsis
use VM::EC2;
$ec2 = VM::EC2->new(...);
my @events = $ec2->describe_events;
print $_,"\n" foreach grep { $_->SourceIdentifier eq 'mydbinstance' } @events;
