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

ProgressDetail

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

Information about the progress of a deployment job.

interface ProgressDetail {
currentProgress?: RobotDeploymentStep | null;
estimatedTimeRemainingSeconds?: number | null;
percentDone?: number | null;
targetResource?: string | null;
}

§Properties

§
currentProgress?: RobotDeploymentStep | null
[src]

The current progress status.

Validating: Validating the deployment.

DownloadingExtracting: Downloading and extracting the bundle on the robot.

ExecutingPreLaunch: Executing pre-launch script(s) if provided.

Launching: Launching the robot application.

ExecutingPostLaunch: Executing post-launch script(s) if provided.

Finished: Deployment is complete.

§
estimatedTimeRemainingSeconds?: number | null
[src]

Estimated amount of time in seconds remaining in the step. This currently only applies to the Downloading/Extracting step of the deployment. It is empty for other steps.

§
percentDone?: number | null
[src]

Precentage of the step that is done. This currently only applies to the Downloading/Extracting step of the deployment. It is empty for other steps.

§
targetResource?: string | null
[src]

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