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.4/services/rekognition.ts?docs=full";

Provides the S3 bucket name and object name.

The region for the S3 bucket containing the S3 object must match the region you use for Amazon Rekognition operations.

For Amazon Rekognition to process an S3 object, the user must have permission to access the S3 object. For more information, see How Amazon Rekognition works with IAM in the Amazon Rekognition Developer Guide.

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

§Properties

§
Bucket?: string | null
[src]

Name of the S3 bucket.

§
Name?: string | null
[src]

S3 object key name.

§
Version?: string | null
[src]

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