line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CloudTrail::LookupEventsResponse; |
3
|
1
|
|
|
1
|
|
383
|
use Moose; |
|
1
|
|
|
1
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
|
1
|
|
|
|
|
504
|
|
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
9
|
|
4
|
|
|
|
|
|
|
has Events => (is => 'ro', isa => 'ArrayRef[Paws::CloudTrail::Event]'); |
5
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::CloudTrail::LookupEventsResponse |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 Events => ArrayRef[L<Paws::CloudTrail::Event>] |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
A list of events returned based on the lookup attributes specified and |
21
|
|
|
|
|
|
|
the CloudTrail event. The events list is sorted by time. The most |
22
|
|
|
|
|
|
|
recent event is listed first. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 NextToken => Str |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
The token to use to get the next page of results after a previous API |
28
|
|
|
|
|
|
|
call. If the token does not appear, there are no more results to |
29
|
|
|
|
|
|
|
return. The token must be passed in with the same parameters as the |
30
|
|
|
|
|
|
|
previous call. For example, if the original call specified an |
31
|
|
|
|
|
|
|
AttributeKey of 'Username' with a value of 'root', the call with |
32
|
|
|
|
|
|
|
NextToken should include those same parameters. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head2 _request_id => Str |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=cut |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
1; |