File Coverage

blib/lib/Paws/SES/ListReceiptRuleSetsResponse.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::SES::ListReceiptRuleSetsResponse;
3 1     1   439 use Moose;
  1         3  
  1         10  
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