Class: Aws::Textract::Types::AnalyzeIDDetections
- Inherits:
-
Struct
- Object
- Struct
- Aws::Textract::Types::AnalyzeIDDetections
- 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
-
#confidence ⇒ Float
The confidence score of the detected text.
-
#normalized_value ⇒ Types::NormalizedValue
Only returned for dates, returns the type of value detected and the date written in a more machine readable way.
-
#text ⇒ String
Text of either the normalized field or value associated with it.
Instance Attribute Details
#confidence ⇒ Float
The confidence score of the detected text.
340 341 342 343 344 345 346 |
# File 'lib/aws-sdk-textract/types.rb', line 340 class AnalyzeIDDetections < Struct.new( :text, :normalized_value, :confidence) SENSITIVE = [] include Aws::Structure end |
#normalized_value ⇒ Types::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 'lib/aws-sdk-textract/types.rb', line 340 class AnalyzeIDDetections < Struct.new( :text, :normalized_value, :confidence) SENSITIVE = [] include Aws::Structure end |
#text ⇒ String
Text of either the normalized field or value associated with it.
340 341 342 343 344 345 346 |
# File 'lib/aws-sdk-textract/types.rb', line 340 class AnalyzeIDDetections < Struct.new( :text, :normalized_value, :confidence) SENSITIVE = [] include Aws::Structure end |