Class: Aws::GeoRoutes::Types::RouteDestinationOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::RouteDestinationOptions
- Defined in:
- gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb
Overview
Options related to the destination.
Constant Summary collapse
- SENSITIVE =
[:avoid_actions_for_distance, :avoid_u_turns, :heading, :stop_duration]
Instance Attribute Summary collapse
-
#avoid_actions_for_distance ⇒ Integer
The distance in meters from the destination point within which certain routing actions (such as U-turns or left turns across traffic) are restricted.
-
#avoid_u_turns ⇒ Boolean
Avoid U-turns for calculation on highways and motorways.
-
#heading ⇒ Float
GPS Heading at the position.
-
#matching ⇒ Types::RouteMatchingOptions
Options to configure matching the provided position to the road network.
-
#side_of_street ⇒ Types::RouteSideOfStreetOptions
Options to configure matching the provided position to a side of the street.
-
#stop_duration ⇒ Integer
Duration of the stop.
Instance Attribute Details
#avoid_actions_for_distance ⇒ Integer
The distance in meters from the destination point within which certain routing actions (such as U-turns or left turns across traffic) are restricted. This helps generate more practical routes by avoiding potentially dangerous maneuvers near the endpoint.
2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2760 class RouteDestinationOptions < Struct.new( :avoid_actions_for_distance, :avoid_u_turns, :heading, :matching, :side_of_street, :stop_duration) SENSITIVE = [:avoid_actions_for_distance, :avoid_u_turns, :heading, :stop_duration] include Aws::Structure end |
#avoid_u_turns ⇒ Boolean
Avoid U-turns for calculation on highways and motorways.
2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2760 class RouteDestinationOptions < Struct.new( :avoid_actions_for_distance, :avoid_u_turns, :heading, :matching, :side_of_street, :stop_duration) SENSITIVE = [:avoid_actions_for_distance, :avoid_u_turns, :heading, :stop_duration] include Aws::Structure end |
#heading ⇒ Float
GPS Heading at the position.
2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2760 class RouteDestinationOptions < Struct.new( :avoid_actions_for_distance, :avoid_u_turns, :heading, :matching, :side_of_street, :stop_duration) SENSITIVE = [:avoid_actions_for_distance, :avoid_u_turns, :heading, :stop_duration] include Aws::Structure end |
#matching ⇒ Types::RouteMatchingOptions
Options to configure matching the provided position to the road network.
2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2760 class RouteDestinationOptions < Struct.new( :avoid_actions_for_distance, :avoid_u_turns, :heading, :matching, :side_of_street, :stop_duration) SENSITIVE = [:avoid_actions_for_distance, :avoid_u_turns, :heading, :stop_duration] include Aws::Structure end |
#side_of_street ⇒ Types::RouteSideOfStreetOptions
Options to configure matching the provided position to a side of the street.
2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2760 class RouteDestinationOptions < Struct.new( :avoid_actions_for_distance, :avoid_u_turns, :heading, :matching, :side_of_street, :stop_duration) SENSITIVE = [:avoid_actions_for_distance, :avoid_u_turns, :heading, :stop_duration] include Aws::Structure end |
#stop_duration ⇒ Integer
Duration of the stop.
Unit: seconds
2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2760 class RouteDestinationOptions < Struct.new( :avoid_actions_for_distance, :avoid_u_turns, :heading, :matching, :side_of_street, :stop_duration) SENSITIVE = [:avoid_actions_for_distance, :avoid_u_turns, :heading, :stop_duration] include Aws::Structure end |