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

Contains information about a deployment.

interface Deployment {
creationTimestamp?: Date | number | null;
deploymentId?: string | null;
deploymentName?: string | null;
deploymentStatus?: DeploymentStatus | null;
isLatestForTarget?: boolean | null;
revisionId?: string | null;
targetArn?: string | null;
}

§Properties

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

The time at which the deployment was created, expressed in ISO 8601 format.

§
deploymentId?: string | null
[src]

The ID of the deployment.

§
deploymentName?: string | null
[src]

The name of the deployment.

§
deploymentStatus?: DeploymentStatus | null
[src]

The status of the deployment.

§
isLatestForTarget?: boolean | null
[src]

Whether or not the deployment is the latest revision for its target.

§
revisionId?: string | null
[src]

The revision number of the deployment.

§
targetArn?: string | null
[src]

The ARN of the target IoT thing or thing group.