Class: Aws::IoTWireless::Types::WiFiCellular
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTWireless::Types::WiFiCellular
- Defined in:
- gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb
Overview
Configuration for WiFi and cellular location payloads. Contains the confidence level that determines the size of the uncertainty radius in the position estimate.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#confidence_percent ⇒ Integer
The confidence level for WiFi and cellular position estimates, expressed as a percentage.
Instance Attribute Details
#confidence_percent ⇒ Integer
The confidence level for WiFi and cellular position estimates, expressed as a percentage. This value determines the size of the confidence area or uncertainty radius for the estimated position. A higher confidence level produces a larger uncertainty radius, while a lower confidence level produces a smaller, more precise radius.
Valid range: 50 to 99 inclusive. If not specified, the default value of 68 is used, which corresponds to approximately one standard deviation of the normal distribution.
7370 7371 7372 7373 7374 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 7370 class WiFiCellular < Struct.new( :confidence_percent) SENSITIVE = [] include Aws::Structure end |