Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ReceiptAction

import type { ReceiptAction } from "https://aws-api.deno.dev/v0.3/services/ses.ts?docs=full";

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.

interface ReceiptAction {
AddHeaderAction?: AddHeaderAction | null;
BounceAction?: BounceAction | null;
LambdaAction?: LambdaAction | null;
S3Action?: S3Action | null;
SNSAction?: SNSAction | null;
StopAction?: StopAction | null;
WorkmailAction?: WorkmailAction | null;
}

§Properties

§
AddHeaderAction?: AddHeaderAction | null
[src]

Adds a header to the received email.

§
BounceAction?: BounceAction | null
[src]

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

§
LambdaAction?: LambdaAction | null
[src]

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

§
S3Action?: S3Action | null
[src]

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

§
SNSAction?: SNSAction | null
[src]

Publishes the email content within a notification to Amazon SNS.

§
StopAction?: StopAction | null
[src]

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

§
WorkmailAction?: WorkmailAction | null
[src]

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