amazonka-textract-2.0: Amazon Textract 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.Textract.Types.AnalyzeIDDetections

Description

 
Synopsis

Documentation

data AnalyzeIDDetections Source #

Used to contain the information detected by an AnalyzeID operation.

See: newAnalyzeIDDetections smart constructor.

Constructors

AnalyzeIDDetections' 

Fields

Instances

Instances details
FromJSON AnalyzeIDDetections Source # 
Instance details

Defined in Amazonka.Textract.Types.AnalyzeIDDetections

Generic AnalyzeIDDetections Source # 
Instance details

Defined in Amazonka.Textract.Types.AnalyzeIDDetections

Associated Types

type Rep AnalyzeIDDetections :: Type -> Type #

Read AnalyzeIDDetections Source # 
Instance details

Defined in Amazonka.Textract.Types.AnalyzeIDDetections

Show AnalyzeIDDetections Source # 
Instance details

Defined in Amazonka.Textract.Types.AnalyzeIDDetections

NFData AnalyzeIDDetections Source # 
Instance details

Defined in Amazonka.Textract.Types.AnalyzeIDDetections

Methods

rnf :: AnalyzeIDDetections -> () #

Eq AnalyzeIDDetections Source # 
Instance details

Defined in Amazonka.Textract.Types.AnalyzeIDDetections

Hashable AnalyzeIDDetections Source # 
Instance details

Defined in Amazonka.Textract.Types.AnalyzeIDDetections

type Rep AnalyzeIDDetections Source # 
Instance details

Defined in Amazonka.Textract.Types.AnalyzeIDDetections

type Rep AnalyzeIDDetections = D1 ('MetaData "AnalyzeIDDetections" "Amazonka.Textract.Types.AnalyzeIDDetections" "amazonka-textract-2.0-6i5mJlqzS4xCepXxXFK6UK" 'False) (C1 ('MetaCons "AnalyzeIDDetections'" 'PrefixI 'True) (S1 ('MetaSel ('Just "confidence") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)) :*: (S1 ('MetaSel ('Just "normalizedValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe NormalizedValue)) :*: S1 ('MetaSel ('Just "text") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newAnalyzeIDDetections Source #

Create a value of AnalyzeIDDetections 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:confidence:AnalyzeIDDetections', analyzeIDDetections_confidence - The confidence score of the detected text.

$sel:normalizedValue:AnalyzeIDDetections', analyzeIDDetections_normalizedValue - Only returned for dates, returns the type of value detected and the date written in a more machine readable way.

$sel:text:AnalyzeIDDetections', analyzeIDDetections_text - Text of either the normalized field or value associated with it.

analyzeIDDetections_confidence :: Lens' AnalyzeIDDetections (Maybe Double) Source #

The confidence score of the detected text.

analyzeIDDetections_normalizedValue :: Lens' AnalyzeIDDetections (Maybe NormalizedValue) Source #

Only returned for dates, returns the type of value detected and the date written in a more machine readable way.

analyzeIDDetections_text :: Lens' AnalyzeIDDetections Text Source #

Text of either the normalized field or value associated with it.