#[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 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 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 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 get_dimension_name(&self) -> &Option<String>
pub fn get_dimension_name(&self) -> &Option<String>
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, input: DimensionValueSource) -> Self
pub fn dimension_value_source(self, input: DimensionValueSource) -> Self
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 set_dimension_value_source(
self,
input: Option<DimensionValueSource>
) -> Self
pub fn set_dimension_value_source( self, input: Option<DimensionValueSource> ) -> Self
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 get_dimension_value_source(&self) -> &Option<DimensionValueSource>
pub fn get_dimension_value_source(&self) -> &Option<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, 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 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.
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 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.
sourcepub fn get_default_dimension_value(&self) -> &Option<String>
pub fn get_default_dimension_value(&self) -> &Option<String>
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.
sourcepub fn build(self) -> Result<CloudWatchDimensionConfiguration, BuildError>
pub fn build(self) -> Result<CloudWatchDimensionConfiguration, BuildError>
Consumes the builder and constructs a CloudWatchDimensionConfiguration.
This method will fail if any of the following fields are not set:
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 for CloudWatchDimensionConfigurationBuilder
impl PartialEq 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 ==.