| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Route53::ListHealthChecksResponse; |
|
3
|
1
|
|
|
1
|
|
538
|
use Moose; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
10
|
|
|
4
|
|
|
|
|
|
|
has HealthChecks => (is => 'ro', isa => 'ArrayRef[Paws::Route53::HealthCheck]', required => 1); |
|
5
|
|
|
|
|
|
|
has IsTruncated => (is => 'ro', isa => 'Bool', required => 1); |
|
6
|
|
|
|
|
|
|
has Marker => (is => 'ro', isa => 'Str', required => 1); |
|
7
|
|
|
|
|
|
|
has MaxItems => (is => 'ro', isa => 'Str', required => 1); |
|
8
|
|
|
|
|
|
|
has NextMarker => (is => 'ro', isa => 'Str'); |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
|
11
|
|
|
|
|
|
|
1; |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::Route53::ListHealthChecksResponse |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 B<REQUIRED> HealthChecks => ArrayRef[L<Paws::Route53::HealthCheck>] |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
A complex type that contains one C<HealthCheck> element for each health |
|
25
|
|
|
|
|
|
|
check that is associated with the current AWS account. |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 B<REQUIRED> IsTruncated => Bool |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
A flag that indicates whether there are more health checks to be |
|
32
|
|
|
|
|
|
|
listed. If the response was truncated, you can get the next group of |
|
33
|
|
|
|
|
|
|
health checks by submitting another C<ListHealthChecks> request and |
|
34
|
|
|
|
|
|
|
specifying the value of C<NextMarker> in the C<marker> parameter. |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head2 B<REQUIRED> Marker => Str |
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
For the second and subsequent calls to C<ListHealthChecks>, C<Marker> |
|
41
|
|
|
|
|
|
|
is the value that you specified for the C<marker> parameter in the |
|
42
|
|
|
|
|
|
|
previous request. |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 B<REQUIRED> MaxItems => Str |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
The value that you specified for the C<maxitems> parameter in the call |
|
49
|
|
|
|
|
|
|
to C<ListHealthChecks> that produced the current response. |
|
50
|
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head2 NextMarker => Str |
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
If C<IsTruncated> is C<true>, the value of C<NextMarker> identifies the |
|
56
|
|
|
|
|
|
|
first health check that Amazon Route 53 returns if you submit another |
|
57
|
|
|
|
|
|
|
C<ListHealthChecks> request and specify the value of C<NextMarker> in |
|
58
|
|
|
|
|
|
|
the C<marker> parameter. |
|
59
|
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=cut |
|
64
|
|
|
|
|
|
|
|