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.
1980 1981 1982 1983 1984 1985 1986 1987 1988 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 1980 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.
1980 1981 1982 1983 1984 1985 1986 1987 1988 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 1980 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.
1980 1981 1982 1983 1984 1985 1986 1987 1988 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 1980 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.
1980 1981 1982 1983 1984 1985 1986 1987 1988 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 1980 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.
1980 1981 1982 1983 1984 1985 1986 1987 1988 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 1980 class GetPositionEstimateRequest < Struct.new( :wi_fi_access_points, :cell_towers, :ip, :gnss, :timestamp) SENSITIVE = [] include Aws::Structure end |