metric_datas
Creates, updates, deletes, gets or lists a metric_datas resource.
Overview
| Name | metric_datas |
| Type | Resource |
| Id | aws.sesv2.metric_datas |
Fields
The following fields are returned by SELECT queries:
- batch_get_metric_data
| Name | Datatype | Description |
|---|---|---|
errors | array | A list of MetricDataError encountered while processing your metric data batch request. |
results | array | A list of successfully retrieved MetricDataResult. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
batch_get_metric_data | select | region | Retrieves batches of metric data collected based on your sending activity. You can execute this operation no more than 16 times per second, and with at most 160 queries from the batches per second (cumulative). |
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
- batch_get_metric_data
Retrieves batches of metric data collected based on your sending activity. You can execute this operation no more than 16 times per second, and with at most 160 queries from the batches per second (cumulative).
SELECT
errors,
results
FROM aws.sesv2.metric_datas
WHERE region = '{{ region }}' -- required
;