AWSComprehendEntityRecognizerFilter
Objective-C
@interface AWSComprehendEntityRecognizerFilter
Swift
class AWSComprehendEntityRecognizerFilter
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./>
-
The name that you assigned the entity recognizer.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable recognizerName;
Swift
var recognizerName: String? { get set }
-
The status of an entity recognizer.
Declaration
Objective-C
@property (nonatomic) AWSComprehendModelStatus status;
Swift
var status: AWSComprehendModelStatus { get set }
-
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.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable submitTimeAfter;
Swift
var submitTimeAfter: Date? { get set }
-
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.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable submitTimeBefore;
Swift
var submitTimeBefore: Date? { get set }