Class: Aws::GeoRoutes::Types::RouteTransitPedestrianOptions

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

Overview

Options for the pedestrian leg of the transit route.

Constant Summary collapse

SENSITIVE =
[:max_distance, :speed]

Instance Attribute Summary collapse

Instance Attribute Details

#max_distanceInteger

Maximum walking distance allowed.

Unit: meters

Returns:

  • (Integer)


7391
7392
7393
7394
7395
7396
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 7391

class RouteTransitPedestrianOptions < Struct.new(
  :max_distance,
  :speed)
  SENSITIVE = [:max_distance, :speed]
  include Aws::Structure
end

#speedFloat

Walking speed.

Unit: kilometers per hour

Returns:

  • (Float)


7391
7392
7393
7394
7395
7396
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 7391

class RouteTransitPedestrianOptions < Struct.new(
  :max_distance,
  :speed)
  SENSITIVE = [:max_distance, :speed]
  include Aws::Structure
end