Class: Aws::Kendra::Types::TableExcerpt
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::TableExcerpt
- 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
-
#rows ⇒ Array<Types::TableRow>
A list of rows in the table excerpt.
-
#total_number_of_rows ⇒ Integer
A count of the number of rows in the original table within the document.
Instance Attribute Details
#rows ⇒ Array<Types::TableRow>
A list of rows in the table excerpt.
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_rows ⇒ Integer
A count of the number of rows in the original table within the document.
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 |