Class: Aws::LocationService::Types::PositionalAccuracy
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::PositionalAccuracy
- Defined in:
- gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb
Overview
Defines the level of certainty of the position.
Constant Summary collapse
- SENSITIVE =
[:horizontal]
Instance Attribute Summary collapse
-
#horizontal ⇒ Float
Estimated maximum distance, in meters, between the measured position and the true position of a device, along the Earth's surface.
Instance Attribute Details
#horizontal ⇒ Float
Estimated maximum distance, in meters, between the measured position and the true position of a device, along the Earth's surface.
5492 5493 5494 5495 5496 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 5492 class PositionalAccuracy < Struct.new( :horizontal) SENSITIVE = [:horizontal] include Aws::Structure end |