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

EdgeModelStat

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

Status of edge devices with this model.

interface EdgeModelStat {
ActiveDeviceCount: number;
ConnectedDeviceCount: number;
ModelName: string;
ModelVersion: string;
OfflineDeviceCount: number;
SamplingDeviceCount: number;
}

§Properties

§
ActiveDeviceCount: number
[src]

The number of devices that have this model version, a heart beat, and are currently running.

§
ConnectedDeviceCount: number
[src]

The number of devices that have this model version and have a heart beat.

§
ModelName: string
[src]

The name of the model.

§
ModelVersion: string
[src]

The model version.

§
OfflineDeviceCount: number
[src]

The number of devices that have this model version and do not have a heart beat.

§
SamplingDeviceCount: number
[src]

The number of devices with this model version and are producing sample data.