#[non_exhaustive]pub struct CloudWatchDimensionConfigurationBuilder { /* private fields */ }Expand description
A builder for CloudWatchDimensionConfiguration.
Implementations§
source§impl CloudWatchDimensionConfigurationBuilder
impl CloudWatchDimensionConfigurationBuilder
sourcepub fn dimension_name(self, input: impl Into<String>) -> Self
pub fn dimension_name(self, input: impl Into<String>) -> Self
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 set_dimension_name(self, input: Option<String>) -> Self
pub fn set_dimension_name(self, input: Option<String>) -> Self
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, input: DimensionValueSource) -> Self
pub fn dimension_value_source(self, input: DimensionValueSource) -> Self
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 set_dimension_value_source(
self,
input: Option<DimensionValueSource>
) -> Self
pub fn set_dimension_value_source( self, input: Option<DimensionValueSource> ) -> Self
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, input: impl Into<String>) -> Self
pub fn default_dimension_value(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_default_dimension_value(self, input: Option<String>) -> Self
pub fn set_default_dimension_value(self, input: Option<String>) -> Self
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.
sourcepub fn build(self) -> CloudWatchDimensionConfiguration
pub fn build(self) -> CloudWatchDimensionConfiguration
Consumes the builder and constructs a CloudWatchDimensionConfiguration.
Trait Implementations§
source§impl Clone for CloudWatchDimensionConfigurationBuilder
impl Clone for CloudWatchDimensionConfigurationBuilder
source§fn clone(&self) -> CloudWatchDimensionConfigurationBuilder
fn clone(&self) -> CloudWatchDimensionConfigurationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for CloudWatchDimensionConfigurationBuilder
impl Default for CloudWatchDimensionConfigurationBuilder
source§fn default() -> CloudWatchDimensionConfigurationBuilder
fn default() -> CloudWatchDimensionConfigurationBuilder
source§impl PartialEq<CloudWatchDimensionConfigurationBuilder> for CloudWatchDimensionConfigurationBuilder
impl PartialEq<CloudWatchDimensionConfigurationBuilder> for CloudWatchDimensionConfigurationBuilder
source§fn eq(&self, other: &CloudWatchDimensionConfigurationBuilder) -> bool
fn eq(&self, other: &CloudWatchDimensionConfigurationBuilder) -> bool
self and other values to be equal, and is used
by ==.