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 to which to add the rule.

Trait Implementations

impl Default for CreateReceiptRuleRequest
[src]

[src]

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

impl Debug for CreateReceiptRuleRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateReceiptRuleRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations