File Coverage

blib/lib/Paws/Health/EventFilter.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Paws::Health::EventFilter;
2 1     1   566 use Moose;
  1         2  
  1         10  
3             has AvailabilityZones => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'availabilityZones', traits => ['NameInRequest']);
4             has EndTimes => (is => 'ro', isa => 'ArrayRef[Paws::Health::DateTimeRange]', request_name => 'endTimes', traits => ['NameInRequest']);
5             has EntityArns => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'entityArns', traits => ['NameInRequest']);
6             has EntityValues => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'entityValues', traits => ['NameInRequest']);
7             has EventArns => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'eventArns', traits => ['NameInRequest']);
8             has EventStatusCodes => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'eventStatusCodes', traits => ['NameInRequest']);
9             has EventTypeCategories => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'eventTypeCategories', traits => ['NameInRequest']);
10             has EventTypeCodes => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'eventTypeCodes', traits => ['NameInRequest']);
11             has LastUpdatedTimes => (is => 'ro', isa => 'ArrayRef[Paws::Health::DateTimeRange]', request_name => 'lastUpdatedTimes', traits => ['NameInRequest']);
12             has Regions => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'regions', traits => ['NameInRequest']);
13             has Services => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'services', traits => ['NameInRequest']);
14             has StartTimes => (is => 'ro', isa => 'ArrayRef[Paws::Health::DateTimeRange]', request_name => 'startTimes', traits => ['NameInRequest']);
15             has Tags => (is => 'ro', isa => 'ArrayRef[Paws::Health::TagSet]', request_name => 'tags', traits => ['NameInRequest']);
16             1;
17              
18             ### main pod documentation begin ###
19              
20             =head1 NAME
21              
22             Paws::Health::EventFilter
23              
24             =head1 USAGE
25              
26             This class represents one of two things:
27              
28             =head3 Arguments in a call to a service
29              
30             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
31             Each attribute should be used as a named argument in the calls that expect this type of object.
32              
33             As an example, if Att1 is expected to be a Paws::Health::EventFilter object:
34              
35             $service_obj->Method(Att1 => { AvailabilityZones => $value, ..., Tags => $value });
36              
37             =head3 Results returned from an API call
38              
39             Use accessors for each attribute. If Att1 is expected to be an Paws::Health::EventFilter object:
40              
41             $result = $service_obj->Method(...);
42             $result->Att1->AvailabilityZones
43              
44             =head1 DESCRIPTION
45              
46             The values to use to filter results from the DescribeEvents and
47             DescribeEventAggregates operations.
48              
49             =head1 ATTRIBUTES
50              
51              
52             =head2 AvailabilityZones => ArrayRef[Str|Undef]
53              
54             A list of AWS availability zones.
55              
56              
57             =head2 EndTimes => ArrayRef[L<Paws::Health::DateTimeRange>]
58              
59             A list of dates and times that the event ended.
60              
61              
62             =head2 EntityArns => ArrayRef[Str|Undef]
63              
64             A list of entity ARNs (unique identifiers).
65              
66              
67             =head2 EntityValues => ArrayRef[Str|Undef]
68              
69             A list of entity identifiers, such as EC2 instance IDs (C<i-34ab692e>)
70             or EBS volumes (C<vol-426ab23e>).
71              
72              
73             =head2 EventArns => ArrayRef[Str|Undef]
74              
75             A list of event ARNs (unique identifiers). For example:
76             C<"arn:aws:health:us-east-1::event/AWS_EC2_MAINTENANCE_5331",
77             "arn:aws:health:us-west-1::event/AWS_EBS_LOST_VOLUME_xyz">
78              
79              
80             =head2 EventStatusCodes => ArrayRef[Str|Undef]
81              
82             A list of event status codes.
83              
84              
85             =head2 EventTypeCategories => ArrayRef[Str|Undef]
86              
87             A list of event type category codes (C<issue>, C<scheduledChange>, or
88             C<accountNotification>).
89              
90              
91             =head2 EventTypeCodes => ArrayRef[Str|Undef]
92              
93             A list of unique identifiers for event types. For example,
94             C<"AWS_EC2_SYSTEM_MAINTENANCE_EVENT","AWS_RDS_MAINTENANCE_SCHEDULED">
95              
96              
97             =head2 LastUpdatedTimes => ArrayRef[L<Paws::Health::DateTimeRange>]
98              
99             A list of dates and times that the event was last updated.
100              
101              
102             =head2 Regions => ArrayRef[Str|Undef]
103              
104             A list of AWS regions.
105              
106              
107             =head2 Services => ArrayRef[Str|Undef]
108              
109             The AWS services associated with the event. For example, C<EC2>,
110             C<RDS>.
111              
112              
113             =head2 StartTimes => ArrayRef[L<Paws::Health::DateTimeRange>]
114              
115             A list of dates and times that the event began.
116              
117              
118             =head2 Tags => ArrayRef[L<Paws::Health::TagSet>]
119              
120             A map of entity tags attached to the affected entity.
121              
122              
123              
124             =head1 SEE ALSO
125              
126             This class forms part of L<Paws>, describing an object used in L<Paws::Health>
127              
128             =head1 BUGS and CONTRIBUTIONS
129              
130             The source code is located here: https://github.com/pplu/aws-sdk-perl
131              
132             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
133              
134             =cut
135