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

Description

 
Synopsis

Documentation

data KeyPhrasesDetectionJobFilter Source #

Provides information for filtering a list of dominant language detection jobs. For more information, see the operation.

See: newKeyPhrasesDetectionJobFilter smart constructor.

Constructors

KeyPhrasesDetectionJobFilter' 

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 KeyPhrasesDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.KeyPhrasesDetectionJobFilter

Generic KeyPhrasesDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.KeyPhrasesDetectionJobFilter

Associated Types

type Rep KeyPhrasesDetectionJobFilter :: Type -> Type #

Read KeyPhrasesDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.KeyPhrasesDetectionJobFilter

Show KeyPhrasesDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.KeyPhrasesDetectionJobFilter

NFData KeyPhrasesDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.KeyPhrasesDetectionJobFilter

Eq KeyPhrasesDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.KeyPhrasesDetectionJobFilter

Hashable KeyPhrasesDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.KeyPhrasesDetectionJobFilter

type Rep KeyPhrasesDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.KeyPhrasesDetectionJobFilter

type Rep KeyPhrasesDetectionJobFilter = D1 ('MetaData "KeyPhrasesDetectionJobFilter" "Amazonka.Comprehend.Types.KeyPhrasesDetectionJobFilter" "amazonka-comprehend-2.0-Ko6GCjAQF2RARapSdPn69F" 'False) (C1 ('MetaCons "KeyPhrasesDetectionJobFilter'" '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)))))

newKeyPhrasesDetectionJobFilter :: KeyPhrasesDetectionJobFilter Source #

Create a value of KeyPhrasesDetectionJobFilter 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:KeyPhrasesDetectionJobFilter', keyPhrasesDetectionJobFilter_jobName - Filters on the name of the job.

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

$sel:submitTimeAfter:KeyPhrasesDetectionJobFilter', keyPhrasesDetectionJobFilter_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:KeyPhrasesDetectionJobFilter', keyPhrasesDetectionJobFilter_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.

keyPhrasesDetectionJobFilter_jobStatus :: Lens' KeyPhrasesDetectionJobFilter (Maybe JobStatus) Source #

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

keyPhrasesDetectionJobFilter_submitTimeAfter :: Lens' KeyPhrasesDetectionJobFilter (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.

keyPhrasesDetectionJobFilter_submitTimeBefore :: Lens' KeyPhrasesDetectionJobFilter (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.