#[non_exhaustive]pub struct CloudWatchDimensionConfiguration {
pub dimension_name: String,
pub dimension_value_source: DimensionValueSource,
pub default_dimension_value: String,
}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.
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.dimension_name: StringThe name of an Amazon CloudWatch dimension associated with an email sending metric. The name must meet the following requirements:
-
Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), dashes (-), or colons (:).
-
Contain 256 characters or fewer.
dimension_value_source: DimensionValueSourceThe place where Amazon SES 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/SendRawEmail API, specify messageTag. To use your own email headers, specify emailHeader. To put a custom tag on any link included in your email, specify linkTag.
default_dimension_value: StringThe 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 meet the following requirements:
-
Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), dashes (-), at signs (@), or periods (.).
-
Contain 256 characters or fewer.
Implementations§
source§impl CloudWatchDimensionConfiguration
impl CloudWatchDimensionConfiguration
sourcepub fn dimension_name(&self) -> &str
pub fn dimension_name(&self) -> &str
The name of an Amazon CloudWatch dimension associated with an email sending metric. The name must meet the following requirements:
-
Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), dashes (-), or colons (:).
-
Contain 256 characters or fewer.
sourcepub fn dimension_value_source(&self) -> &DimensionValueSource
pub fn dimension_value_source(&self) -> &DimensionValueSource
The place where Amazon SES 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/SendRawEmail API, specify messageTag. To use your own email headers, specify emailHeader. To put a custom tag on any link included in your email, specify linkTag.
sourcepub fn default_dimension_value(&self) -> &str
pub fn default_dimension_value(&self) -> &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 meet the following requirements:
-
Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), dashes (-), at signs (@), or periods (.).
-
Contain 256 characters or fewer.
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 for CloudWatchDimensionConfiguration
impl PartialEq 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 ==.