libZSservicesZSamazonka-comprehendZSamazonka-comprehend
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.Comprehend.Types.DocumentClassificationJobFilter

Description

 
Synopsis

Documentation

data DocumentClassificationJobFilter Source #

Provides information for filtering a list of document classification jobs. For more information, see the operation. You can provide only one filter parameter in each request.

See: newDocumentClassificationJobFilter smart constructor.

Constructors

DocumentClassificationJobFilter' 

Fields

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

  • jobName :: Maybe Text

    Filters on the name of the job.

  • jobStatus :: Maybe JobStatus

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

Instances

Instances details
Eq DocumentClassificationJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.DocumentClassificationJobFilter

Read DocumentClassificationJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.DocumentClassificationJobFilter

Show DocumentClassificationJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.DocumentClassificationJobFilter

Generic DocumentClassificationJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.DocumentClassificationJobFilter

Associated Types

type Rep DocumentClassificationJobFilter :: Type -> Type #

NFData DocumentClassificationJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.DocumentClassificationJobFilter

Hashable DocumentClassificationJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.DocumentClassificationJobFilter

ToJSON DocumentClassificationJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.DocumentClassificationJobFilter

type Rep DocumentClassificationJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.DocumentClassificationJobFilter

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

newDocumentClassificationJobFilter :: DocumentClassificationJobFilter Source #

Create a value of DocumentClassificationJobFilter 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:submitTimeAfter:DocumentClassificationJobFilter', documentClassificationJobFilter_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:DocumentClassificationJobFilter', documentClassificationJobFilter_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.

$sel:jobName:DocumentClassificationJobFilter', documentClassificationJobFilter_jobName - Filters on the name of the job.

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

documentClassificationJobFilter_submitTimeAfter :: Lens' DocumentClassificationJobFilter (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.

documentClassificationJobFilter_submitTimeBefore :: Lens' DocumentClassificationJobFilter (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.

documentClassificationJobFilter_jobStatus :: Lens' DocumentClassificationJobFilter (Maybe JobStatus) Source #

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