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

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

Properties

DocumentClassifierName?: string

The name that you assigned to the document classifier

Status?: ModelStatus

Filters the list of classifiers based on status.

SubmitTimeAfter?: Date

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

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.