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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#confidenceFloat

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

Returns:

  • (Float)


1951
1952
1953
1954
1955
1956
# File 'lib/aws-sdk-textract/types.rb', line 1951

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:



1951
1952
1953
1954
1955
1956
# File 'lib/aws-sdk-textract/types.rb', line 1951

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