[][src]Struct rusoto_sesv2::CloudWatchDimensionConfiguration

pub struct CloudWatchDimensionConfiguration {
    pub default_dimension_value: String,
    pub dimension_name: String,
    pub dimension_value_source: String,
}

An object that defines the dimension configuration to use when you send email events to Amazon CloudWatch.

Fields

default_dimension_value: String

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:

  • It can only contain ASCII letters (a–z, A–Z), numbers (0–9), underscores (_), or dashes (-).

  • It can contain no more than 256 characters.

dimension_name: String

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.

dimension_value_source: String

The location where the Amazon SES API v2 finds the value of a dimension to publish to Amazon CloudWatch. If you want 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. If you want to use your own email headers, choose emailHeader. If you want to use link tags, choose linkTags.

Trait Implementations

impl Clone for CloudWatchDimensionConfiguration[src]

impl Debug for CloudWatchDimensionConfiguration[src]

impl Default for CloudWatchDimensionConfiguration[src]

impl<'de> Deserialize<'de> for CloudWatchDimensionConfiguration[src]

impl PartialEq<CloudWatchDimensionConfiguration> for CloudWatchDimensionConfiguration[src]

impl Serialize for CloudWatchDimensionConfiguration[src]

impl StructuralPartialEq for CloudWatchDimensionConfiguration[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.