Class: Aws::GeoPlaces::Types::ParsedQueryComponent
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::GeoPlaces::Types::ParsedQueryComponent
 
 
- Defined in:
 - gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb
 
Overview
Parsed components in the provided QueryText.
Constant Summary collapse
- SENSITIVE =
 [:value, :query_component]
Instance Attribute Summary collapse
- 
  
    
      #end_index  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
End index of the parsed query component.
 - 
  
    
      #query_component  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The address component that the parsed query component corresponds to.
 - 
  
    
      #start_index  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Start index of the parsed query component.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Value of the parsed query component.
 
Instance Attribute Details
#end_index ⇒ Integer
End index of the parsed query component.
      1721 1722 1723 1724 1725 1726 1727 1728  | 
    
      # File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 1721 class ParsedQueryComponent < Struct.new( :start_index, :end_index, :value, :query_component) SENSITIVE = [:value, :query_component] include Aws::Structure end  | 
  
#query_component ⇒ String
The address component that the parsed query component corresponds to.
      1721 1722 1723 1724 1725 1726 1727 1728  | 
    
      # File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 1721 class ParsedQueryComponent < Struct.new( :start_index, :end_index, :value, :query_component) SENSITIVE = [:value, :query_component] include Aws::Structure end  | 
  
#start_index ⇒ Integer
Start index of the parsed query component.
      1721 1722 1723 1724 1725 1726 1727 1728  | 
    
      # File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 1721 class ParsedQueryComponent < Struct.new( :start_index, :end_index, :value, :query_component) SENSITIVE = [:value, :query_component] include Aws::Structure end  | 
  
#value ⇒ String
Value of the parsed query component.
      1721 1722 1723 1724 1725 1726 1727 1728  | 
    
      # File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 1721 class ParsedQueryComponent < Struct.new( :start_index, :end_index, :value, :query_component) SENSITIVE = [:value, :query_component] include Aws::Structure end  |