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

EndpointFilter

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

The filter used to determine which endpoints are returned. You can filter jobs on their name, model, status, or the date and time that they were created. You can only set one filter at a time.

interface EndpointFilter {
CreationTimeAfter?: Date | number | null;
CreationTimeBefore?: Date | number | null;
ModelArn?: string | null;
Status?: EndpointStatus | null;
}

§Properties

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

Specifies a date after which the returned endpoint or endpoints were created.

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

Specifies a date before which the returned endpoint or endpoints were created.

§
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 being returned. Possible values are: Creating, Ready, Updating, Deleting, Failed.