| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Paws::Route53Domains::DomainSuggestion; |
|
2
|
1
|
|
|
1
|
|
391
|
use Moose; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
6
|
|
|
3
|
|
|
|
|
|
|
has Availability => (is => 'ro', isa => 'Str'); |
|
4
|
|
|
|
|
|
|
has DomainName => (is => 'ro', isa => 'Str'); |
|
5
|
|
|
|
|
|
|
1; |
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
### main pod documentation begin ### |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 NAME |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
Paws::Route53Domains::DomainSuggestion |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 USAGE |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
This class represents one of two things: |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
|
20
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::Route53Domains::DomainSuggestion object: |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { Availability => $value, ..., DomainName => $value }); |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head3 Results returned from an API call |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::Route53Domains::DomainSuggestion object: |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
|
31
|
|
|
|
|
|
|
$result->Att1->Availability |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Information about one suggested domain name. |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head2 Availability => Str |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Whether the domain name is available for registering. |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
You can register only the domains that are designated as C<AVAILABLE>. |
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
Valid values: |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=over |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=item AVAILABLE |
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
The domain name is available. |
|
53
|
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=item AVAILABLE_RESERVED |
|
55
|
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
The domain name is reserved under specific conditions. |
|
57
|
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=item AVAILABLE_PREORDER |
|
59
|
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
The domain name is available and can be preordered. |
|
61
|
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=item DONT_KNOW |
|
63
|
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
The TLD registry didn't reply with a definitive answer about whether |
|
65
|
|
|
|
|
|
|
the domain name is available. Amazon Route 53 can return this response |
|
66
|
|
|
|
|
|
|
for a variety of reasons, for example, the registry is performing |
|
67
|
|
|
|
|
|
|
maintenance. Try again later. |
|
68
|
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=item PENDING |
|
70
|
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
The TLD registry didn't return a response in the expected amount of |
|
72
|
|
|
|
|
|
|
time. When the response is delayed, it usually takes just a few extra |
|
73
|
|
|
|
|
|
|
seconds. You can resubmit the request immediately. |
|
74
|
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=item RESERVED |
|
76
|
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
The domain name has been reserved for another person or organization. |
|
78
|
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=item UNAVAILABLE |
|
80
|
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
The domain name is not available. |
|
82
|
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
=item UNAVAILABLE_PREMIUM |
|
84
|
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
The domain name is not available. |
|
86
|
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=item UNAVAILABLE_RESTRICTED |
|
88
|
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
The domain name is forbidden. |
|
90
|
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
=back |
|
92
|
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
=head2 DomainName => Str |
|
96
|
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
A suggested domain name. |
|
98
|
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
=head1 SEE ALSO |
|
102
|
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::Route53Domains> |
|
104
|
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
|
106
|
|
|
|
|
|
|
|
|
107
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
|
108
|
|
|
|
|
|
|
|
|
109
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
|
110
|
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
=cut |
|
112
|
|
|
|
|
|
|
|