Struct rusoto_ses::CreateReceiptRuleSetRequest[][src]

pub struct CreateReceiptRuleSetRequest {
    pub rule_set_name: String,
}

Represents a request to create an empty receipt rule set. You use receipt rule sets to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide.

Fields

The name of the rule set to create. The name must:

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

  • Start and end with a letter or number.

  • Contain less than 64 characters.

Trait Implementations

impl Default for CreateReceiptRuleSetRequest
[src]

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

impl Debug for CreateReceiptRuleSetRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateReceiptRuleSetRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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