Class: Aws::IoTWireless::Types::GetPositionEstimateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTWireless::Types::GetPositionEstimateRequest
- Defined in:
- gems/aws-sdk-iotwireless/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.
2357 2358 2359 2360 2361 2362 2363 2364 2365 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 2357 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.
2357 2358 2359 2360 2361 2362 2363 2364 2365 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 2357 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.
2357 2358 2359 2360 2361 2362 2363 2364 2365 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 2357 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.
2357 2358 2359 2360 2361 2362 2363 2364 2365 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 2357 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.
2357 2358 2359 2360 2361 2362 2363 2364 2365 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 2357 class GetPositionEstimateRequest < Struct.new( :wi_fi_access_points, :cell_towers, :ip, :gnss, :timestamp) SENSITIVE = [] include Aws::Structure end |