Class: Aws::Textract::Types::PageClassification
- Inherits:
-
Struct
- Object
- Struct
- Aws::Textract::Types::PageClassification
- 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
-
#page_number ⇒ Array<Types::Prediction>
The page number the value was detected on, relative to Amazon Textract’s starting position.
-
#page_type ⇒ Array<Types::Prediction>
The class, or document type, assigned to a detected Page object.
Instance Attribute Details
#page_number ⇒ Array<Types::Prediction>
The page number the value was detected on, relative to Amazon Textract’s starting position.
2467 2468 2469 2470 2471 2472 |
# File 'lib/aws-sdk-textract/types.rb', line 2467 class PageClassification < Struct.new( :page_type, :page_number) SENSITIVE = [] include Aws::Structure end |
#page_type ⇒ Array<Types::Prediction>
The class, or document type, assigned to a detected Page object. The class, or document type, assigned to a detected Page object.
2467 2468 2469 2470 2471 2472 |
# File 'lib/aws-sdk-textract/types.rb', line 2467 class PageClassification < Struct.new( :page_type, :page_number) SENSITIVE = [] include Aws::Structure end |