#[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:
-
This value can only contain ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).
-
Contain less 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 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, 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. 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 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. 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, 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:
-
This value can only contain ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).
-
Contain less 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 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.
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 ==.