Class: Aws::Textract::Types::AnalyzeIDDetections

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-textract/types.rb

Overview

Used to contain the information detected by an AnalyzeID operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#confidenceFloat

The confidence score of the detected text.

Returns:

  • (Float)


160
161
162
163
164
165
166
# File 'lib/aws-sdk-textract/types.rb', line 160

class AnalyzeIDDetections < Struct.new(
  :text,
  :normalized_value,
  :confidence)
  SENSITIVE = []
  include Aws::Structure
end

#normalized_valueTypes::NormalizedValue

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



160
161
162
163
164
165
166
# File 'lib/aws-sdk-textract/types.rb', line 160

class AnalyzeIDDetections < Struct.new(
  :text,
  :normalized_value,
  :confidence)
  SENSITIVE = []
  include Aws::Structure
end

#textString

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

Returns:

  • (String)


160
161
162
163
164
165
166
# File 'lib/aws-sdk-textract/types.rb', line 160

class AnalyzeIDDetections < Struct.new(
  :text,
  :normalized_value,
  :confidence)
  SENSITIVE = []
  include Aws::Structure
end