AWSComprehendDocumentClassifierFilter

Objective-C

@interface AWSComprehendDocumentClassifierFilter

Swift

class AWSComprehendDocumentClassifierFilter

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.

  • The name that you assigned to the document classifier

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable documentClassifierName;

    Swift

    var documentClassifierName: String? { get set }
  • Filters the list of classifiers based on status.

    Declaration

    Objective-C

    @property (nonatomic) AWSComprehendModelStatus status;

    Swift

    var status: AWSComprehendModelStatus { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable submitTimeAfter;

    Swift

    var submitTimeAfter: Date? { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable submitTimeBefore;

    Swift

    var submitTimeBefore: Date? { get set }