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

RobotDeployment

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

Information about a robot deployment.

interface RobotDeployment {
arn?: string | null;
deploymentFinishTime?: Date | number | null;
deploymentStartTime?: Date | number | null;
failureCode?: DeploymentJobErrorCode | null;
failureReason?: string | null;
progressDetail?: ProgressDetail | null;
status?: RobotStatus | null;
}

§Properties

§
arn?: string | null
[src]

The robot deployment Amazon Resource Name (ARN).

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

The time, in milliseconds since the epoch, when the deployment finished.

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

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

§
failureCode?: DeploymentJobErrorCode | null
[src]

The robot deployment failure code.

§
failureReason?: string | null
[src]

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

§
progressDetail?: ProgressDetail | null
[src]

Information about how the deployment is progressing.

§
status?: RobotStatus | null
[src]

The status of the robot deployment.