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

Description

 
Synopsis

Documentation

data NormalizedValue Source #

Contains information relating to dates in a document, including the type of value, and the value.

See: newNormalizedValue smart constructor.

Constructors

NormalizedValue' 

Fields

Instances

Instances details
FromJSON NormalizedValue Source # 
Instance details

Defined in Amazonka.Textract.Types.NormalizedValue

Generic NormalizedValue Source # 
Instance details

Defined in Amazonka.Textract.Types.NormalizedValue

Associated Types

type Rep NormalizedValue :: Type -> Type #

Read NormalizedValue Source # 
Instance details

Defined in Amazonka.Textract.Types.NormalizedValue

Show NormalizedValue Source # 
Instance details

Defined in Amazonka.Textract.Types.NormalizedValue

NFData NormalizedValue Source # 
Instance details

Defined in Amazonka.Textract.Types.NormalizedValue

Methods

rnf :: NormalizedValue -> () #

Eq NormalizedValue Source # 
Instance details

Defined in Amazonka.Textract.Types.NormalizedValue

Hashable NormalizedValue Source # 
Instance details

Defined in Amazonka.Textract.Types.NormalizedValue

type Rep NormalizedValue Source # 
Instance details

Defined in Amazonka.Textract.Types.NormalizedValue

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

newNormalizedValue :: NormalizedValue Source #

Create a value of NormalizedValue 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:value:NormalizedValue', normalizedValue_value - The value of the date, written as Year-Month-DayTHour:Minute:Second.

$sel:valueType:NormalizedValue', normalizedValue_valueType - The normalized type of the value detected. In this case, DATE.

normalizedValue_value :: Lens' NormalizedValue (Maybe Text) Source #

The value of the date, written as Year-Month-DayTHour:Minute:Second.

normalizedValue_valueType :: Lens' NormalizedValue (Maybe ValueType) Source #

The normalized type of the value detected. In this case, DATE.