Class: Aws::Kendra::Types::TableCell
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::TableCell
- Defined in:
- gems/aws-sdk-kendra/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.
10191 10192 10193 10194 10195 10196 10197 10198 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 10191 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.
10191 10192 10193 10194 10195 10196 10197 10198 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 10191 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.
10191 10192 10193 10194 10195 10196 10197 10198 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 10191 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.
10191 10192 10193 10194 10195 10196 10197 10198 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 10191 class TableCell < Struct.new( :value, :top_answer, :highlighted, :header) SENSITIVE = [] include Aws::Structure end |