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

Deployment

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

An immutable representation of a RestApi resource that can be called by users using Stages. A deployment must be associated with a Stage for it to be callable over the Internet.

interface Deployment {
apiSummary?: {
[key: string]: {
[key: string]: MethodSnapshot | null | undefined;
}
| null | undefined
;
}
| null;
createdDate?: Date | number | null;
description?: string | null;
id?: string | null;
}

§Properties

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

A summary of the RestApi at the date and time that the deployment resource was created.

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

The date and time that the deployment resource was created.

§
description?: string | null
[src]

The description for the deployment resource.

§
id?: string | null
[src]

The identifier for the deployment resource.