File Coverage

blib/lib/Paws/Health/DescribeEventsResponse.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              
2             package Paws::Health::DescribeEventsResponse;
3 1     1   691 use Moose;
  1         3  
  1         9  
4             has Events => (is => 'ro', isa => 'ArrayRef[Paws::Health::Event]', traits => ['NameInRequest'], request_name => 'events' );
5             has NextToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextToken' );
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::Health::DescribeEventsResponse
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 Events => ArrayRef[L<Paws::Health::Event>]
19              
20             The events that match the specified filter criteria.
21              
22              
23             =head2 NextToken => Str
24              
25             If the results of a search are large, only a portion of the results are
26             returned, and a C<nextToken> pagination token is returned in the
27             response. To retrieve the next batch of results, reissue the search
28             request and include the returned token. When all results have been
29             returned, the response does not contain a pagination token value.
30              
31              
32             =head2 _request_id => Str
33              
34              
35             =cut
36              
37             1;