Class: Aws::Textract::Types::SignatureDetection

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

Overview

Information regarding a detected signature on a page.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#confidenceFloat

The confidence, from 0 to 100, in the predicted values for a detected signature.

Returns:

  • (Float)


2694
2695
2696
2697
2698
2699
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 2694

class SignatureDetection < Struct.new(
  :confidence,
  :geometry)
  SENSITIVE = []
  include Aws::Structure
end

#geometryTypes::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.

Returns:



2694
2695
2696
2697
2698
2699
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 2694

class SignatureDetection < Struct.new(
  :confidence,
  :geometry)
  SENSITIVE = []
  include Aws::Structure
end