Class: Aws::Textract::Types::PageClassification

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

Overview

The class assigned to a Page object detected in an input document. Contains information regarding the predicted type/class of a document’s page and the page number that the Page object was detected on.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#page_numberArray<Types::Prediction>

The page number the value was detected on, relative to Amazon Textract’s starting position.

Returns:



1737
1738
1739
1740
1741
1742
# File 'lib/aws-sdk-textract/types.rb', line 1737

class PageClassification < Struct.new(
  :page_type,
  :page_number)
  SENSITIVE = []
  include Aws::Structure
end

#page_typeArray<Types::Prediction>

The class, or document type, assigned to a detected Page object. The class, or document type, assigned to a detected Page object.

Returns:



1737
1738
1739
1740
1741
1742
# File 'lib/aws-sdk-textract/types.rb', line 1737

class PageClassification < Struct.new(
  :page_type,
  :page_number)
  SENSITIVE = []
  include Aws::Structure
end