Class: Aws::IoTWireless::Types::GetPositionEstimateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTWireless::Types::GetPositionEstimateRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotwireless/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cell_towers ⇒ Types::CellTowers
Retrieves an estimated device position by resolving measurement data from cellular radio towers.
-
#gnss ⇒ Types::Gnss
Retrieves an estimated device position by resolving the global navigation satellite system (GNSS) scan data.
-
#ip ⇒ Types::Ip
Retrieves an estimated device position by resolving the IP address information from the device.
-
#timestamp ⇒ Time
Optional information that specifies the time when the position information will be resolved.
-
#wi_fi_access_points ⇒ Array<Types::WiFiAccessPoint>
Retrieves an estimated device position by resolving WLAN measurement data.
Instance Attribute Details
#cell_towers ⇒ Types::CellTowers
Retrieves an estimated device position by resolving measurement data from cellular radio towers. The position is resolved using HERE’s cellular-based solver.
2341 2342 2343 2344 2345 2346 2347 2348 2349 |
# File 'lib/aws-sdk-iotwireless/types.rb', line 2341 class GetPositionEstimateRequest < Struct.new( :wi_fi_access_points, :cell_towers, :ip, :gnss, :timestamp) SENSITIVE = [] include Aws::Structure end |
#gnss ⇒ Types::Gnss
Retrieves an estimated device position by resolving the global navigation satellite system (GNSS) scan data. The position is resolved using the GNSS solver powered by LoRa Cloud.
2341 2342 2343 2344 2345 2346 2347 2348 2349 |
# File 'lib/aws-sdk-iotwireless/types.rb', line 2341 class GetPositionEstimateRequest < Struct.new( :wi_fi_access_points, :cell_towers, :ip, :gnss, :timestamp) SENSITIVE = [] include Aws::Structure end |
#ip ⇒ Types::Ip
Retrieves an estimated device position by resolving the IP address information from the device. The position is resolved using MaxMind’s IP-based solver.
2341 2342 2343 2344 2345 2346 2347 2348 2349 |
# File 'lib/aws-sdk-iotwireless/types.rb', line 2341 class GetPositionEstimateRequest < Struct.new( :wi_fi_access_points, :cell_towers, :ip, :gnss, :timestamp) SENSITIVE = [] include Aws::Structure end |
#timestamp ⇒ Time
Optional information that specifies the time when the position information will be resolved. It uses the Unix timestamp format. If not specified, the time at which the request was received will be used.
2341 2342 2343 2344 2345 2346 2347 2348 2349 |
# File 'lib/aws-sdk-iotwireless/types.rb', line 2341 class GetPositionEstimateRequest < Struct.new( :wi_fi_access_points, :cell_towers, :ip, :gnss, :timestamp) SENSITIVE = [] include Aws::Structure end |
#wi_fi_access_points ⇒ Array<Types::WiFiAccessPoint>
Retrieves an estimated device position by resolving WLAN measurement data. The position is resolved using HERE’s Wi-Fi based solver.
2341 2342 2343 2344 2345 2346 2347 2348 2349 |
# File 'lib/aws-sdk-iotwireless/types.rb', line 2341 class GetPositionEstimateRequest < Struct.new( :wi_fi_access_points, :cell_towers, :ip, :gnss, :timestamp) SENSITIVE = [] include Aws::Structure end |