Class: Aws::Kendra::Types::TableCell
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::TableCell
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Provides information about a table cell in a table excerpt.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#header ⇒ Boolean
‘TRUE` means that the table cell should be treated as a header.
-
#highlighted ⇒ Boolean
‘TRUE` means that the table cell has a high enough confidence and is relevant to the query, so the value or content should be highlighted.
-
#top_answer ⇒ Boolean
‘TRUE` if the response of the table cell is the top answer.
-
#value ⇒ String
The actual value or content within a table cell.
Instance Attribute Details
#header ⇒ Boolean
‘TRUE` means that the table cell should be treated as a header.
9978 9979 9980 9981 9982 9983 9984 9985 |
# File 'lib/aws-sdk-kendra/types.rb', line 9978 class TableCell < Struct.new( :value, :top_answer, :highlighted, :header) SENSITIVE = [] include Aws::Structure end |
#highlighted ⇒ Boolean
‘TRUE` means that the table cell has a high enough confidence and is relevant to the query, so the value or content should be highlighted.
9978 9979 9980 9981 9982 9983 9984 9985 |
# File 'lib/aws-sdk-kendra/types.rb', line 9978 class TableCell < Struct.new( :value, :top_answer, :highlighted, :header) SENSITIVE = [] include Aws::Structure end |
#top_answer ⇒ Boolean
‘TRUE` if the response of the table cell is the top answer. This is the cell value or content with the highest confidence score or is the most relevant to the query.
9978 9979 9980 9981 9982 9983 9984 9985 |
# File 'lib/aws-sdk-kendra/types.rb', line 9978 class TableCell < Struct.new( :value, :top_answer, :highlighted, :header) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The actual value or content within a table cell. A table cell could contain a date value of a year, or a string value of text, for example.
9978 9979 9980 9981 9982 9983 9984 9985 |
# File 'lib/aws-sdk-kendra/types.rb', line 9978 class TableCell < Struct.new( :value, :top_answer, :highlighted, :header) SENSITIVE = [] include Aws::Structure end |