1VM::EC2::DB::Event(3) User Contributed Perl DocumentationVM::EC2::DB::Event(3)
2
3
4
6 VM::EC2::DB::Event - An RDS Database Event
7
9 use VM::EC2;
10 $ec2 = VM::EC2->new(...);
11 my @events = $ec2->describe_events;
12 print $_,"\n" foreach grep { $_->SourceIdentifier eq 'mydbinstance' } @events;
13
15 This object represents an event related to DB instances, DB security
16 groups, DB snapshots, and DB parameter groups that have happened in the
17 past 14 days.
18
20 In string context, this object returns a string with the date,
21 identifier of the source of the event, and the event message.
22
24 VM::EC2 VM::EC2::Generic VM::EC2::DB::Instance
25
27 Lance Kinley <lkinley@loyaltymethods.com>.
28
29 Copyright (c) 2013 Loyalty Methods, Inc.
30
31 This package and its accompanying libraries is free software; you can
32 redistribute it and/or modify it under the terms of the GPL (either
33 version 1, or at your option, any later version) or the Artistic
34 License 2.0. Refer to LICENSE for the full license text. In addition,
35 please see DISCLAIMER.txt for disclaimers of warranty.
36
37
38
39perl v5.34.0 2021-07-27 VM::EC2::DB::Event(3)