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.
2273 2274 2275 2276 2277 2278 2279 2280 2281 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 2273 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.
2273 2274 2275 2276 2277 2278 2279 2280 2281 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 2273 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.
2273 2274 2275 2276 2277 2278 2279 2280 2281 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 2273 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.
2273 2274 2275 2276 2277 2278 2279 2280 2281 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 2273 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.
2273 2274 2275 2276 2277 2278 2279 2280 2281 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 2273 class GetPositionEstimateRequest < Struct.new( :wi_fi_access_points, :cell_towers, :ip, :gnss, :timestamp) SENSITIVE = [] include Aws::Structure end |