Struct rusoto_ses::ReceiptAction[][src]

pub struct ReceiptAction {
    pub add_header_action: Option<AddHeaderAction>,
    pub bounce_action: Option<BounceAction>,
    pub lambda_action: Option<LambdaAction>,
    pub s3_action: Option<S3Action>,
    pub sns_action: Option<SNSAction>,
    pub stop_action: Option<StopAction>,
    pub workmail_action: Option<WorkmailAction>,
}

An action that Amazon SES can take when it receives an email on behalf of one or more email addresses or domains that you own. An instance of this data type can represent only one action.

For information about setting up receipt rules, see the Amazon SES Developer Guide.

Fields

Adds a header to the received email.

Rejects the received email by returning a bounce response to the sender and, optionally, publishes a notification to Amazon Simple Notification Service (Amazon SNS).

Calls an AWS Lambda function, and optionally, publishes a notification to Amazon SNS.

Saves the received message to an Amazon Simple Storage Service (Amazon S3) bucket and, optionally, publishes a notification to Amazon SNS.

Publishes the email content within a notification to Amazon SNS.

Terminates the evaluation of the receipt rule set and optionally publishes a notification to Amazon SNS.

Calls Amazon WorkMail and, optionally, publishes a notification to Amazon SNS.

Trait Implementations

impl Default for ReceiptAction
[src]

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

impl Debug for ReceiptAction
[src]

Formats the value using the given formatter. Read more

impl Clone for ReceiptAction
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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