Class: Aws::GeoPlaces::Types::Highlight
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoPlaces::Types::Highlight
- Defined in:
- gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb
Overview
Indicates the starting and ending index of the text query that match the found title.
Constant Summary collapse
- SENSITIVE =
[:value]
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.
1544 1545 1546 1547 1548 1549 1550 |
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 1544 class Highlight < Struct.new( :start_index, :end_index, :value) SENSITIVE = [:value] include Aws::Structure end |