Skip to main content

ISESV2MetricDataResult

Interface in AWS.SESV2

Interface for SESV2 MetricDataResult.

Properties

Id

property Id: string

The query identifier that corresponds to the successful metric data query.

This identifier matches the Id value specified in the original BatchGetMetricDataQuery that was successfully processed. Use this value to correlate the result with the specific query in your request.

Timestamps

property Timestamps: TList<TDateTime>

A list of timestamps for the metric data points.

Each timestamp corresponds to a data point in the metric time series and represents when the metric value was recorded. The timestamps are ordered chronologically and have a one-to-one correspondence with the Values array, where Timestamps[i] is the time for Values[i]. Timestamps are typically aligned to standard intervals based on the aggregation period used by the VDM system.

Values

property Values: TList<Double>

A list of metric values corresponding to the timestamps.

Each value represents the aggregated metric data for the corresponding timestamp. The values are cumulative counts or sums depending on the metric type (e.g., total sends, total deliveries, total opens). The values array has a one-to-one correspondence with the Timestamps array, where Values[i] is the metric value recorded at Timestamps[i]. Both arrays will always have the same length.