Class: Aws::LocationService::Types::BatchEvaluateGeofencesError
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::LocationService::Types::BatchEvaluateGeofencesError
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-locationservice/types.rb
 
Overview
Contains error details for each device that failed to evaluate its position against the geofences in a given geofence collection.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #device_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The device associated with the position evaluation error.
 - 
  
    
      #error  ⇒ Types::BatchItemError 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Contains details associated to the batch error.
 - 
  
    
      #sample_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies a timestamp for when the error occurred in [ISO 8601] format: ‘YYYY-MM-DDThh:mm:ss.sssZ`.
 
Instance Attribute Details
#device_id ⇒ String
The device associated with the position evaluation error.
      302 303 304 305 306 307 308  | 
    
      # File 'lib/aws-sdk-locationservice/types.rb', line 302 class BatchEvaluateGeofencesError < Struct.new( :device_id, :sample_time, :error) SENSITIVE = [] include Aws::Structure end  | 
  
#error ⇒ Types::BatchItemError
Contains details associated to the batch error.
      302 303 304 305 306 307 308  | 
    
      # File 'lib/aws-sdk-locationservice/types.rb', line 302 class BatchEvaluateGeofencesError < Struct.new( :device_id, :sample_time, :error) SENSITIVE = [] include Aws::Structure end  | 
  
#sample_time ⇒ Time
Specifies a timestamp for when the error occurred in [ISO 8601] format: ‘YYYY-MM-DDThh:mm:ss.sssZ`
      302 303 304 305 306 307 308  | 
    
      # File 'lib/aws-sdk-locationservice/types.rb', line 302 class BatchEvaluateGeofencesError < Struct.new( :device_id, :sample_time, :error) SENSITIVE = [] include Aws::Structure end  |