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)


3969
3970
3971
3972
3973
3974
3975
3976
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 3969

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)


3969
3970
3971
3972
3973
3974
3975
3976
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 3969

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)


3969
3970
3971
3972
3973
3974
3975
3976
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 3969

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)


3969
3970
3971
3972
3973
3974
3975
3976
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 3969

class EntityRecognizerFilter < Struct.new(
  :status,
  :recognizer_name,
  :submit_time_before,
  :submit_time_after)
  SENSITIVE = []
  include Aws::Structure
end