File Coverage

blib/lib/Paws/CloudWatchLogs/GetLogEventsResponse.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::CloudWatchLogs::GetLogEventsResponse;
3 1     1   752 use Moose;
  1     1   3  
  1         9  
  1         426  
  1         5  
  1         8  
4             has Events => (is => 'ro', isa => 'ArrayRef[Paws::CloudWatchLogs::OutputLogEvent]', traits => ['NameInRequest'], request_name => 'events' );
5             has NextBackwardToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextBackwardToken' );
6             has NextForwardToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextForwardToken' );
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::CloudWatchLogs::GetLogEventsResponse
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 Events => ArrayRef[L<Paws::CloudWatchLogs::OutputLogEvent>]
20              
21             The events.
22              
23              
24             =head2 NextBackwardToken => Str
25              
26             The token for the next set of items in the backward direction. The
27             token expires after 24 hours.
28              
29              
30             =head2 NextForwardToken => Str
31              
32             The token for the next set of items in the forward direction. The token
33             expires after 24 hours.
34              
35              
36             =head2 _request_id => Str
37              
38              
39             =cut
40              
41             1;