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

EndpointProperties

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

Specifies information about the specified endpoint.

interface EndpointProperties {
CreationTime?: Date | number | null;
CurrentInferenceUnits?: number | null;
DataAccessRoleArn?: string | null;
DesiredDataAccessRoleArn?: string | null;
DesiredInferenceUnits?: number | null;
DesiredModelArn?: string | null;
EndpointArn?: string | null;
LastModifiedTime?: Date | number | null;
Message?: string | null;
ModelArn?: string | null;
Status?: EndpointStatus | null;
}

§Properties

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

The creation date and time of the endpoint.

§
CurrentInferenceUnits?: number | null
[src]

The number of inference units currently used by the model using this endpoint.

§
DataAccessRoleArn?: string | null
[src]

The Amazon Resource Name (ARN) of the AWS identity and Access Management (IAM) role that grants Amazon Comprehend read access to trained custom models encrypted with a customer managed key (ModelKmsKeyId).

§
DesiredDataAccessRoleArn?: string | null
[src]

Data access role ARN to use in case the new model is encrypted with a customer KMS key.

§
DesiredInferenceUnits?: number | null
[src]

The desired number of inference units to be used by the model using this endpoint. Each inference unit represents of a throughput of 100 characters per second.

§
DesiredModelArn?: string | null
[src]

ARN of the new model to use for updating an existing endpoint. This ARN is going to be different from the model ARN when the update is in progress

§
EndpointArn?: string | null
[src]

The Amazon Resource Number (ARN) of the endpoint.

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

The date and time that the endpoint was last modified.

§
Message?: string | null
[src]

Specifies a reason for failure in cases of Failed status.

§
ModelArn?: string | null
[src]

The Amazon Resource Number (ARN) of the model to which the endpoint is attached.

§
Status?: EndpointStatus | null
[src]

Specifies the status of the endpoint. Because the endpoint updates and creation are asynchronous, so customers will need to wait for the endpoint to be Ready status before making inference requests.