Class: Aws::GeoRoutes::Types::RouteScooterOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::RouteScooterOptions
- Defined in:
- gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb
Overview
Travel mode options when the provided travel mode is Scooter. For
GrabMaps customers, ap-southeast-1 and ap-southeast-5 regions
support only LicensePlate options.
Constant Summary collapse
- SENSITIVE =
[:engine_type, :max_speed, :occupancy]
Instance Attribute Summary collapse
-
#engine_type ⇒ String
Engine type of the vehicle.
-
#license_plate ⇒ Types::RouteVehicleLicensePlate
The vehicle License Plate.
-
#max_speed ⇒ Float
Maximum speed Not supported in
ap-southeast-1andap-southeast-5regions for [GrabMaps][1] customers. -
#occupancy ⇒ Integer
The number of occupants in the vehicle.
Instance Attribute Details
#engine_type ⇒ String
Engine type of the vehicle. Not supported in ap-southeast-1 and
ap-southeast-5 regions for GrabMaps customers.
5012 5013 5014 5015 5016 5017 5018 5019 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 5012 class RouteScooterOptions < Struct.new( :engine_type, :license_plate, :max_speed, :occupancy) SENSITIVE = [:engine_type, :max_speed, :occupancy] include Aws::Structure end |
#license_plate ⇒ Types::RouteVehicleLicensePlate
The vehicle License Plate.
5012 5013 5014 5015 5016 5017 5018 5019 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 5012 class RouteScooterOptions < Struct.new( :engine_type, :license_plate, :max_speed, :occupancy) SENSITIVE = [:engine_type, :max_speed, :occupancy] include Aws::Structure end |
#max_speed ⇒ Float
Maximum speed Not supported in ap-southeast-1 and ap-southeast-5
regions for GrabMaps customers.
Unit: kilometers per hour
5012 5013 5014 5015 5016 5017 5018 5019 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 5012 class RouteScooterOptions < Struct.new( :engine_type, :license_plate, :max_speed, :occupancy) SENSITIVE = [:engine_type, :max_speed, :occupancy] include Aws::Structure end |
#occupancy ⇒ Integer
The number of occupants in the vehicle. Not supported in
ap-southeast-1 and ap-southeast-5 regions for GrabMaps
customers.
Default value: 1
5012 5013 5014 5015 5016 5017 5018 5019 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 5012 class RouteScooterOptions < Struct.new( :engine_type, :license_plate, :max_speed, :occupancy) SENSITIVE = [:engine_type, :max_speed, :occupancy] include Aws::Structure end |