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

S3Location

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

The bucket and key of an item stored in Amazon S3.

interface S3Location {
S3Bucket?: string | null;
S3Key?: string | null;
}

§Properties

§
S3Bucket?: string | null
[src]

The Amazon S3 bucket where the data is located.

§
S3Key?: string | null
[src]

The Amazon S3 key where the data is located.