Struct rusoto_ses::TrackingOptions[][src]

pub struct TrackingOptions {
    pub custom_redirect_domain: Option<String>,
}

A domain that is used to redirect email recipients to an Amazon SES-operated domain. This domain captures open and click events generated by Amazon SES emails.

For more information, see Configuring Custom Domains to Handle Open and Click Tracking in the Amazon SES Developer Guide.

Fields

The custom subdomain that will be used to redirect email recipients to the Amazon SES event tracking domain.

Trait Implementations

impl Default for TrackingOptions
[src]

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

impl Debug for TrackingOptions
[src]

Formats the value using the given formatter. Read more

impl Clone for TrackingOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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