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

DocumentClassifierFilter

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

Provides information for filtering a list of document classifiers. You can only specify one filtering parameter in a request. For more information, see the operation.

interface DocumentClassifierFilter {
DocumentClassifierName?: string | null;
Status?: ModelStatus | null;
SubmitTimeAfter?: Date | number | null;
SubmitTimeBefore?: Date | number | null;
}

§Properties

§
DocumentClassifierName?: string | null
[src]

The name that you assigned to the document classifier

§
Status?: ModelStatus | null
[src]

Filters the list of classifiers based on status.

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

Filters the list of classifiers based on the time that the classifier was submitted for processing. Returns only classifiers submitted after the specified time. Classifiers are returned in descending order, newest to oldest.

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

Filters the list of classifiers based on the time that the classifier was submitted for processing. Returns only classifiers submitted before the specified time. Classifiers are returned in ascending order, oldest to newest.