Class: Aws::Comprehend::Types::EntityRecognizerFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::EntityRecognizerFilter
- Defined in:
- gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb
Overview
Provides information for filtering a list of entity recognizers. You
can only specify one filtering parameter in a request. For more
information, see the ListEntityRecognizers
operation./>
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#recognizer_name ⇒ String
The name that you assigned the entity recognizer.
-
#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
#recognizer_name ⇒ String
The name that you assigned the entity recognizer.
4107 4108 4109 4110 4111 4112 4113 4114 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 4107 class EntityRecognizerFilter < Struct.new( :status, :recognizer_name, :submit_time_before, :submit_time_after) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of an entity recognizer.
4107 4108 4109 4110 4111 4112 4113 4114 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 4107 class EntityRecognizerFilter < Struct.new( :status, :recognizer_name, :submit_time_before, :submit_time_after) SENSITIVE = [] include Aws::Structure end |
#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.
4107 4108 4109 4110 4111 4112 4113 4114 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 4107 class EntityRecognizerFilter < Struct.new( :status, :recognizer_name, :submit_time_before, :submit_time_after) SENSITIVE = [] include Aws::Structure end |
#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.
4107 4108 4109 4110 4111 4112 4113 4114 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 4107 class EntityRecognizerFilter < Struct.new( :status, :recognizer_name, :submit_time_before, :submit_time_after) SENSITIVE = [] include Aws::Structure end |