Class: Aws::GeoRoutes::Types::RouteTransitPedestrianOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::RouteTransitPedestrianOptions
- Includes:
- Structure
- Defined in:
- 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
-
#max_distance ⇒ Integer
Maximum walking distance allowed.
-
#speed ⇒ Float
Walking speed.
Instance Attribute Details
#max_distance ⇒ Integer
Maximum walking distance allowed.
Unit: ‘meters`
7391 7392 7393 7394 7395 7396 |
# File 'lib/aws-sdk-georoutes/types.rb', line 7391 class RouteTransitPedestrianOptions < Struct.new( :max_distance, :speed) SENSITIVE = [:max_distance, :speed] include Aws::Structure end |
#speed ⇒ Float
Walking speed.
Unit: ‘kilometers per hour`
7391 7392 7393 7394 7395 7396 |
# File 'lib/aws-sdk-georoutes/types.rb', line 7391 class RouteTransitPedestrianOptions < Struct.new( :max_distance, :speed) SENSITIVE = [:max_distance, :speed] include Aws::Structure end |