AWSComprehendPiiEntitiesDetectionJobFilter

Objective-C

@interface AWSComprehendPiiEntitiesDetectionJobFilter

Swift

class AWSComprehendPiiEntitiesDetectionJobFilter

Provides information for filtering a list of PII entity detection jobs.

  • 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 }