Struct rusoto_ses::CloneReceiptRuleSetRequest[][src]

pub struct CloneReceiptRuleSetRequest {
    pub original_rule_set_name: String,
    pub rule_set_name: String,
}

Represents a request to create a receipt rule set by cloning an existing one. 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 clone.

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 CloneReceiptRuleSetRequest
[src]

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

impl Debug for CloneReceiptRuleSetRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CloneReceiptRuleSetRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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