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)


203
204
205
206
207
208
209
# File 'lib/aws-sdk-textract/types.rb', line 203

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.



203
204
205
206
207
208
209
# File 'lib/aws-sdk-textract/types.rb', line 203

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)


203
204
205
206
207
208
209
# File 'lib/aws-sdk-textract/types.rb', line 203

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