File Coverage

blib/lib/Paws/Health/DescribeEventTypesResponse.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::DescribeEventTypesResponse;
3 1     1   573 use Moose;
  1         3  
  1         8  
4             has EventTypes => (is => 'ro', isa => 'ArrayRef[Paws::Health::EventType]', traits => ['NameInRequest'], request_name => 'eventTypes' );
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::DescribeEventTypesResponse
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 EventTypes => ArrayRef[L<Paws::Health::EventType>]
19              
20             A list of event types that match the filter criteria. Event types have
21             a category (C<issue>, C<accountNotification>, or C<scheduledChange>), a
22             service (for example, C<EC2>, C<RDS>, C<DATAPIPELINE>, C<BILLING>), and
23             a code (in the format C<AWS_I<SERVICE>_I<DESCRIPTION> >; for example,
24             C<AWS_EC2_SYSTEM_MAINTENANCE_EVENT>).
25              
26              
27             =head2 NextToken => Str
28              
29             If the results of a search are large, only a portion of the results are
30             returned, and a C<nextToken> pagination token is returned in the
31             response. To retrieve the next batch of results, reissue the search
32             request and include the returned token. When all results have been
33             returned, the response does not contain a pagination token value.
34              
35              
36             =head2 _request_id => Str
37              
38              
39             =cut
40              
41             1;