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

S3Object

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

The S3 bucket name and file name that identifies the document.

The AWS Region for the S3 bucket that contains the document must match the Region that you use for Amazon Textract operations.

For Amazon Textract to process a file in an S3 bucket, the user must have permission to access the S3 bucket and file.

interface S3Object {
Bucket?: string | null;
Name?: string | null;
Version?: string | null;
}

§Properties

§
Bucket?: string | null
[src]

The name of the S3 bucket. Note that the # character is not valid in the file name.

§
Name?: string | null
[src]

The file name of the input document. Synchronous operations can use image files that are in JPEG or PNG format. Asynchronous operations also support PDF and TIFF format files.

§
Version?: string | null
[src]

If the bucket has versioning enabled, you can specify the object version.