amazonka-comprehend-2.0: Amazon Comprehend SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Comprehend.Types.PiiEntitiesDetectionJobFilter

Description

 
Synopsis

Documentation

data PiiEntitiesDetectionJobFilter Source #

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

See: newPiiEntitiesDetectionJobFilter smart constructor.

Constructors

PiiEntitiesDetectionJobFilter' 

Fields

  • jobName :: Maybe Text

    Filters on the name of the job.

  • jobStatus :: Maybe JobStatus

    Filters the list of jobs based on job status. Returns only jobs with the specified status.

  • submitTimeAfter :: Maybe POSIX

    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.

  • submitTimeBefore :: Maybe POSIX

    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.

Instances

Instances details
ToJSON PiiEntitiesDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.PiiEntitiesDetectionJobFilter

Generic PiiEntitiesDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.PiiEntitiesDetectionJobFilter

Associated Types

type Rep PiiEntitiesDetectionJobFilter :: Type -> Type #

Read PiiEntitiesDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.PiiEntitiesDetectionJobFilter

Show PiiEntitiesDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.PiiEntitiesDetectionJobFilter

NFData PiiEntitiesDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.PiiEntitiesDetectionJobFilter

Eq PiiEntitiesDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.PiiEntitiesDetectionJobFilter

Hashable PiiEntitiesDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.PiiEntitiesDetectionJobFilter

type Rep PiiEntitiesDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.PiiEntitiesDetectionJobFilter

type Rep PiiEntitiesDetectionJobFilter = D1 ('MetaData "PiiEntitiesDetectionJobFilter" "Amazonka.Comprehend.Types.PiiEntitiesDetectionJobFilter" "amazonka-comprehend-2.0-Ko6GCjAQF2RARapSdPn69F" 'False) (C1 ('MetaCons "PiiEntitiesDetectionJobFilter'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "jobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "jobStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe JobStatus))) :*: (S1 ('MetaSel ('Just "submitTimeAfter") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "submitTimeBefore") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)))))

newPiiEntitiesDetectionJobFilter :: PiiEntitiesDetectionJobFilter Source #

Create a value of PiiEntitiesDetectionJobFilter with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:jobName:PiiEntitiesDetectionJobFilter', piiEntitiesDetectionJobFilter_jobName - Filters on the name of the job.

$sel:jobStatus:PiiEntitiesDetectionJobFilter', piiEntitiesDetectionJobFilter_jobStatus - Filters the list of jobs based on job status. Returns only jobs with the specified status.

$sel:submitTimeAfter:PiiEntitiesDetectionJobFilter', piiEntitiesDetectionJobFilter_submitTimeAfter - 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.

$sel:submitTimeBefore:PiiEntitiesDetectionJobFilter', piiEntitiesDetectionJobFilter_submitTimeBefore - 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.

piiEntitiesDetectionJobFilter_jobStatus :: Lens' PiiEntitiesDetectionJobFilter (Maybe JobStatus) Source #

Filters the list of jobs based on job status. Returns only jobs with the specified status.

piiEntitiesDetectionJobFilter_submitTimeAfter :: Lens' PiiEntitiesDetectionJobFilter (Maybe UTCTime) Source #

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.

piiEntitiesDetectionJobFilter_submitTimeBefore :: Lens' PiiEntitiesDetectionJobFilter (Maybe UTCTime) Source #

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.