AWSComprehendTopicsDetectionJobFilter

Objective-C

@interface AWSComprehendTopicsDetectionJobFilter

Swift

class AWSComprehendTopicsDetectionJobFilter

Provides information for filtering topic detection jobs. For more information, see .

  • Declaration

    Objective-C

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

    Swift

    var jobName: String? { get set }
  • Filters the list of topic detection 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. Only returns 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 jobs based on the time that the job was submitted for processing. Only returns 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 }