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

EndpointMetadata

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

The metadata of the endpoint.

interface EndpointMetadata {
EndpointConfigName?: string | null;
EndpointName: string;
EndpointStatus?: EndpointStatus | null;
FailureReason?: string | null;
}

§Properties

§
EndpointConfigName?: string | null
[src]

The name of the endpoint configuration.

§
EndpointName: string
[src]

The name of the endpoint.

§
EndpointStatus?: EndpointStatus | null
[src]

The status of the endpoint. For possible values of the status of an endpoint, see "EndpointSummary$EndpointStatus".

§
FailureReason?: string | null
[src]

If the status of the endpoint is Failed, or the status is InService but update operation fails, this provides the reason why it failed.