line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Route53::ListHostedZonesByNameResponse; |
3
|
1
|
|
|
1
|
|
452
|
use Moose; |
|
1
|
|
|
1
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
|
1
|
|
|
|
|
342
|
|
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has DNSName => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has HostedZoneId => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has HostedZones => (is => 'ro', isa => 'ArrayRef[Paws::Route53::HostedZone]', required => 1); |
7
|
|
|
|
|
|
|
has IsTruncated => (is => 'ro', isa => 'Bool', required => 1); |
8
|
|
|
|
|
|
|
has MaxItems => (is => 'ro', isa => 'Str', required => 1); |
9
|
|
|
|
|
|
|
has NextDNSName => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
has NextHostedZoneId => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
13
|
|
|
|
|
|
|
1; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
### main pod documentation begin ### |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 NAME |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Paws::Route53::ListHostedZonesByNameResponse |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 DNSName => Str |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
For the second and subsequent calls to C<ListHostedZonesByName>, |
27
|
|
|
|
|
|
|
C<DNSName> is the value that you specified for the C<dnsname> parameter |
28
|
|
|
|
|
|
|
in the request that produced the current response. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 HostedZoneId => Str |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
The ID that Amazon Route 53 assigned to the hosted zone when you |
35
|
|
|
|
|
|
|
created it. |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head2 B<REQUIRED> HostedZones => ArrayRef[L<Paws::Route53::HostedZone>] |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
A complex type that contains general information about the hosted zone. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head2 B<REQUIRED> IsTruncated => Bool |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
A flag that indicates whether there are more hosted zones to be listed. |
48
|
|
|
|
|
|
|
If the response was truncated, you can get the next group of |
49
|
|
|
|
|
|
|
C<maxitems> hosted zones by calling C<ListHostedZonesByName> again and |
50
|
|
|
|
|
|
|
specifying the values of C<NextDNSName> and C<NextHostedZoneId> |
51
|
|
|
|
|
|
|
elements in the C<dnsname> and C<hostedzoneid> parameters. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head2 B<REQUIRED> MaxItems => Str |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
The value that you specified for the C<maxitems> parameter in the call |
58
|
|
|
|
|
|
|
to C<ListHostedZonesByName> that produced the current response. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head2 NextDNSName => Str |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
If C<IsTruncated> is true, the value of C<NextDNSName> is the name of |
65
|
|
|
|
|
|
|
the first hosted zone in the next group of C<maxitems> hosted zones. |
66
|
|
|
|
|
|
|
Call C<ListHostedZonesByName> again and specify the value of |
67
|
|
|
|
|
|
|
C<NextDNSName> and C<NextHostedZoneId> in the C<dnsname> and |
68
|
|
|
|
|
|
|
C<hostedzoneid> parameters, respectively. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
This element is present only if C<IsTruncated> is C<true>. |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
=head2 NextHostedZoneId => Str |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
If C<IsTruncated> is C<true>, the value of C<NextHostedZoneId> |
77
|
|
|
|
|
|
|
identifies the first hosted zone in the next group of C<maxitems> |
78
|
|
|
|
|
|
|
hosted zones. Call C<ListHostedZonesByName> again and specify the value |
79
|
|
|
|
|
|
|
of C<NextDNSName> and C<NextHostedZoneId> in the C<dnsname> and |
80
|
|
|
|
|
|
|
C<hostedzoneid> parameters, respectively. |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
This element is present only if C<IsTruncated> is C<true>. |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=cut |
88
|
|
|
|
|
|
|
|