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

Description

 
Synopsis

Documentation

data EventsDetectionJobFilter Source #

Provides information for filtering a list of event detection jobs.

See: newEventsDetectionJobFilter smart constructor.

Constructors

EventsDetectionJobFilter' 

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 events detection job.

  • jobStatus :: Maybe JobStatus

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

Instances

Instances details
Eq EventsDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.EventsDetectionJobFilter

Read EventsDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.EventsDetectionJobFilter

Show EventsDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.EventsDetectionJobFilter

Generic EventsDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.EventsDetectionJobFilter

Associated Types

type Rep EventsDetectionJobFilter :: Type -> Type #

NFData EventsDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.EventsDetectionJobFilter

Hashable EventsDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.EventsDetectionJobFilter

ToJSON EventsDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.EventsDetectionJobFilter

type Rep EventsDetectionJobFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.EventsDetectionJobFilter

type Rep EventsDetectionJobFilter = D1 ('MetaData "EventsDetectionJobFilter" "Amazonka.Comprehend.Types.EventsDetectionJobFilter" "libZSservicesZSamazonka-comprehendZSamazonka-comprehend" 'False) (C1 ('MetaCons "EventsDetectionJobFilter'" '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)))))

newEventsDetectionJobFilter :: EventsDetectionJobFilter Source #

Create a value of EventsDetectionJobFilter 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:EventsDetectionJobFilter', eventsDetectionJobFilter_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:EventsDetectionJobFilter', eventsDetectionJobFilter_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:EventsDetectionJobFilter', eventsDetectionJobFilter_jobName - Filters on the name of the events detection job.

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

eventsDetectionJobFilter_submitTimeAfter :: Lens' EventsDetectionJobFilter (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.

eventsDetectionJobFilter_submitTimeBefore :: Lens' EventsDetectionJobFilter (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.

eventsDetectionJobFilter_jobName :: Lens' EventsDetectionJobFilter (Maybe Text) Source #

Filters on the name of the events detection job.

eventsDetectionJobFilter_jobStatus :: Lens' EventsDetectionJobFilter (Maybe JobStatus) Source #

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