Class: Aws::Textract::Types::SignatureDetection
- Inherits:
-
Struct
- Object
- Struct
- Aws::Textract::Types::SignatureDetection
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-textract/types.rb
Overview
Information regarding a detected signature on a page.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#confidence ⇒ Float
The confidence, from 0 to 100, in the predicted values for a detected signature.
-
#geometry ⇒ Types::Geometry
Information about where the following items are located on a document page: detected page, text, key-value pairs, tables, table cells, and selection elements.
Instance Attribute Details
#confidence ⇒ Float
The confidence, from 0 to 100, in the predicted values for a detected signature.
2694 2695 2696 2697 2698 2699 |
# File 'lib/aws-sdk-textract/types.rb', line 2694 class SignatureDetection < Struct.new( :confidence, :geometry) SENSITIVE = [] include Aws::Structure end |
#geometry ⇒ Types::Geometry
Information about where the following items are located on a document page: detected page, text, key-value pairs, tables, table cells, and selection elements.
2694 2695 2696 2697 2698 2699 |
# File 'lib/aws-sdk-textract/types.rb', line 2694 class SignatureDetection < Struct.new( :confidence, :geometry) SENSITIVE = [] include Aws::Structure end |