line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::SES::ListReceiptRuleSetsResponse; |
3
|
1
|
|
|
1
|
|
415
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has RuleSets => (is => 'ro', isa => 'ArrayRef[Paws::SES::ReceiptRuleSetMetadata]'); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
1; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::SES::ListReceiptRuleSetsResponse |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 NextToken => Str |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
A token indicating that there are additional receipt rule sets |
22
|
|
|
|
|
|
|
available to be listed. Pass this token to successive calls of |
23
|
|
|
|
|
|
|
C<ListReceiptRuleSets> to retrieve up to 100 receipt rule sets at a |
24
|
|
|
|
|
|
|
time. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 RuleSets => ArrayRef[L<Paws::SES::ReceiptRuleSetMetadata>] |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
The metadata for the currently active receipt rule set. The metadata |
30
|
|
|
|
|
|
|
consists of the rule set name and the timestamp of when the rule set |
31
|
|
|
|
|
|
|
was created. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 _request_id => Str |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=cut |
38
|
|
|
|
|
|
|
|