Struct rusoto_ses::BulkEmailDestination[][src]

pub struct BulkEmailDestination {
    pub destination: Destination,
    pub replacement_tags: Option<Vec<MessageTag>>,
    pub replacement_template_data: Option<String>,
}

An array that contains one or more Destinations, as well as the tags and replacement data associated with each of those Destinations.

Fields

A list of tags, in the form of name/value pairs, to apply to an email that you send using SendBulkTemplatedEmail. Tags correspond to characteristics of the email that you define, so that you can publish email sending events.

A list of replacement values to apply to the template. This parameter is a JSON object, typically consisting of key-value pairs in which the keys correspond to replacement tags in the email template.

Trait Implementations

impl Default for BulkEmailDestination
[src]

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

impl Debug for BulkEmailDestination
[src]

Formats the value using the given formatter. Read more

impl Clone for BulkEmailDestination
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for BulkEmailDestination
[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