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

Describes an Amazon S3 location that will receive the results of the restore request.

interface S3Location {
AccessControlList?: Grant[] | null;
BucketName: string;
CannedACL?: ObjectCannedACL | null;
Encryption?: Encryption | null;
Prefix: string;
StorageClass?: StorageClass | null;
Tagging?: Tagging | null;
UserMetadata?: MetadataEntry[] | null;
}

§Properties

§
AccessControlList?: Grant[] | null
[src]

A list of grants that control access to the staged results.

§
BucketName: string
[src]

The name of the bucket where the restore results will be placed.

§
CannedACL?: ObjectCannedACL | null
[src]

The canned ACL to apply to the restore results.

§
Encryption?: Encryption | null
[src]
§
Prefix: string
[src]

The prefix that is prepended to the restore results for this request.

§
StorageClass?: StorageClass | null
[src]

The class of storage used to store the restore results.

§
Tagging?: Tagging | null
[src]

The tag-set that is applied to the restore results.

§
UserMetadata?: MetadataEntry[] | null
[src]

A list of metadata to store with the restore results in S3.