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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-textract/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:



2467
2468
2469
2470
2471
2472
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 2467

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:



2467
2468
2469
2470
2471
2472
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 2467

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