Class: Aws::LocationService::Types::ListDevicePositionsResponseEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::ListDevicePositionsResponseEntry
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-locationservice/types.rb
Overview
Contains the tracker resource details.
Constant Summary collapse
- SENSITIVE =
[:position, :position_properties]
Instance Attribute Summary collapse
-
#accuracy ⇒ Types::PositionalAccuracy
The accuracy of the device position.
-
#device_id ⇒ String
The ID of the device for this position.
-
#position ⇒ Array<Float>
The last known device position.
-
#position_properties ⇒ Hash<String,String>
The properties associated with the position.
-
#sample_time ⇒ Time
The timestamp at which the device position was determined.
Instance Attribute Details
#accuracy ⇒ Types::PositionalAccuracy
The accuracy of the device position.
4044 4045 4046 4047 4048 4049 4050 4051 4052 |
# File 'lib/aws-sdk-locationservice/types.rb', line 4044 class ListDevicePositionsResponseEntry < Struct.new( :device_id, :sample_time, :position, :accuracy, :position_properties) SENSITIVE = [:position, :position_properties] include Aws::Structure end |
#device_id ⇒ String
The ID of the device for this position.
4044 4045 4046 4047 4048 4049 4050 4051 4052 |
# File 'lib/aws-sdk-locationservice/types.rb', line 4044 class ListDevicePositionsResponseEntry < Struct.new( :device_id, :sample_time, :position, :accuracy, :position_properties) SENSITIVE = [:position, :position_properties] include Aws::Structure end |
#position ⇒ Array<Float>
The last known device position. Empty if no positions currently stored.
4044 4045 4046 4047 4048 4049 4050 4051 4052 |
# File 'lib/aws-sdk-locationservice/types.rb', line 4044 class ListDevicePositionsResponseEntry < Struct.new( :device_id, :sample_time, :position, :accuracy, :position_properties) SENSITIVE = [:position, :position_properties] include Aws::Structure end |
#position_properties ⇒ Hash<String,String>
The properties associated with the position.
4044 4045 4046 4047 4048 4049 4050 4051 4052 |
# File 'lib/aws-sdk-locationservice/types.rb', line 4044 class ListDevicePositionsResponseEntry < Struct.new( :device_id, :sample_time, :position, :accuracy, :position_properties) SENSITIVE = [:position, :position_properties] 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`.
4044 4045 4046 4047 4048 4049 4050 4051 4052 |
# File 'lib/aws-sdk-locationservice/types.rb', line 4044 class ListDevicePositionsResponseEntry < Struct.new( :device_id, :sample_time, :position, :accuracy, :position_properties) SENSITIVE = [:position, :position_properties] include Aws::Structure end |