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

Description

 
Synopsis

Documentation

data TopicsDetectionJobFilter Source #

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

See: newTopicsDetectionJobFilter smart constructor.

Constructors

TopicsDetectionJobFilter' 

Fields

  • jobName :: Maybe Text
     
  • jobStatus :: Maybe JobStatus

    Filters the list of topic detection 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. Only returns jobs submitted after the specified time. Jobs are returned in ascending order, oldest to newest.

  • submitTimeBefore :: Maybe POSIX

    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.

Instances

Instances details
ToJSON TopicsDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.TopicsDetectionJobFilter

Generic TopicsDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.TopicsDetectionJobFilter

Associated Types

type Rep TopicsDetectionJobFilter :: Type -> Type #

Read TopicsDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.TopicsDetectionJobFilter

Show TopicsDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.TopicsDetectionJobFilter

NFData TopicsDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.TopicsDetectionJobFilter

Eq TopicsDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.TopicsDetectionJobFilter

Hashable TopicsDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.TopicsDetectionJobFilter

type Rep TopicsDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.TopicsDetectionJobFilter

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

newTopicsDetectionJobFilter :: TopicsDetectionJobFilter Source #

Create a value of TopicsDetectionJobFilter 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:TopicsDetectionJobFilter', topicsDetectionJobFilter_jobName -

$sel:jobStatus:TopicsDetectionJobFilter', topicsDetectionJobFilter_jobStatus - Filters the list of topic detection jobs based on job status. Returns only jobs with the specified status.

$sel:submitTimeAfter:TopicsDetectionJobFilter', topicsDetectionJobFilter_submitTimeAfter - 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.

$sel:submitTimeBefore:TopicsDetectionJobFilter', topicsDetectionJobFilter_submitTimeBefore - 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.

topicsDetectionJobFilter_jobStatus :: Lens' TopicsDetectionJobFilter (Maybe JobStatus) Source #

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

topicsDetectionJobFilter_submitTimeAfter :: Lens' TopicsDetectionJobFilter (Maybe UTCTime) Source #

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.

topicsDetectionJobFilter_submitTimeBefore :: Lens' TopicsDetectionJobFilter (Maybe UTCTime) Source #

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.