Class: Aws::IoT::Types::GeoLocationTarget
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::GeoLocationTarget
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
A geolocation target that you select to index. Each geolocation target contains a ‘name` and `order` key-value pair that specifies the geolocation target fields.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ‘name` of the geolocation target field.
 - 
  
    
      #order  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ‘order` of the geolocation target field.
 
Instance Attribute Details
#name ⇒ String
The ‘name` of the geolocation target field. If the target field is part of a named shadow, you must select the named shadow using the `namedShadow` filter.
      7200 7201 7202 7203 7204 7205  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 7200 class GeoLocationTarget < Struct.new( :name, :order) SENSITIVE = [] include Aws::Structure end  | 
  
#order ⇒ String
The ‘order` of the geolocation target field. This field is optional. The default value is `LatLon`.
      7200 7201 7202 7203 7204 7205  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 7200 class GeoLocationTarget < Struct.new( :name, :order) SENSITIVE = [] include Aws::Structure end  |