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

Contains information about the location in Amazon S3 where the select job results are stored.

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

§Properties

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

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

§
BucketName?: string | null
[src]

The name of the Amazon S3 bucket where the job results are stored.

§
CannedACL?: CannedACL | null
[src]

The canned access control list (ACL) to apply to the job results.

§
Encryption?: Encryption | null
[src]

Contains information about the encryption used to store the job results in Amazon S3.

§
Prefix?: string | null
[src]

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

§
StorageClass?: StorageClass | null
[src]

The storage class used to store the job results.

§
Tagging?: {
[key: string]: string | null | undefined;
}
| null
[src]

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

§
UserMetadata?: {
[key: string]: string | null | undefined;
}
| null
[src]

A map of metadata to store with the job results in Amazon S3.