You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::Comprehend::Types::EntityRecognizerFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::EntityRecognizerFilter
- Defined in:
- (unknown)
Overview
When passing EntityRecognizerFilter 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 entity recognizers. You can only specify one filtering parameter in a request. For more information, see the operation./>
Returned by:
Instance Attribute Summary collapse
-
#status ⇒ String
The status of an entity recognizer.
-
#submit_time_after ⇒ Time
Filters the list of entities based on the time that the list was submitted for processing.
-
#submit_time_before ⇒ Time
Filters the list of entities based on the time that the list was submitted for processing.
Instance Attribute Details
#status ⇒ String
The status of an entity recognizer.
Possible values:
- SUBMITTED
- TRAINING
- DELETING
- STOP_REQUESTED
- STOPPED
- IN_ERROR
- TRAINED
#submit_time_after ⇒ Time
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.
#submit_time_before ⇒ Time
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.