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

Information about an application version deployment.

interface Deployment {
DeploymentId?: number | null;
DeploymentTime?: Date | number | null;
Status?: string | null;
VersionLabel?: string | null;
}

§Properties

§
DeploymentId?: number | null
[src]

The ID of the deployment. This number increases by one each time that you deploy source code or change instance configuration settings.

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

For in-progress deployments, the time that the deployment started.

For completed deployments, the time that the deployment ended.

§
Status?: string | null
[src]

The status of the deployment:

  • In Progress : The deployment is in progress.
  • Deployed : The deployment succeeded.
  • Failed : The deployment failed.
§
VersionLabel?: string | null
[src]

The version label of the application version in the deployment.