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)


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

#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)


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_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)


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

#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)


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