#[non_exhaustive]pub struct CloudWatchDimensionConfiguration { /* private fields */ }Expand description
An object that defines the dimension configuration to use when you send email events to Amazon CloudWatch.
Implementations§
source§impl CloudWatchDimensionConfiguration
impl CloudWatchDimensionConfiguration
sourcepub fn dimension_name(&self) -> Option<&str>
pub fn dimension_name(&self) -> Option<&str>
The name of an Amazon CloudWatch dimension associated with an email sending metric. The name has to meet the following criteria:
-
It can only contain ASCII letters (a–z, A–Z), numbers (0–9), underscores (_), or dashes (-).
-
It can contain no more than 256 characters.
sourcepub fn dimension_value_source(&self) -> Option<&DimensionValueSource>
pub fn dimension_value_source(&self) -> Option<&DimensionValueSource>
The location where the Amazon SES API v2 finds the value of a dimension to publish to Amazon CloudWatch. To use the message tags that you specify using an X-SES-MESSAGE-TAGS header or a parameter to the SendEmail or SendRawEmail API, choose messageTag. To use your own email headers, choose emailHeader. To use link tags, choose linkTags.
sourcepub fn default_dimension_value(&self) -> Option<&str>
pub fn default_dimension_value(&self) -> Option<&str>
The default value of the dimension that is published to Amazon CloudWatch if you don't provide the value of the dimension when you send an email. This value has to meet the following criteria:
-
Can only contain ASCII letters (a–z, A–Z), numbers (0–9), underscores (_), or dashes (-), at signs (@), and periods (.).
-
It can contain no more than 256 characters.
source§impl CloudWatchDimensionConfiguration
impl CloudWatchDimensionConfiguration
sourcepub fn builder() -> CloudWatchDimensionConfigurationBuilder
pub fn builder() -> CloudWatchDimensionConfigurationBuilder
Creates a new builder-style object to manufacture CloudWatchDimensionConfiguration.
Trait Implementations§
source§impl Clone for CloudWatchDimensionConfiguration
impl Clone for CloudWatchDimensionConfiguration
source§fn clone(&self) -> CloudWatchDimensionConfiguration
fn clone(&self) -> CloudWatchDimensionConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq<CloudWatchDimensionConfiguration> for CloudWatchDimensionConfiguration
impl PartialEq<CloudWatchDimensionConfiguration> for CloudWatchDimensionConfiguration
source§fn eq(&self, other: &CloudWatchDimensionConfiguration) -> bool
fn eq(&self, other: &CloudWatchDimensionConfiguration) -> bool
self and other values to be equal, and is used
by ==.