File Coverage

blib/lib/Paws/Health/DescribeEventAggregatesResponse.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::DescribeEventAggregatesResponse;
3 1     1   630 use Moose;
  1         3  
  1         9  
4             has EventAggregates => (is => 'ro', isa => 'ArrayRef[Paws::Health::EventAggregate]', traits => ['NameInRequest'], request_name => 'eventAggregates' );
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::DescribeEventAggregatesResponse
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 EventAggregates => ArrayRef[L<Paws::Health::EventAggregate>]
19              
20             The number of events in each category that meet the optional filter
21             criteria.
22              
23              
24             =head2 NextToken => Str
25              
26             If the results of a search are large, only a portion of the results are
27             returned, and a C<nextToken> pagination token is returned in the
28             response. To retrieve the next batch of results, reissue the search
29             request and include the returned token. When all results have been
30             returned, the response does not contain a pagination token value.
31              
32              
33             =head2 _request_id => Str
34              
35              
36             =cut
37              
38             1;