Class: Aws::Kendra::Types::TableCell

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#headerBoolean

‘TRUE` means that the table cell should be treated as a header.

Returns:

  • (Boolean)


10191
10192
10193
10194
10195
10196
10197
10198
# File 'lib/aws-sdk-kendra/types.rb', line 10191

class TableCell < Struct.new(
  :value,
  :top_answer,
  :highlighted,
  :header)
  SENSITIVE = []
  include Aws::Structure
end

#highlightedBoolean

‘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.

Returns:

  • (Boolean)


10191
10192
10193
10194
10195
10196
10197
10198
# File 'lib/aws-sdk-kendra/types.rb', line 10191

class TableCell < Struct.new(
  :value,
  :top_answer,
  :highlighted,
  :header)
  SENSITIVE = []
  include Aws::Structure
end

#top_answerBoolean

‘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.

Returns:

  • (Boolean)


10191
10192
10193
10194
10195
10196
10197
10198
# File 'lib/aws-sdk-kendra/types.rb', line 10191

class TableCell < Struct.new(
  :value,
  :top_answer,
  :highlighted,
  :header)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

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.

Returns:

  • (String)


10191
10192
10193
10194
10195
10196
10197
10198
# File 'lib/aws-sdk-kendra/types.rb', line 10191

class TableCell < Struct.new(
  :value,
  :top_answer,
  :highlighted,
  :header)
  SENSITIVE = []
  include Aws::Structure
end