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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-textract/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)


340
341
342
343
344
345
346
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 340

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.



340
341
342
343
344
345
346
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 340

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)


340
341
342
343
344
345
346
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 340

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