Class: Aws::Textract::Types::SplitDocument

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

Instance Attribute Details

#indexInteger

The index for a given document in a DocumentGroup of a specific Type.

Returns:

  • (Integer)


2716
2717
2718
2719
2720
2721
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 2716

class SplitDocument < Struct.new(
  :index,
  :pages)
  SENSITIVE = []
  include Aws::Structure
end

#pagesArray<Integer>

An array of page numbers for a for a given document, ordered by logical boundary.

Returns:

  • (Array<Integer>)


2716
2717
2718
2719
2720
2721
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 2716

class SplitDocument < Struct.new(
  :index,
  :pages)
  SENSITIVE = []
  include Aws::Structure
end