Class: Aws::Kendra::Types::TableExcerpt

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

Overview

An excerpt from a table within a document. The table excerpt displays up to five columns and three rows, depending on how many table cells are relevant to the query and how many columns are available in the original table. The top most relevant cell is displayed in the table excerpt, along with the next most relevant cells.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#rowsArray<Types::TableRow>

A list of rows in the table excerpt.

Returns:



10271
10272
10273
10274
10275
10276
# File 'lib/aws-sdk-kendra/types.rb', line 10271

class TableExcerpt < Struct.new(
  :rows,
  :total_number_of_rows)
  SENSITIVE = []
  include Aws::Structure
end

#total_number_of_rowsInteger

A count of the number of rows in the original table within the document.

Returns:

  • (Integer)


10271
10272
10273
10274
10275
10276
# File 'lib/aws-sdk-kendra/types.rb', line 10271

class TableExcerpt < Struct.new(
  :rows,
  :total_number_of_rows)
  SENSITIVE = []
  include Aws::Structure
end