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

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



10217
10218
10219
10220
10221
10222
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 10217

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)


10217
10218
10219
10220
10221
10222
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 10217

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