Class: Aws::LocationService::Types::DeviceState
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::DeviceState
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-locationservice/types.rb
Overview
The device’s position, IP address, and Wi-Fi access points.
Constant Summary collapse
- SENSITIVE =
[:position]
Instance Attribute Summary collapse
-
#accuracy ⇒ Types::PositionalAccuracy
Defines the level of certainty of the position.
-
#cell_signals ⇒ Types::CellSignals
The cellular network infrastructure that the device is connected to.
-
#device_id ⇒ String
The device identifier.
-
#ipv_4_address ⇒ String
The device’s Ipv4 address.
-
#position ⇒ Array<Float>
The last known device position.
-
#sample_time ⇒ Time
The timestamp at which the device’s position was determined.
-
#wi_fi_access_points ⇒ Array<Types::WiFiAccessPoint>
The Wi-Fi access points the device is using.
Instance Attribute Details
#accuracy ⇒ Types::PositionalAccuracy
Defines the level of certainty of the position.
2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'lib/aws-sdk-locationservice/types.rb', line 2943 class DeviceState < Struct.new( :device_id, :sample_time, :position, :accuracy, :ipv_4_address, :wi_fi_access_points, :cell_signals) SENSITIVE = [:position] include Aws::Structure end |
#cell_signals ⇒ Types::CellSignals
The cellular network infrastructure that the device is connected to.
2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'lib/aws-sdk-locationservice/types.rb', line 2943 class DeviceState < Struct.new( :device_id, :sample_time, :position, :accuracy, :ipv_4_address, :wi_fi_access_points, :cell_signals) SENSITIVE = [:position] include Aws::Structure end |
#device_id ⇒ String
The device identifier.
2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'lib/aws-sdk-locationservice/types.rb', line 2943 class DeviceState < Struct.new( :device_id, :sample_time, :position, :accuracy, :ipv_4_address, :wi_fi_access_points, :cell_signals) SENSITIVE = [:position] include Aws::Structure end |
#ipv_4_address ⇒ String
The device’s Ipv4 address.
2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'lib/aws-sdk-locationservice/types.rb', line 2943 class DeviceState < Struct.new( :device_id, :sample_time, :position, :accuracy, :ipv_4_address, :wi_fi_access_points, :cell_signals) SENSITIVE = [:position] include Aws::Structure end |
#position ⇒ Array<Float>
The last known device position.
2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'lib/aws-sdk-locationservice/types.rb', line 2943 class DeviceState < Struct.new( :device_id, :sample_time, :position, :accuracy, :ipv_4_address, :wi_fi_access_points, :cell_signals) SENSITIVE = [:position] include Aws::Structure end |
#sample_time ⇒ Time
The timestamp at which the device’s position was determined. Uses [ ISO 8601 ][1] format: ‘YYYY-MM-DDThh:mm:ss.sssZ`.
2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'lib/aws-sdk-locationservice/types.rb', line 2943 class DeviceState < Struct.new( :device_id, :sample_time, :position, :accuracy, :ipv_4_address, :wi_fi_access_points, :cell_signals) SENSITIVE = [:position] include Aws::Structure end |
#wi_fi_access_points ⇒ Array<Types::WiFiAccessPoint>
The Wi-Fi access points the device is using.
2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'lib/aws-sdk-locationservice/types.rb', line 2943 class DeviceState < Struct.new( :device_id, :sample_time, :position, :accuracy, :ipv_4_address, :wi_fi_access_points, :cell_signals) SENSITIVE = [:position] include Aws::Structure end |