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

LastDeploymentInfo

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

Information about the most recent attempted or successful deployment to a deployment group.

interface LastDeploymentInfo {
createTime?: Date | number | null;
deploymentId?: string | null;
endTime?: Date | number | null;
status?: DeploymentStatus | null;
}

§Properties

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

A timestamp that indicates when the most recent deployment to the deployment group started.

§
deploymentId?: string | null
[src]

The unique ID of a deployment.

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

A timestamp that indicates when the most recent deployment to the deployment group was complete.

§
status?: DeploymentStatus | null
[src]

The status of the most recent deployment.