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.3/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.

To create a deployment, call POST on the "Deployments" resource of a "RestApi". To view, update, or delete a deployment, call GET, PATCH, or DELETE on the specified deployment resource (/restapis/{restapi_id}/deployments/{deployment_id}).

See also: "RestApi", "Deployments", "Stage", AWS CLI, AWS SDKs

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.