Class: Aws::Kendra::Types::TextWithHighlights
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::TextWithHighlights
- Defined in:
- gems/aws-sdk-kendra/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.
10401 10402 10403 10404 10405 10406 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 10401 class TextWithHighlights < Struct.new( :text, :highlights) SENSITIVE = [] include Aws::Structure end |
#text ⇒ String
The text to display to the user.
10401 10402 10403 10404 10405 10406 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 10401 class TextWithHighlights < Struct.new( :text, :highlights) SENSITIVE = [] include Aws::Structure end |