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

DeploymentModel

import type { DeploymentModel } from "https://aws-api.deno.dev/v0.4/services/sagemakeredge.ts?docs=full";
interface DeploymentModel {
DesiredState?: ModelState | null;
ModelHandle?: string | null;
ModelName?: string | null;
ModelVersion?: string | null;
RollbackFailureReason?: string | null;
State?: ModelState | null;
Status?: DeploymentStatus | null;
StatusReason?: string | null;
}

§Properties

§
DesiredState?: ModelState | null
[src]

The desired state of the model.

§
ModelHandle?: string | null
[src]

The unique handle of the model.

§
ModelName?: string | null
[src]

The name of the model.

§
ModelVersion?: string | null
[src]

The version of the model.

§
RollbackFailureReason?: string | null
[src]

Returns the error message if there is a rollback.

§
State?: ModelState | null
[src]

Returns the current state of the model.

§
Status?: DeploymentStatus | null
[src]

Returns the deployment status of the model.

§
StatusReason?: string | null
[src]

Returns the error message for the deployment status result.