line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Route53::ListResourceRecordSetsResponse; |
3
|
1
|
|
|
1
|
|
489
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has IsTruncated => (is => 'ro', isa => 'Bool', required => 1); |
5
|
|
|
|
|
|
|
has MaxItems => (is => 'ro', isa => 'Str', required => 1); |
6
|
|
|
|
|
|
|
has NextRecordIdentifier => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has NextRecordName => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has NextRecordType => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
has ResourceRecordSets => (is => 'ro', isa => 'ArrayRef[Paws::Route53::ResourceRecordSet]', required => 1); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
12
|
|
|
|
|
|
|
1; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
### main pod documentation begin ### |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 NAME |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
Paws::Route53::ListResourceRecordSetsResponse |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head2 B<REQUIRED> IsTruncated => Bool |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
A flag that indicates whether more resource record sets remain to be |
26
|
|
|
|
|
|
|
listed. If your results were truncated, you can make a follow-up |
27
|
|
|
|
|
|
|
pagination request by using the C<NextRecordName> element. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 B<REQUIRED> MaxItems => Str |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
The maximum number of records you requested. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 NextRecordIdentifier => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
I<Weighted, latency, geolocation, and failover resource record sets |
40
|
|
|
|
|
|
|
only>: If results were truncated for a given DNS name and type, the |
41
|
|
|
|
|
|
|
value of C<SetIdentifier> for the next resource record set that has the |
42
|
|
|
|
|
|
|
current DNS name and type. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 NextRecordName => Str |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
If the results were truncated, the name of the next record in the list. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
This element is present only if C<IsTruncated> is true. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head2 NextRecordType => Str |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
If the results were truncated, the type of the next record in the list. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
This element is present only if C<IsTruncated> is true. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
Valid values are: C<"SOA">, C<"A">, C<"TXT">, C<"NS">, C<"CNAME">, C<"MX">, C<"NAPTR">, C<"PTR">, C<"SRV">, C<"SPF">, C<"AAAA">, C<"CAA"> |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head2 B<REQUIRED> ResourceRecordSets => ArrayRef[L<Paws::Route53::ResourceRecordSet>] |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
Information about multiple resource record sets. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=cut |
70
|
|
|
|
|
|
|
|