Class: Aws::Comprehend::Types::EntityRecognizerFilter

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#recognizer_nameString

The name that you assigned the entity recognizer.

Returns:

  • (String)


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

#statusString

The status of an entity recognizer.

Returns:

  • (String)


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_afterTime

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.

Returns:

  • (Time)


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_beforeTime

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.

Returns:

  • (Time)


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