line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Health::DescribeAffectedEntitiesResponse; |
3
|
1
|
|
|
1
|
|
409
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has Entities => (is => 'ro', isa => 'ArrayRef[Paws::Health::AffectedEntity]', traits => ['NameInRequest'], request_name => 'entities' ); |
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::DescribeAffectedEntitiesResponse |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 Entities => ArrayRef[L<Paws::Health::AffectedEntity>] |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
The entities that match the 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; |