line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::SES::VerifyDomainIdentityResponse; |
3
|
1
|
|
|
1
|
|
343
|
use Moose; |
|
1
|
|
|
1
|
|
4
|
|
|
1
|
|
|
|
|
6
|
|
|
1
|
|
|
|
|
255
|
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
4
|
|
|
|
|
|
|
has VerificationToken => (is => 'ro', isa => 'Str', required => 1); |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
1; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::SES::VerifyDomainIdentityResponse |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 B<REQUIRED> VerificationToken => Str |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
A TXT record that you must place in the DNS settings of the domain to |
21
|
|
|
|
|
|
|
complete domain verification with Amazon SES. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
As Amazon SES searches for the TXT record, the domain's verification |
24
|
|
|
|
|
|
|
status is "Pending". When Amazon SES detects the record, the domain's |
25
|
|
|
|
|
|
|
verification status changes to "Success". If Amazon SES is unable to |
26
|
|
|
|
|
|
|
detect the record within 72 hours, the domain's verification status |
27
|
|
|
|
|
|
|
changes to "Failed." In that case, if you still want to verify the |
28
|
|
|
|
|
|
|
domain, you must restart the verification process from the beginning. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 _request_id => Str |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=cut |
35
|
|
|
|
|
|
|
|