AWSComprehendEntitiesDetectionJobFilter
Objective-C
@interface AWSComprehendEntitiesDetectionJobFilter
Swift
class AWSComprehendEntitiesDetectionJobFilter
Provides information for filtering a list of dominant language detection jobs. For more information, see the operation.
-
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 of jobs 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 }