Class: Aws::GeoRoutes::Types::RoutePassThroughPlace

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#original_positionArray<Float>

Position provided in the request.

Returns:

  • (Array<Float>)


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

#positionArray<Float>

Position defined as ‘[longitude, latitude]`.

Returns:

  • (Array<Float>)


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_indexInteger

Index of the waypoint in the request.

Returns:

  • (Integer)


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