Class: Aws::Kendra::Types::SuggestionTextWithHighlights
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::SuggestionTextWithHighlights
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Provides text and information about where to highlight the query suggestion text.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#highlights ⇒ Array<Types::SuggestionHighlight>
The beginning and end of the query suggestion text that should be highlighted.
-
#text ⇒ String
The query suggestion text to display to the user.
Instance Attribute Details
#highlights ⇒ Array<Types::SuggestionHighlight>
The beginning and end of the query suggestion text that should be highlighted.
10143 10144 10145 10146 10147 10148 |
# File 'lib/aws-sdk-kendra/types.rb', line 10143 class SuggestionTextWithHighlights < Struct.new( :text, :highlights) SENSITIVE = [] include Aws::Structure end |
#text ⇒ String
The query suggestion text to display to the user.
10143 10144 10145 10146 10147 10148 |
# File 'lib/aws-sdk-kendra/types.rb', line 10143 class SuggestionTextWithHighlights < Struct.new( :text, :highlights) SENSITIVE = [] include Aws::Structure end |