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

CreateEndpointRequest

import type { CreateEndpointRequest } from "https://aws-api.deno.dev/v0.4/services/comprehend.ts?docs=full";
interface CreateEndpointRequest {
ClientRequestToken?: string | null;
DataAccessRoleArn?: string | null;
DesiredInferenceUnits: number;
EndpointName: string;
ModelArn: string;
Tags?: Tag[] | null;
}

§Properties

§
ClientRequestToken?: string | null
[src]

An idempotency token provided by the customer. If this token matches a previous endpoint creation request, Amazon Comprehend will not return a ResourceInUseException.

§
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).

§
DesiredInferenceUnits: number
[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.

§
EndpointName: string
[src]

This is the descriptive suffix that becomes part of the EndpointArn used for all subsequent requests to this resource.

§
ModelArn: string
[src]

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

§
Tags?: Tag[] | null
[src]

Tags associated with the endpoint being created. A tag is a key-value pair that adds metadata to the endpoint. For example, a tag with "Sales" as the key might be added to an endpoint to indicate its use by the sales department.