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

WorkMailMessageFlow

import { WorkMailMessageFlow } from "https://aws-api.deno.dev/v0.4/services/workmailmessageflow.ts?docs=full";
class WorkMailMessageFlow {
constructor(apiFactory: client.ApiFactory);
async getRawMessageContent(params: GetRawMessageContentRequest, opts?: client.RequestOptions): Promise<GetRawMessageContentResponse>;
async putRawMessageContent(params: PutRawMessageContentRequest, opts?: client.RequestOptions): Promise<void>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new WorkMailMessageFlow(apiFactory: client.ApiFactory)
[src]

§Methods

§

Retrieves the raw content of an in-transit email message, in MIME format.

§
putRawMessageContent(params: PutRawMessageContentRequest, opts?: client.RequestOptions): Promise<void>
[src]

Updates the raw content of an in-transit email message, in MIME format.

This example describes how to update in-transit email message. For more information and examples for using this API, see Updating message content with AWS Lambda.

Note: Updates to an in-transit message only appear when you call PutRawMessageContent from an AWS Lambda function configured with a synchronous Run Lambda rule. If you call PutRawMessageContent on a delivered or sent message, the message remains unchanged, even though GetRawMessageContent returns an updated message.

§Static Properties