Skip to main content

metric_datas

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

Overview

Namemetric_datas
TypeResource
Idaws.sesv2.metric_datas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
errorsarrayA list of MetricDataError encountered while processing your metric data batch request.
resultsarrayA list of successfully retrieved MetricDataResult.

Methods

The following methods are available for this resource:

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

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

SELECT examples

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
;