line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Route53::ListHostedZonesResponse; |
3
|
1
|
|
|
1
|
|
404
|
use Moose; |
|
1
|
|
|
1
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
|
1
|
|
|
|
|
347
|
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has HostedZones => (is => 'ro', isa => 'ArrayRef[Paws::Route53::HostedZone]', required => 1); |
5
|
|
|
|
|
|
|
has IsTruncated => (is => 'ro', isa => 'Bool', required => 1); |
6
|
|
|
|
|
|
|
has Marker => (is => 'ro', isa => 'Str'); |
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::ListHostedZonesResponse |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 B<REQUIRED> HostedZones => ArrayRef[L<Paws::Route53::HostedZone>] |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
A complex type that contains general information about the hosted zone. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head2 B<REQUIRED> IsTruncated => Bool |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
A flag indicating whether there are more hosted zones to be listed. If |
31
|
|
|
|
|
|
|
the response was truncated, you can get more hosted zones by submitting |
32
|
|
|
|
|
|
|
another C<ListHostedZones> request and specifying the value of |
33
|
|
|
|
|
|
|
C<NextMarker> in the C<marker> parameter. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 Marker => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
For the second and subsequent calls to C<ListHostedZones>, C<Marker> is |
40
|
|
|
|
|
|
|
the value that you specified for the C<marker> parameter in the request |
41
|
|
|
|
|
|
|
that produced the current response. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head2 B<REQUIRED> MaxItems => Str |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
The value that you specified for the C<maxitems> parameter in the call |
48
|
|
|
|
|
|
|
to C<ListHostedZones> that produced the current response. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head2 NextMarker => Str |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
If C<IsTruncated> is C<true>, the value of C<NextMarker> identifies the |
55
|
|
|
|
|
|
|
first hosted zone in the next group of hosted zones. Submit another |
56
|
|
|
|
|
|
|
C<ListHostedZones> request, and specify the value of C<NextMarker> from |
57
|
|
|
|
|
|
|
the response in the C<marker> parameter. |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
This element is present only if C<IsTruncated> is C<true>. |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=cut |
65
|
|
|
|
|
|
|
|