Class: Aws::GeoRoutes::Types::RouteCarOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::RouteCarOptions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-georoutes/types.rb
Overview
Travel mode options when the provided travel mode is “Car”
Constant Summary collapse
- SENSITIVE =
[]
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 specified.
-
#occupancy ⇒ Integer
The number of occupants in the vehicle.
Instance Attribute Details
#engine_type ⇒ String
Engine type of the vehicle.
2098 2099 2100 2101 2102 2103 2104 2105 |
# File 'lib/aws-sdk-georoutes/types.rb', line 2098 class RouteCarOptions < Struct.new( :engine_type, :license_plate, :max_speed, :occupancy) SENSITIVE = [] include Aws::Structure end |
#license_plate ⇒ Types::RouteVehicleLicensePlate
The vehicle License Plate.
2098 2099 2100 2101 2102 2103 2104 2105 |
# File 'lib/aws-sdk-georoutes/types.rb', line 2098 class RouteCarOptions < Struct.new( :engine_type, :license_plate, :max_speed, :occupancy) SENSITIVE = [] include Aws::Structure end |
#max_speed ⇒ Float
Maximum speed specified.
Unit: ‘KilometersPerHour`
2098 2099 2100 2101 2102 2103 2104 2105 |
# File 'lib/aws-sdk-georoutes/types.rb', line 2098 class RouteCarOptions < Struct.new( :engine_type, :license_plate, :max_speed, :occupancy) SENSITIVE = [] include Aws::Structure end |
#occupancy ⇒ Integer
The number of occupants in the vehicle.
Default Value: ‘1`
2098 2099 2100 2101 2102 2103 2104 2105 |
# File 'lib/aws-sdk-georoutes/types.rb', line 2098 class RouteCarOptions < Struct.new( :engine_type, :license_plate, :max_speed, :occupancy) SENSITIVE = [] include Aws::Structure end |