Skip to main content

send_quotas

Creates, updates, deletes, gets or lists a send_quotas resource.

Overview

Namesend_quotas
TypeResource
Idaws.ses.send_quotas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
max_24_hour_sendnumberThe 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_ratenumberThe 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_hoursnumberThe number of emails sent during the previous 24 hours.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_send_quotaselectregionProvides 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;