Struct aws_sdk_sesv2::types::ExportMetric
source · #[non_exhaustive]pub struct ExportMetric {
pub name: Option<Metric>,
pub aggregation: Option<MetricAggregation>,
}Expand description
An object that contains a mapping between a Metric and MetricAggregation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<Metric>The metric to export, can be one of the following:
-
SEND- Emails sent eligible for tracking in the VDM dashboard. This excludes emails sent to the mailbox simulator and emails addressed to more than one recipient. -
COMPLAINT- Complaints received for your account. This excludes complaints from the mailbox simulator, those originating from your account-level suppression list (if enabled), and those for emails addressed to more than one recipient -
PERMANENT_BOUNCE- Permanent bounces - i.e., feedback received for emails sent to non-existent mailboxes. Excludes bounces from the mailbox simulator, those originating from your account-level suppression list (if enabled), and those for emails addressed to more than one recipient. -
TRANSIENT_BOUNCE- Transient bounces - i.e., feedback received for delivery failures excluding issues with non-existent mailboxes. Excludes bounces from the mailbox simulator, and those for emails addressed to more than one recipient. -
OPEN- Unique open events for emails including open trackers. Excludes opens for emails addressed to more than one recipient. -
CLICK- Unique click events for emails including wrapped links. Excludes clicks for emails addressed to more than one recipient. -
DELIVERY- Successful deliveries for email sending attempts. Excludes deliveries to the mailbox simulator and for emails addressed to more than one recipient. -
DELIVERY_OPEN- Successful deliveries for email sending attempts. Excludes deliveries to the mailbox simulator, for emails addressed to more than one recipient, and emails without open trackers. -
DELIVERY_CLICK- Successful deliveries for email sending attempts. Excludes deliveries to the mailbox simulator, for emails addressed to more than one recipient, and emails without click trackers. -
DELIVERY_COMPLAINT- Successful deliveries for email sending attempts. Excludes deliveries to the mailbox simulator, for emails addressed to more than one recipient, and emails addressed to recipients hosted by ISPs with which Amazon SES does not have a feedback loop agreement.
aggregation: Option<MetricAggregation>The aggregation to apply to a metric, can be one of the following:
-
VOLUME- The volume of events for this metric. -
RATE- The rate for this metric relative to theSENDmetric volume.
Implementations§
source§impl ExportMetric
impl ExportMetric
sourcepub fn name(&self) -> Option<&Metric>
pub fn name(&self) -> Option<&Metric>
The metric to export, can be one of the following:
-
SEND- Emails sent eligible for tracking in the VDM dashboard. This excludes emails sent to the mailbox simulator and emails addressed to more than one recipient. -
COMPLAINT- Complaints received for your account. This excludes complaints from the mailbox simulator, those originating from your account-level suppression list (if enabled), and those for emails addressed to more than one recipient -
PERMANENT_BOUNCE- Permanent bounces - i.e., feedback received for emails sent to non-existent mailboxes. Excludes bounces from the mailbox simulator, those originating from your account-level suppression list (if enabled), and those for emails addressed to more than one recipient. -
TRANSIENT_BOUNCE- Transient bounces - i.e., feedback received for delivery failures excluding issues with non-existent mailboxes. Excludes bounces from the mailbox simulator, and those for emails addressed to more than one recipient. -
OPEN- Unique open events for emails including open trackers. Excludes opens for emails addressed to more than one recipient. -
CLICK- Unique click events for emails including wrapped links. Excludes clicks for emails addressed to more than one recipient. -
DELIVERY- Successful deliveries for email sending attempts. Excludes deliveries to the mailbox simulator and for emails addressed to more than one recipient. -
DELIVERY_OPEN- Successful deliveries for email sending attempts. Excludes deliveries to the mailbox simulator, for emails addressed to more than one recipient, and emails without open trackers. -
DELIVERY_CLICK- Successful deliveries for email sending attempts. Excludes deliveries to the mailbox simulator, for emails addressed to more than one recipient, and emails without click trackers. -
DELIVERY_COMPLAINT- Successful deliveries for email sending attempts. Excludes deliveries to the mailbox simulator, for emails addressed to more than one recipient, and emails addressed to recipients hosted by ISPs with which Amazon SES does not have a feedback loop agreement.
sourcepub fn aggregation(&self) -> Option<&MetricAggregation>
pub fn aggregation(&self) -> Option<&MetricAggregation>
The aggregation to apply to a metric, can be one of the following:
-
VOLUME- The volume of events for this metric. -
RATE- The rate for this metric relative to theSENDmetric volume.
source§impl ExportMetric
impl ExportMetric
sourcepub fn builder() -> ExportMetricBuilder
pub fn builder() -> ExportMetricBuilder
Creates a new builder-style object to manufacture ExportMetric.
Trait Implementations§
source§impl Clone for ExportMetric
impl Clone for ExportMetric
source§fn clone(&self) -> ExportMetric
fn clone(&self) -> ExportMetric
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ExportMetric
impl Debug for ExportMetric
source§impl PartialEq for ExportMetric
impl PartialEq for ExportMetric
source§fn eq(&self, other: &ExportMetric) -> bool
fn eq(&self, other: &ExportMetric) -> bool
self and other values to be equal, and is used
by ==.