line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::SES::VerifyDomainDkimResponse; |
3
|
1
|
|
|
1
|
|
624
|
use Moose; |
|
1
|
|
|
1
|
|
3
|
|
|
1
|
|
|
|
|
11
|
|
|
1
|
|
|
|
|
395
|
|
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has DkimTokens => (is => 'ro', isa => 'ArrayRef[Str|Undef]', 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::VerifyDomainDkimResponse |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 B<REQUIRED> DkimTokens => ArrayRef[Str|Undef] |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
A set of character strings that represent the domain's identity. If the |
21
|
|
|
|
|
|
|
identity is an email address, the tokens represent the domain of that |
22
|
|
|
|
|
|
|
address. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Using these tokens, you will need to create DNS CNAME records that |
25
|
|
|
|
|
|
|
point to DKIM public keys hosted by Amazon SES. Amazon Web Services |
26
|
|
|
|
|
|
|
will eventually detect that you have updated your DNS records; this |
27
|
|
|
|
|
|
|
detection process may take up to 72 hours. Upon successful detection, |
28
|
|
|
|
|
|
|
Amazon SES will be able to DKIM-sign emails originating from that |
29
|
|
|
|
|
|
|
domain. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
For more information about creating DNS records using DKIM tokens, go |
32
|
|
|
|
|
|
|
to the Amazon SES Developer Guide. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head2 _request_id => Str |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=cut |
39
|
|
|
|
|
|
|
|