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

Description

 
Synopsis

Documentation

data BatchDetectEntitiesItemResult Source #

The result of calling the operation. The operation returns one object for each document that is successfully processed by the operation.

See: newBatchDetectEntitiesItemResult smart constructor.

Constructors

BatchDetectEntitiesItemResult' 

Fields

  • entities :: Maybe [Entity]

    One or more Entity objects, one for each entity detected in the document.

  • index :: Maybe Int

    The zero-based index of the document in the input list.

Instances

Instances details
Eq BatchDetectEntitiesItemResult Source # 
Instance details

Defined in Amazonka.Comprehend.Types.BatchDetectEntitiesItemResult

Read BatchDetectEntitiesItemResult Source # 
Instance details

Defined in Amazonka.Comprehend.Types.BatchDetectEntitiesItemResult

Show BatchDetectEntitiesItemResult Source # 
Instance details

Defined in Amazonka.Comprehend.Types.BatchDetectEntitiesItemResult

Generic BatchDetectEntitiesItemResult Source # 
Instance details

Defined in Amazonka.Comprehend.Types.BatchDetectEntitiesItemResult

Associated Types

type Rep BatchDetectEntitiesItemResult :: Type -> Type #

NFData BatchDetectEntitiesItemResult Source # 
Instance details

Defined in Amazonka.Comprehend.Types.BatchDetectEntitiesItemResult

Hashable BatchDetectEntitiesItemResult Source # 
Instance details

Defined in Amazonka.Comprehend.Types.BatchDetectEntitiesItemResult

FromJSON BatchDetectEntitiesItemResult Source # 
Instance details

Defined in Amazonka.Comprehend.Types.BatchDetectEntitiesItemResult

type Rep BatchDetectEntitiesItemResult Source # 
Instance details

Defined in Amazonka.Comprehend.Types.BatchDetectEntitiesItemResult

type Rep BatchDetectEntitiesItemResult = D1 ('MetaData "BatchDetectEntitiesItemResult" "Amazonka.Comprehend.Types.BatchDetectEntitiesItemResult" "libZSservicesZSamazonka-comprehendZSamazonka-comprehend" 'False) (C1 ('MetaCons "BatchDetectEntitiesItemResult'" 'PrefixI 'True) (S1 ('MetaSel ('Just "entities") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Entity])) :*: S1 ('MetaSel ('Just "index") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int))))

newBatchDetectEntitiesItemResult :: BatchDetectEntitiesItemResult Source #

Create a value of BatchDetectEntitiesItemResult 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:entities:BatchDetectEntitiesItemResult', batchDetectEntitiesItemResult_entities - One or more Entity objects, one for each entity detected in the document.

$sel:index:BatchDetectEntitiesItemResult', batchDetectEntitiesItemResult_index - The zero-based index of the document in the input list.

batchDetectEntitiesItemResult_entities :: Lens' BatchDetectEntitiesItemResult (Maybe [Entity]) Source #

One or more Entity objects, one for each entity detected in the document.

batchDetectEntitiesItemResult_index :: Lens' BatchDetectEntitiesItemResult (Maybe Int) Source #

The zero-based index of the document in the input list.