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

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 document classifiers. You can only specify one filtering parameter in a request. For more information, see the ListDocumentClassifiers operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#document_classifier_nameString

The name that you assigned to the document classifier

Returns:

  • (String)


2896
2897
2898
2899
2900
2901
2902
2903
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 2896

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

#statusString

Filters the list of classifiers based on status.

Returns:

  • (String)


2896
2897
2898
2899
2900
2901
2902
2903
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 2896

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

#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)


2896
2897
2898
2899
2900
2901
2902
2903
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 2896

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

#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)


2896
2897
2898
2899
2900
2901
2902
2903
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 2896

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