send_quotas
Creates, updates, deletes, gets or lists a send_quotas resource.
Overview
| Name | send_quotas |
| Type | Resource |
| Id | aws.ses.send_quotas |
Fields
The following fields are returned by SELECT queries:
- get_send_quota
| Name | Datatype | Description |
|---|---|---|
max_24_hour_send | number | The maximum number of emails the user is allowed to send in a 24-hour interval. A value of -1 signifies an unlimited quota. |
max_send_rate | number | The maximum number of emails that Amazon SES can accept from the user's account per second. The rate at which Amazon SES accepts the user's messages might be less than the maximum send rate. |
sent_last_24_hours | number | The number of emails sent during the previous 24 hours. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_send_quota | select | region | Provides the sending limits for the Amazon SES account. You can execute this operation no more than once per second. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_send_quota
Provides the sending limits for the Amazon SES account. You can execute this operation no more than once per second.
SELECT
max_24_hour_send,
max_send_rate,
sent_last_24_hours
FROM aws.ses.send_quotas
WHERE region = '{{ region }}' -- required
;