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

EdgeDeploymentStatus

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

Contains information summarizing the deployment stage results.

interface EdgeDeploymentStatus {
EdgeDeploymentFailedInStage: number;
EdgeDeploymentPendingInStage: number;
EdgeDeploymentStageStartTime?: Date | number | null;
EdgeDeploymentStatusMessage?: string | null;
EdgeDeploymentSuccessInStage: number;
StageStatus: StageStatus;
}

§Properties

§
EdgeDeploymentFailedInStage: number
[src]

The number of edge devices that failed the deployment in current stage.

§
EdgeDeploymentPendingInStage: number
[src]

The number of edge devices yet to pick up the deployment in current stage, or in progress.

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

The time when the deployment API started.

§
EdgeDeploymentStatusMessage?: string | null
[src]

A detailed message about deployment status in current stage.

§
EdgeDeploymentSuccessInStage: number
[src]

The number of edge devices with the successful deployment in the current stage.

§
StageStatus: StageStatus
[src]

The general status of the current stage.