send_statistics
Creates, updates, deletes, gets or lists a send_statistics resource.
Overview
| Name | send_statistics |
| Type | Resource |
| Id | aws.ses.send_statistics |
Fields
The following fields are returned by SELECT queries:
- get_send_statistics
| Name | Datatype | Description |
|---|---|---|
send_data_points | string | A list of data points, each of which represents 15 minutes of activity. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_send_statistics | select | region | 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. |
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_statistics
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
;