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

DeploymentJob

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

Information about a deployment job.

interface DeploymentJob {
arn?: string | null;
createdAt?: Date | number | null;
deploymentApplicationConfigs?: DeploymentApplicationConfig[] | null;
deploymentConfig?: DeploymentConfig | null;
failureCode?: DeploymentJobErrorCode | null;
failureReason?: string | null;
fleet?: string | null;
status?: DeploymentStatus | null;
}

§Properties

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the deployment job.

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

The time, in milliseconds since the epoch, when the deployment job was created.

§
deploymentApplicationConfigs?: DeploymentApplicationConfig[] | null
[src]

The deployment application configuration.

§
deploymentConfig?: DeploymentConfig | null
[src]

The deployment configuration.

§
failureCode?: DeploymentJobErrorCode | null
[src]

The deployment job failure code.

§
failureReason?: string | null
[src]

A short description of the reason why the deployment job failed.

§
fleet?: string | null
[src]

The Amazon Resource Name (ARN) of the fleet.

§
status?: DeploymentStatus | null
[src]

The status of the deployment job.