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

S3Reference

import type { S3Reference } from "https://aws-api.deno.dev/v0.4/services/workmailmessageflow.ts?docs=full";

Amazon S3 object representing the updated message content, in MIME format.

Note: The region for the S3 bucket containing the S3 object must match the region used for WorkMail operations. Also, for WorkMail to process an S3 object, it must have permission to access that object. For more information, see Updating message content with AWS Lambda.

interface S3Reference {
bucket: string;
key: string;
objectVersion?: string | null;
}

§Properties

§
bucket: string
[src]

The S3 bucket name.

§
key: string
[src]

The S3 key object name.

§
objectVersion?: string | null
[src]

If you enable versioning for the bucket, you can specify the object version.