Struct rusoto_ses::AddHeaderAction [] [src]

pub struct AddHeaderAction {
    pub header_name: String,
    pub header_value: String,
}

When included in a receipt rule, this action adds a header to the received email.

For information about adding a header using a receipt rule, see the Amazon SES Developer Guide.

Fields

The name of the header to add. Must be between 1 and 50 characters, inclusive, and consist of alphanumeric (a-z, A-Z, 0-9) characters and dashes only.

Must be less than 2048 characters, and must not contain newline characters ("\r" or "\n").

Trait Implementations

impl Default for AddHeaderAction
[src]

[src]

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

impl Debug for AddHeaderAction
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for AddHeaderAction
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations