Class: Aws::Textract::Types::SplitDocument
- Inherits:
-
Struct
- Object
- Struct
- Aws::Textract::Types::SplitDocument
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-textract/types.rb
Overview
Contains information about the pages of a document, defined by logical boundary.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#index ⇒ Integer
The index for a given document in a DocumentGroup of a specific Type.
-
#pages ⇒ Array<Integer>
An array of page numbers for a for a given document, ordered by logical boundary.
Instance Attribute Details
#index ⇒ Integer
The index for a given document in a DocumentGroup of a specific Type.
2716 2717 2718 2719 2720 2721 |
# File 'lib/aws-sdk-textract/types.rb', line 2716 class SplitDocument < Struct.new( :index, :pages) SENSITIVE = [] include Aws::Structure end |
#pages ⇒ Array<Integer>
An array of page numbers for a for a given document, ordered by logical boundary.
2716 2717 2718 2719 2720 2721 |
# File 'lib/aws-sdk-textract/types.rb', line 2716 class SplitDocument < Struct.new( :index, :pages) SENSITIVE = [] include Aws::Structure end |