You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Comprehend::Types::DocumentClassifierFilter

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DocumentClassifierFilter as input to an Aws::Client method, you can use a vanilla Hash:

{
  status: "SUBMITTED", # accepts SUBMITTED, TRAINING, DELETING, STOP_REQUESTED, STOPPED, IN_ERROR, TRAINED
  submit_time_before: Time.now,
  submit_time_after: Time.now,
}

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.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#statusString

Filters the list of classifiers based on status.

Possible values:

  • SUBMITTED
  • TRAINING
  • DELETING
  • STOP_REQUESTED
  • STOPPED
  • IN_ERROR
  • TRAINED

Returns:

  • (String)

    Filters the list of classifiers based on status.

#submit_time_afterTime

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.

Returns:

  • (Time)

    Filters the list of classifiers based on the time that the classifier was submitted for processing.

#submit_time_beforeTime

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.

Returns:

  • (Time)

    Filters the list of classifiers based on the time that the classifier was submitted for processing.