Class: Aws::GeoRoutes::Types::RouteVehiclePlace

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-georoutes/types.rb

Overview

Place details corresponding to the arrival or departure.

Constant Summary collapse

SENSITIVE =
[:original_position, :position]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the place.

Returns:

  • (String)


5384
5385
5386
5387
5388
5389
5390
5391
5392
# File 'lib/aws-sdk-georoutes/types.rb', line 5384

class RouteVehiclePlace < Struct.new(
  :name,
  :original_position,
  :position,
  :side_of_street,
  :waypoint_index)
  SENSITIVE = [:original_position, :position]
  include Aws::Structure
end

#original_positionArray<Float>

Position provided in the request.

Returns:

  • (Array<Float>)


5384
5385
5386
5387
5388
5389
5390
5391
5392
# File 'lib/aws-sdk-georoutes/types.rb', line 5384

class RouteVehiclePlace < Struct.new(
  :name,
  :original_position,
  :position,
  :side_of_street,
  :waypoint_index)
  SENSITIVE = [:original_position, :position]
  include Aws::Structure
end

#positionArray<Float>

Position defined as ‘[longitude, latitude]`.

Returns:

  • (Array<Float>)


5384
5385
5386
5387
5388
5389
5390
5391
5392
# File 'lib/aws-sdk-georoutes/types.rb', line 5384

class RouteVehiclePlace < Struct.new(
  :name,
  :original_position,
  :position,
  :side_of_street,
  :waypoint_index)
  SENSITIVE = [:original_position, :position]
  include Aws::Structure
end

#side_of_streetString

Options to configure matching the provided position to a side of the street.

Returns:

  • (String)


5384
5385
5386
5387
5388
5389
5390
5391
5392
# File 'lib/aws-sdk-georoutes/types.rb', line 5384

class RouteVehiclePlace < Struct.new(
  :name,
  :original_position,
  :position,
  :side_of_street,
  :waypoint_index)
  SENSITIVE = [:original_position, :position]
  include Aws::Structure
end

#waypoint_indexInteger

Index of the waypoint in the request.

Returns:

  • (Integer)


5384
5385
5386
5387
5388
5389
5390
5391
5392
# File 'lib/aws-sdk-georoutes/types.rb', line 5384

class RouteVehiclePlace < Struct.new(
  :name,
  :original_position,
  :position,
  :side_of_street,
  :waypoint_index)
  SENSITIVE = [:original_position, :position]
  include Aws::Structure
end