Class: Aws::GeoPlaces::Types::Highlight
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoPlaces::Types::Highlight
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-geoplaces/types.rb
Overview
Describes how parts of the result response match the input query.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_index ⇒ Integer
End index of the highlight.
-
#start_index ⇒ Integer
Start index of the highlight.
-
#value ⇒ String
The highlight’s value.
Instance Attribute Details
#end_index ⇒ Integer
End index of the highlight.
1319 1320 1321 1322 1323 1324 1325 |
# File 'lib/aws-sdk-geoplaces/types.rb', line 1319 class Highlight < Struct.new( :start_index, :end_index, :value) SENSITIVE = [] include Aws::Structure end |