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

DeploymentResult

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

Information about the result of a deployment on an edge device that is registered with SageMaker Edge Manager.

interface DeploymentResult {
DeploymentEndTime?: Date | number | null;
DeploymentModels?: DeploymentModel[] | null;
DeploymentName?: string | null;
DeploymentStartTime?: Date | number | null;
DeploymentStatus?: string | null;
DeploymentStatusMessage?: string | null;
}

§Properties

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

The timestamp of when the deployment was ended, and the agent got the deployment results.

§
DeploymentModels?: DeploymentModel[] | null
[src]

Returns a list of models deployed on the agent.

§
DeploymentName?: string | null
[src]

The name and unique ID of the deployment.

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

The timestamp of when the deployment was started on the agent.

§
DeploymentStatus?: string | null
[src]

Returns the bucket error code.

§
DeploymentStatusMessage?: string | null
[src]

Returns the detailed error message.