Class: Aws::LocationService::Types::BatchUpdateDevicePositionError
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::BatchUpdateDevicePositionError
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-locationservice/types.rb
Overview
Contains error details for each device that failed to update its position.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#device_id ⇒ String
The device associated with the failed location update.
-
#error ⇒ Types::BatchItemError
Contains details related to the error code such as the error code and error message.
-
#sample_time ⇒ Time
The timestamp at which the device position was determined.
Instance Attribute Details
#device_id ⇒ String
The device associated with the failed location update.
574 575 576 577 578 579 580 |
# File 'lib/aws-sdk-locationservice/types.rb', line 574 class BatchUpdateDevicePositionError < Struct.new( :device_id, :sample_time, :error) SENSITIVE = [] include Aws::Structure end |
#error ⇒ Types::BatchItemError
Contains details related to the error code such as the error code and error message.
574 575 576 577 578 579 580 |
# File 'lib/aws-sdk-locationservice/types.rb', line 574 class BatchUpdateDevicePositionError < Struct.new( :device_id, :sample_time, :error) SENSITIVE = [] include Aws::Structure end |
#sample_time ⇒ Time
The timestamp at which the device position was determined. Uses [ ISO 8601] format: ‘YYYY-MM-DDThh:mm:ss.sssZ`.
574 575 576 577 578 579 580 |
# File 'lib/aws-sdk-locationservice/types.rb', line 574 class BatchUpdateDevicePositionError < Struct.new( :device_id, :sample_time, :error) SENSITIVE = [] include Aws::Structure end |