Class: Aws::LocationService::Types::InferredState
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::InferredState
- Defined in:
- gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb
Overview
The inferred state of the device, given the provided position, IP address, cellular signals, and Wi-Fi- access points.
Constant Summary collapse
- SENSITIVE =
[:position]
Instance Attribute Summary collapse
-
#accuracy ⇒ Types::PositionalAccuracy
The level of certainty of the inferred position.
-
#deviation_distance ⇒ Float
The distance between the inferred position and the device's self-reported position.
-
#position ⇒ Array<Float>
The device position inferred by the provided position, IP address, cellular signals, and Wi-Fi- access points.
-
#proxy_detected ⇒ Boolean
Indicates if a proxy was used.
Instance Attribute Details
#accuracy ⇒ Types::PositionalAccuracy
The level of certainty of the inferred position.
3824 3825 3826 3827 3828 3829 3830 3831 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 3824 class InferredState < Struct.new( :position, :accuracy, :deviation_distance, :proxy_detected) SENSITIVE = [:position] include Aws::Structure end |
#deviation_distance ⇒ Float
The distance between the inferred position and the device's self-reported position.
3824 3825 3826 3827 3828 3829 3830 3831 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 3824 class InferredState < Struct.new( :position, :accuracy, :deviation_distance, :proxy_detected) SENSITIVE = [:position] include Aws::Structure end |
#position ⇒ Array<Float>
The device position inferred by the provided position, IP address, cellular signals, and Wi-Fi- access points.
3824 3825 3826 3827 3828 3829 3830 3831 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 3824 class InferredState < Struct.new( :position, :accuracy, :deviation_distance, :proxy_detected) SENSITIVE = [:position] include Aws::Structure end |
#proxy_detected ⇒ Boolean
Indicates if a proxy was used.
3824 3825 3826 3827 3828 3829 3830 3831 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 3824 class InferredState < Struct.new( :position, :accuracy, :deviation_distance, :proxy_detected) SENSITIVE = [:position] include Aws::Structure end |