line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::SES::MessageDsn; |
2
|
1
|
|
|
1
|
|
446
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
3
|
|
|
|
|
|
|
has ArrivalDate => (is => 'ro', isa => 'Str'); |
4
|
|
|
|
|
|
|
has ExtensionFields => (is => 'ro', isa => 'ArrayRef[Paws::SES::ExtensionField]'); |
5
|
|
|
|
|
|
|
has ReportingMta => (is => 'ro', isa => 'Str', required => 1); |
6
|
|
|
|
|
|
|
1; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
### main pod documentation begin ### |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 NAME |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Paws::SES::MessageDsn |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 USAGE |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
This class represents one of two things: |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
21
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::SES::MessageDsn object: |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { ArrivalDate => $value, ..., ReportingMta => $value }); |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head3 Results returned from an API call |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::SES::MessageDsn object: |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
32
|
|
|
|
|
|
|
$result->Att1->ArrivalDate |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 DESCRIPTION |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Message-related information to include in the Delivery Status |
37
|
|
|
|
|
|
|
Notification (DSN) when an email that Amazon SES receives on your |
38
|
|
|
|
|
|
|
behalf bounces. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
For information about receiving email through Amazon SES, see the I< |
41
|
|
|
|
|
|
|
Amazon SES Developer Guide.> |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 ArrivalDate => Str |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
When the message was received by the reporting mail transfer agent |
49
|
|
|
|
|
|
|
(MTA), in RFC 822 date-time format. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head2 ExtensionFields => ArrayRef[L<Paws::SES::ExtensionField>] |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
Additional X-headers to include in the DSN. |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 B<REQUIRED> ReportingMta => Str |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
The reporting MTA that attempted to deliver the message, formatted as |
60
|
|
|
|
|
|
|
specified in RFC 3464 (C<mta-name-type; mta-name>). The default value |
61
|
|
|
|
|
|
|
is C<dns; inbound-smtp.[region].amazonaws.com>. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=head1 SEE ALSO |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::SES> |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=cut |
76
|
|
|
|
|
|
|
|