line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Route53Domains::ResendContactReachabilityEmailResponse; |
3
|
1
|
|
|
1
|
|
603
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
11
|
|
4
|
|
|
|
|
|
|
has DomainName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'domainName' ); |
5
|
|
|
|
|
|
|
has EmailAddress => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'emailAddress' ); |
6
|
|
|
|
|
|
|
has IsAlreadyVerified => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'isAlreadyVerified' ); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::Route53Domains::ResendContactReachabilityEmailResponse |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 DomainName => Str |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
The domain name for which you requested a confirmation email. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 EmailAddress => Str |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
The email address for the registrant contact at the time that we sent |
27
|
|
|
|
|
|
|
the verification email. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head2 IsAlreadyVerified => Bool |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
C<True> if the email address for the registrant contact has already |
33
|
|
|
|
|
|
|
been verified, and C<false> otherwise. If the email address has already |
34
|
|
|
|
|
|
|
been verified, we don't send another confirmation email. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 _request_id => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=cut |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
1; |