Class: Aws::GeoRoutes::Types::RouteMatrixCarOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::RouteMatrixCarOptions
- Defined in:
- gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb
Overview
Travel mode options when the provided travel mode is Car.
Constant Summary collapse
- SENSITIVE =
[:license_plate, :max_speed, :occupancy]
Instance Attribute Summary collapse
-
#license_plate ⇒ Types::RouteMatrixVehicleLicensePlate
The vehicle License Plate.
-
#max_speed ⇒ Float
Maximum speed.
-
#occupancy ⇒ Integer
The number of occupants in the vehicle.
Instance Attribute Details
#license_plate ⇒ Types::RouteMatrixVehicleLicensePlate
The vehicle License Plate.
3720 3721 3722 3723 3724 3725 3726 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 3720 class RouteMatrixCarOptions < Struct.new( :license_plate, :max_speed, :occupancy) SENSITIVE = [:license_plate, :max_speed, :occupancy] include Aws::Structure end |
#max_speed ⇒ Float
Maximum speed
Unit: kilometers per hour
3720 3721 3722 3723 3724 3725 3726 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 3720 class RouteMatrixCarOptions < Struct.new( :license_plate, :max_speed, :occupancy) SENSITIVE = [:license_plate, :max_speed, :occupancy] include Aws::Structure end |
#occupancy ⇒ Integer
The number of occupants in the vehicle.
Default value: 1
3720 3721 3722 3723 3724 3725 3726 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 3720 class RouteMatrixCarOptions < Struct.new( :license_plate, :max_speed, :occupancy) SENSITIVE = [:license_plate, :max_speed, :occupancy] include Aws::Structure end |