Struct rusoto_ses::MessageTag[][src]

pub struct MessageTag {
    pub name: String,
    pub value: String,
}

Contains the name and value of a tag that you can provide to SendEmail or SendRawEmail to apply to an email.

Message tags, which you use with configuration sets, enable you to publish email sending events. For information about using configuration sets, see the Amazon SES Developer Guide.

Fields

The name of the tag. 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.

The value of the tag. The value must:

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

  • Contain less than 256 characters.

Trait Implementations

impl Default for MessageTag
[src]

Returns the "default value" for a type. Read more

impl Debug for MessageTag
[src]

Formats the value using the given formatter. Read more

impl Clone for MessageTag
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for MessageTag
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for MessageTag

impl Sync for MessageTag