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

DeviceDeploymentSummary

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

Contains information summarizing device details and deployment status.

interface DeviceDeploymentSummary {
DeployedStageName?: string | null;
DeploymentStartTime?: Date | number | null;
Description?: string | null;
DeviceArn: string;
DeviceDeploymentStatus?: DeviceDeploymentStatus | null;
DeviceDeploymentStatusMessage?: string | null;
DeviceFleetName?: string | null;
DeviceName: string;
EdgeDeploymentPlanArn: string;
EdgeDeploymentPlanName: string;
StageName: string;
}

§Properties

§
DeployedStageName?: string | null
[src]

The name of the deployed stage.

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

The time when the deployment on the device started.

§
Description?: string | null
[src]

The description of the device.

§
DeviceArn: string
[src]

The ARN of the device.

§
DeviceDeploymentStatus?: DeviceDeploymentStatus | null
[src]

The deployment status of the device.

§
DeviceDeploymentStatusMessage?: string | null
[src]

The detailed error message for the deployoment status result.

§
DeviceFleetName?: string | null
[src]

The name of the fleet to which the device belongs to.

§
DeviceName: string
[src]

The name of the device.

§
EdgeDeploymentPlanArn: string
[src]

The ARN of the edge deployment plan.

§
EdgeDeploymentPlanName: string
[src]

The name of the edge deployment plan.

§
StageName: string
[src]

The name of the stage in the edge deployment plan.