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

RealtimeEndpointInfo

import type { RealtimeEndpointInfo } from "https://aws-api.deno.dev/v0.3/services/machinelearning.ts?docs=full";

Describes the real-time endpoint information for an MLModel.

interface RealtimeEndpointInfo {
CreatedAt?: Date | number | null;
EndpointStatus?: RealtimeEndpointStatus | null;
EndpointUrl?: string | null;
PeakRequestsPerSecond?: number | null;
}

§Properties

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

The time that the request to create the real-time endpoint for the MLModel was received. The time is expressed in epoch time.

§
EndpointStatus?: RealtimeEndpointStatus | null
[src]

The current status of the real-time endpoint for the MLModel. This element can have one of the following values:

  • NONE - Endpoint does not exist or was previously deleted.
  • READY - Endpoint is ready to be used for real-time predictions.
  • UPDATING - Updating/creating the endpoint.
§
EndpointUrl?: string | null
[src]

The URI that specifies where to send real-time prediction requests for the MLModel.

Note: The application must wait until the real-time endpoint is ready before using this URI.

§
PeakRequestsPerSecond?: number | null
[src]

The maximum processing rate for the real-time endpoint for MLModel, measured in incoming requests per second.