Class: Aws::GeoRoutes::Types::RoutePassThroughPlace
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::RoutePassThroughPlace
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-georoutes/types.rb
Overview
The place where the waypoint is passed through and not treated as a stop.
Constant Summary collapse
- SENSITIVE =
[:original_position, :position]
Instance Attribute Summary collapse
-
#original_position ⇒ Array<Float>
Position provided in the request.
-
#position ⇒ Array<Float>
Position defined as ‘[longitude, latitude]`.
-
#waypoint_index ⇒ Integer
Index of the waypoint in the request.
Instance Attribute Details
#original_position ⇒ Array<Float>
Position provided in the request.
3685 3686 3687 3688 3689 3690 3691 |
# File 'lib/aws-sdk-georoutes/types.rb', line 3685 class RoutePassThroughPlace < Struct.new( :original_position, :position, :waypoint_index) SENSITIVE = [:original_position, :position] include Aws::Structure end |
#position ⇒ Array<Float>
Position defined as ‘[longitude, latitude]`.
3685 3686 3687 3688 3689 3690 3691 |
# File 'lib/aws-sdk-georoutes/types.rb', line 3685 class RoutePassThroughPlace < Struct.new( :original_position, :position, :waypoint_index) SENSITIVE = [:original_position, :position] include Aws::Structure end |
#waypoint_index ⇒ Integer
Index of the waypoint in the request.
3685 3686 3687 3688 3689 3690 3691 |
# File 'lib/aws-sdk-georoutes/types.rb', line 3685 class RoutePassThroughPlace < Struct.new( :original_position, :position, :waypoint_index) SENSITIVE = [:original_position, :position] include Aws::Structure end |