Class: Aws::GeoRoutes::Types::IsolineCarOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::IsolineCarOptions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-georoutes/types.rb
Overview
Options for vehicles.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#engine_type ⇒ String
Engine type of the vehicle.
-
#license_plate ⇒ Types::IsolineVehicleLicensePlate
The vehicle License Plate.
-
#max_speed ⇒ Float
Maximum speed.
-
#occupancy ⇒ Integer
The number of occupants in the vehicle.
Instance Attribute Details
#engine_type ⇒ String
Engine type of the vehicle.
911 912 913 914 915 916 917 918 |
# File 'lib/aws-sdk-georoutes/types.rb', line 911 class IsolineCarOptions < Struct.new( :engine_type, :license_plate, :max_speed, :occupancy) SENSITIVE = [] include Aws::Structure end |
#license_plate ⇒ Types::IsolineVehicleLicensePlate
The vehicle License Plate.
911 912 913 914 915 916 917 918 |
# File 'lib/aws-sdk-georoutes/types.rb', line 911 class IsolineCarOptions < Struct.new( :engine_type, :license_plate, :max_speed, :occupancy) SENSITIVE = [] include Aws::Structure end |
#max_speed ⇒ Float
Maximum speed.
Unit: ‘KilometersPerHour`
911 912 913 914 915 916 917 918 |
# File 'lib/aws-sdk-georoutes/types.rb', line 911 class IsolineCarOptions < 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`
911 912 913 914 915 916 917 918 |
# File 'lib/aws-sdk-georoutes/types.rb', line 911 class IsolineCarOptions < Struct.new( :engine_type, :license_plate, :max_speed, :occupancy) SENSITIVE = [] include Aws::Structure end |