Skip to main content

send_statistics

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

Overview

Namesend_statistics
TypeResource
Idaws.ses.send_statistics

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
send_data_pointsstringA list of data points, each of which represents 15 minutes of activity.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_send_statisticsselectregionProvides sending statistics for the current Amazon Web Services Region. The result is a list of data points, representing the last two weeks of sending activity. Each data point in the list contains statistics for a 15-minute period of time. 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 sending statistics for the current Amazon Web Services Region. The result is a list of data points, representing the last two weeks of sending activity. Each data point in the list contains statistics for a 15-minute period of time. You can execute this operation no more than once per second.

SELECT
send_data_points
FROM aws.ses.send_statistics
WHERE region = '{{ region }}' -- required
;