Module: AWS::SES::Info
- Included in:
- Base
- Defined in:
- lib/aws/ses/info.rb
Overview
Adds functionality for the statistics and info functionality
You can call ‘quota’ or ‘statistics’
Instance Method Summary collapse
-
#quota ⇒ Object
Returns quota information provided by SES.
- #statistics ⇒ Object
Instance Method Details
#quota ⇒ Object
Returns quota information provided by SES
The return format inside the response result will look like:
{"SentLast24Hours"=>"0.0", "MaxSendRate"=>"1.0", "Max24HourSend"=>"200.0"}
11 12 13 |
# File 'lib/aws/ses/info.rb', line 11 def quota request('GetSendQuota') end |
#statistics ⇒ Object
15 16 17 |
# File 'lib/aws/ses/info.rb', line 15 def statistics request('GetSendStatistics') end |