Class: Aws::Kendra::Types::TextWithHighlights
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::TextWithHighlights
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Provides text and information about where to highlight the text.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#highlights ⇒ Array<Types::Highlight>
The beginning and end of the text that should be highlighted.
-
#text ⇒ String
The text to display to the user.
Instance Attribute Details
#highlights ⇒ Array<Types::Highlight>
The beginning and end of the text that should be highlighted.
10338 10339 10340 10341 10342 10343 |
# File 'lib/aws-sdk-kendra/types.rb', line 10338 class TextWithHighlights < Struct.new( :text, :highlights) SENSITIVE = [] include Aws::Structure end |
#text ⇒ String
The text to display to the user.
10338 10339 10340 10341 10342 10343 |
# File 'lib/aws-sdk-kendra/types.rb', line 10338 class TextWithHighlights < Struct.new( :text, :highlights) SENSITIVE = [] include Aws::Structure end |