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

  • recognizerName :: Maybe Text

    The name that you assigned the entity recognizer.

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

Instances

Instances details
ToJSON 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 #

Read EntityRecognizerFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.EntityRecognizerFilter

Show EntityRecognizerFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.EntityRecognizerFilter

NFData EntityRecognizerFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.EntityRecognizerFilter

Methods

rnf :: EntityRecognizerFilter -> () #

Eq EntityRecognizerFilter Source # 
Instance details

Defined in Amazonka.Comprehend.Types.EntityRecognizerFilter

Hashable 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" "amazonka-comprehend-2.0-Ko6GCjAQF2RARapSdPn69F" 'False) (C1 ('MetaCons "EntityRecognizerFilter'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "recognizerName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: 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)))))

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:recognizerName:EntityRecognizerFilter', entityRecognizerFilter_recognizerName - The name that you assigned the entity recognizer.

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

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

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.