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

Bucket

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

In terms of implementation, a Bucket is a resource. An Amazon S3 bucket name is globally unique, and the namespace is shared by all Amazon Web Services accounts.

interface Bucket {
CreationDate?: Date | number | null;
Name?: string | null;
}

§Properties

§
CreationDate?: Date | number | null
[src]

Date the bucket was created. This date can change when making changes to your bucket, such as editing its bucket policy.

§
Name?: string | null
[src]

The name of the bucket.