AWSTranslateTextTranslationJobFilter
Objective-C
@interface AWSTranslateTextTranslationJobFilter
Swift
class AWSTranslateTextTranslationJobFilter
Provides information for filtering a list of translation jobs. For more information, see ListTextTranslationJobs.
-
Filters the list of jobs by name.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable jobName;
Swift
var jobName: String? { get set }
-
Filters the list of jobs based by job status.
Declaration
Objective-C
@property (nonatomic) AWSTranslateJobStatus jobStatus;
Swift
var jobStatus: AWSTranslateJobStatus { get set }
-
Filters the list of jobs based on the time that the job was submitted for processing and returns only the jobs submitted after the specified time. Jobs are returned in descending order, newest to oldest.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable submittedAfterTime;
Swift
var submittedAfterTime: Date? { get set }
-
Filters the list of jobs based on the time that the job was submitted for processing and returns only the jobs submitted before the specified time. Jobs are returned in ascending order, oldest to newest.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable submittedBeforeTime;
Swift
var submittedBeforeTime: Date? { get set }