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

EntityRecognizerFilter

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

Provides information for filtering a list of entity recognizers. You can only specify one filtering parameter in a request. For more information, see the operation./>

interface EntityRecognizerFilter {
RecognizerName?: string | null;
Status?: ModelStatus | null;
SubmitTimeAfter?: Date | number | null;
SubmitTimeBefore?: Date | number | null;
}

§Properties

§
RecognizerName?: string | null
[src]

The name that you assigned the entity recognizer.

§
Status?: ModelStatus | null
[src]

The status of an entity recognizer.

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

Filters the list of entities based on the time that the list was submitted for processing. Returns only jobs submitted after the specified time. Jobs are returned in ascending order, oldest to newest.

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

Filters the list of entities based on the time that the list was submitted for processing. Returns only jobs submitted before the specified time. Jobs are returned in descending order, newest to oldest.