Struct rusoto_ses::ConfigurationSet[][src]

pub struct ConfigurationSet {
    pub name: String,
}

The name of the configuration set.

Configuration sets let you create groups of rules that you can apply to the emails you send using Amazon SES. For more information about using configuration sets, see Using Amazon SES Configuration Sets in the Amazon SES Developer Guide.

Fields

The name of the configuration set. The name must meet the following requirements:

  • Contain only letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).

  • Contain 64 characters or fewer.

Trait Implementations

impl Default for ConfigurationSet
[src]

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

impl Debug for ConfigurationSet
[src]

Formats the value using the given formatter. Read more

impl Clone for ConfigurationSet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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