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

Information about the location of application artifacts stored in Amazon S3.

interface S3Location {
bucket?: string | null;
bundleType?: BundleType | null;
eTag?: string | null;
key?: string | null;
version?: string | null;
}

§Properties

§
bucket?: string | null
[src]

The name of the Amazon S3 bucket where the application revision is stored.

§
bundleType?: BundleType | null
[src]

The file type of the application revision. Must be one of the following:

  • tar: A tar archive file.
  • tgz: A compressed tar archive file.
  • zip: A zip archive file.
§
eTag?: string | null
[src]

The ETag of the Amazon S3 object that represents the bundled artifacts for the application revision.

If the ETag is not specified as an input parameter, ETag validation of the object is skipped.

§
key?: string | null
[src]

The name of the Amazon S3 object that represents the bundled artifacts for the application revision.

§
version?: string | null
[src]

A specific version of the Amazon S3 object that represents the bundled artifacts for the application revision.

If the version is not specified, the system uses the most recent version by default.