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

Description

 
Synopsis

Documentation

data EntityRecognizerFilter Source #

Provides information for filtering a list of entity recognizers. You can only specify one filtering parameter in a request. For more information, see the operation./>

See: newEntityRecognizerFilter smart constructor.

Constructors

EntityRecognizerFilter' 

Fields

  • status :: Maybe ModelStatus

    The status of an entity recognizer.

  • submitTimeAfter :: Maybe POSIX

    Filters the list of entities based on the time that the list was submitted for processing. Returns only jobs submitted after the specified time. Jobs are returned in ascending order, oldest to newest.

  • submitTimeBefore :: Maybe POSIX

    Filters the list of entities based on the time that the list was submitted for processing. Returns only jobs submitted before the specified time. Jobs are returned in descending order, newest to oldest.

  • recognizerName :: Maybe Text

    The name that you assigned the entity recognizer.

Instances

Instances details
Eq EntityRecognizerFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.EntityRecognizerFilter

Read EntityRecognizerFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.EntityRecognizerFilter

Show EntityRecognizerFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.EntityRecognizerFilter

Generic EntityRecognizerFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.EntityRecognizerFilter

Associated Types

type Rep EntityRecognizerFilter :: Type -> Type #

NFData EntityRecognizerFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.EntityRecognizerFilter

Methods

rnf :: EntityRecognizerFilter -> () #

Hashable EntityRecognizerFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.EntityRecognizerFilter

ToJSON EntityRecognizerFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.EntityRecognizerFilter

type Rep EntityRecognizerFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.EntityRecognizerFilter

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

newEntityRecognizerFilter :: EntityRecognizerFilter Source #

Create a value of EntityRecognizerFilter 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:status:EntityRecognizerFilter', entityRecognizerFilter_status - The status of an entity recognizer.

$sel:submitTimeAfter:EntityRecognizerFilter', entityRecognizerFilter_submitTimeAfter - Filters the list of entities based on the time that the list was submitted for processing. Returns only jobs submitted after the specified time. Jobs are returned in ascending order, oldest to newest.

$sel:submitTimeBefore:EntityRecognizerFilter', entityRecognizerFilter_submitTimeBefore - Filters the list of entities based on the time that the list was submitted for processing. Returns only jobs submitted before the specified time. Jobs are returned in descending order, newest to oldest.

$sel:recognizerName:EntityRecognizerFilter', entityRecognizerFilter_recognizerName - The name that you assigned the entity recognizer.

entityRecognizerFilter_submitTimeAfter :: Lens' EntityRecognizerFilter (Maybe UTCTime) Source #

Filters the list of entities based on the time that the list was submitted for processing. Returns only jobs submitted after the specified time. Jobs are returned in ascending order, oldest to newest.

entityRecognizerFilter_submitTimeBefore :: Lens' EntityRecognizerFilter (Maybe UTCTime) Source #

Filters the list of entities based on the time that the list was submitted for processing. Returns only jobs submitted before the specified time. Jobs are returned in descending order, newest to oldest.

entityRecognizerFilter_recognizerName :: Lens' EntityRecognizerFilter (Maybe Text) Source #

The name that you assigned the entity recognizer.