line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Route53Domains::GetContactReachabilityStatusResponse; |
3
|
1
|
|
|
1
|
|
300
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has DomainName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'domainName' ); |
5
|
|
|
|
|
|
|
has Status => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'status' ); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::Route53Domains::GetContactReachabilityStatusResponse |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 DomainName => Str |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
The domain name for which you requested the reachability status. |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head2 Status => Str |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
Whether the registrant contact has responded. Values include the |
26
|
|
|
|
|
|
|
following: |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=over |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=item PENDING |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
We sent the confirmation email and haven't received a response yet. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=item DONE |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
We sent the email and got confirmation from the registrant contact. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=item EXPIRED |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
The time limit expired before the registrant contact responded. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=back |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
Valid values are: C<"PENDING">, C<"DONE">, C<"EXPIRED"> |
46
|
|
|
|
|
|
|
=head2 _request_id => Str |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=cut |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
1; |