#[non_exhaustive]pub struct CloudWatchDimensionConfiguration { /* private fields */ }Expand description
Contains the dimension configuration to use when you publish email sending events to Amazon CloudWatch.
For information about publishing email sending events to Amazon CloudWatch, see the Amazon SES Developer Guide.
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 must:
-
This value can only contain ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).
-
Contain less than 256 characters.
sourcepub fn dimension_value_source(&self) -> Option<&DimensionValueSource>
pub fn dimension_value_source(&self) -> Option<&DimensionValueSource>
The place where Amazon SES finds the value of a dimension to publish to Amazon CloudWatch. If you want Amazon SES to use the message tags that you specify using an X-SES-MESSAGE-TAGS header or a parameter to the SendEmail/SendRawEmail API, choose messageTag. If you want Amazon SES to use your own email headers, choose emailHeader.
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 do not provide the value of the dimension when you send an email. The default value must:
-
This value can only contain ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).
-
Contain less 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 ==.