Struct rusoto_ses::CreateReceiptRuleRequest[][src]

pub struct CreateReceiptRuleRequest {
    pub after: Option<String>,
    pub rule: ReceiptRule,
    pub rule_set_name: String,
}

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

Fields

The name of an existing rule after which the new rule will be placed. If this parameter is null, the new rule will be inserted at the beginning of the rule list.

A data structure that contains the specified rule's name, actions, recipients, domains, enabled status, scan status, and TLS policy.

The name of the rule set that the receipt rule will be added to.

Trait Implementations

impl Default for CreateReceiptRuleRequest
[src]

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

impl Debug for CreateReceiptRuleRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateReceiptRuleRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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