line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Route53::TestDNSAnswerResponse; |
3
|
1
|
|
|
1
|
|
651
|
use Moose; |
|
1
|
|
|
|
|
6
|
|
|
1
|
|
|
|
|
13
|
|
4
|
|
|
|
|
|
|
has Nameserver => (is => 'ro', isa => 'Str', required => 1); |
5
|
|
|
|
|
|
|
has Protocol => (is => 'ro', isa => 'Str', required => 1); |
6
|
|
|
|
|
|
|
has RecordData => (is => 'ro', isa => 'ArrayRef[Str|Undef]', required => 1); |
7
|
|
|
|
|
|
|
has RecordName => (is => 'ro', isa => 'Str', required => 1); |
8
|
|
|
|
|
|
|
has RecordType => (is => 'ro', isa => 'Str', required => 1); |
9
|
|
|
|
|
|
|
has ResponseCode => (is => 'ro', isa => 'Str', 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::TestDNSAnswerResponse |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head2 B<REQUIRED> Nameserver => Str |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
The Amazon Route 53 name server used to respond to the request. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 B<REQUIRED> Protocol => Str |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
The protocol that Amazon Route 53 used to respond to the request, |
32
|
|
|
|
|
|
|
either C<UDP> or C<TCP>. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head2 B<REQUIRED> RecordData => ArrayRef[Str|Undef] |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
A list that contains values that Amazon Route 53 returned for this |
39
|
|
|
|
|
|
|
resource record set. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head2 B<REQUIRED> RecordName => Str |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
The name of the resource record set that you submitted a request for. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head2 B<REQUIRED> RecordType => Str |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
The type of the resource record set that you submitted a request for. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
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"> |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head2 B<REQUIRED> ResponseCode => Str |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
A code that indicates whether the request is valid or not. The most |
58
|
|
|
|
|
|
|
common response code is C<NOERROR>, meaning that the request is valid. |
59
|
|
|
|
|
|
|
If the response is not valid, Amazon Route 53 returns a response code |
60
|
|
|
|
|
|
|
that describes the error. For a list of possible response codes, see |
61
|
|
|
|
|
|
|
DNS RCODES on the IANA website. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=cut |
67
|
|
|
|
|
|
|
|