line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::SES::GetSendQuotaResponse; |
3
|
1
|
|
|
1
|
|
449
|
use Moose; |
|
1
|
|
|
1
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
|
1
|
|
|
|
|
370
|
|
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
5
|
|
4
|
|
|
|
|
|
|
has Max24HourSend => (is => 'ro', isa => 'Num'); |
5
|
|
|
|
|
|
|
has MaxSendRate => (is => 'ro', isa => 'Num'); |
6
|
|
|
|
|
|
|
has SentLast24Hours => (is => 'ro', isa => 'Num'); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
### main pod documentation begin ### |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Paws::SES::GetSendQuotaResponse |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head2 Max24HourSend => Num |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
The maximum number of emails the user is allowed to send in a 24-hour |
23
|
|
|
|
|
|
|
interval. A value of -1 signifies an unlimited quota. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 MaxSendRate => Num |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
The maximum number of emails that Amazon SES can accept from the user's |
29
|
|
|
|
|
|
|
account per second. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
The rate at which Amazon SES accepts the user's messages might be less |
32
|
|
|
|
|
|
|
than the maximum send rate. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head2 SentLast24Hours => Num |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
The number of emails sent during the previous 24 hours. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head2 _request_id => Str |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=cut |
44
|
|
|
|
|
|
|
|