Class: Aws::LocationService::Types::BatchUpdateDevicePositionError
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::BatchUpdateDevicePositionError
- Defined in:
- gems/aws-sdk-locationservice/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.
550 551 552 553 554 555 556 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 550 class BatchUpdateDevicePositionError < Struct.new( :device_id, :error, :sample_time) SENSITIVE = [] include Aws::Structure end |
#error ⇒ Types::BatchItemError
Contains details related to the error code such as the error code and error message.
550 551 552 553 554 555 556 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 550 class BatchUpdateDevicePositionError < Struct.new( :device_id, :error, :sample_time) 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
.
550 551 552 553 554 555 556 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 550 class BatchUpdateDevicePositionError < Struct.new( :device_id, :error, :sample_time) SENSITIVE = [] include Aws::Structure end |