AWSComprehendDocumentClassificationJobFilter
Objective-C
@interface AWSComprehendDocumentClassificationJobFilter
Swift
class AWSComprehendDocumentClassificationJobFilter
Provides information for filtering a list of document classification jobs. For more information, see the operation. You can provide only one filter parameter in each request.
-
Filters on the name of the job.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable jobName;
Swift
var jobName: String? { get set }
-
Filters the list based on job status. Returns only jobs with the specified status.
Declaration
Objective-C
@property (nonatomic) AWSComprehendJobStatus jobStatus;
Swift
var jobStatus: AWSComprehendJobStatus { get set }
-
Filters the list of jobs based on the time that the job was submitted for processing. Returns only jobs submitted after the specified time. Jobs 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 jobs based on the time that the job was submitted for processing. Returns only jobs submitted before the specified time. Jobs are returned in ascending order, oldest to newest.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable submitTimeBefore;
Swift
var submitTimeBefore: Date? { get set }