The input for CreateEndpointCommand.

interface CreateEndpointCommandInput {
    ClientRequestToken?: string;
    DataAccessRoleArn?: string;
    DesiredInferenceUnits: undefined | number;
    EndpointName: undefined | string;
    FlywheelArn?: string;
    ModelArn?: string;
    Tags?: Tag[];
}

Hierarchy (view full)

Properties

ClientRequestToken?: string

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

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

DesiredInferenceUnits: undefined | number

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.</p>
EndpointName: undefined | string

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

FlywheelArn?: string

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

ModelArn?: string

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

Tags?: Tag[]

Tags to associate with the endpoint. 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.