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

Deployments

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

Represents a collection resource that contains zero or more references to your existing deployments, and links that guide you on how to interact with your collection. The collection offers a paginated view of the contained deployments.

To create a new deployment of a "RestApi", make a POST request against this resource. To view, update, or delete an existing deployment, make a GET, PATCH, or DELETE request, respectively, on a specified "Deployment" resource.

See also: Deploying an API, AWS CLI, AWS SDKs

interface Deployments {
items?: Deployment[] | null;
position?: string | null;
}

§Properties

§
items?: Deployment[] | null
[src]

The current page of elements from this collection.

§
position?: string | null
[src]