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

Information about an S3 object.

interface S3Object {
bucket: string;
etag?: string | null;
key: string;
}

§Properties

§
bucket: string
[src]

The bucket containing the object.

§
etag?: string | null
[src]

The etag of the object.

§
key: string
[src]

The key of the object.