Class: Aws::GeoRoutes::Types::IsolineCarOptions

Inherits:
Struct
  • Object
show all
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 =
[:engine_type, :license_plate, :max_speed, :occupancy]

Instance Attribute Summary collapse

Instance Attribute Details

#engine_typeString

Engine type of the vehicle.



946
947
948
949
950
951
952
953
# File 'lib/aws-sdk-georoutes/types.rb', line 946

class IsolineCarOptions < Struct.new(
  :engine_type,
  :license_plate,
  :max_speed,
  :occupancy)
  SENSITIVE = [:engine_type, :license_plate, :max_speed, :occupancy]
  include Aws::Structure
end

#license_plateTypes::IsolineVehicleLicensePlate

The vehicle License Plate.



946
947
948
949
950
951
952
953
# File 'lib/aws-sdk-georoutes/types.rb', line 946

class IsolineCarOptions < Struct.new(
  :engine_type,
  :license_plate,
  :max_speed,
  :occupancy)
  SENSITIVE = [:engine_type, :license_plate, :max_speed, :occupancy]
  include Aws::Structure
end

#max_speedFloat

Maximum speed.

Unit: ‘KilometersPerHour`



946
947
948
949
950
951
952
953
# File 'lib/aws-sdk-georoutes/types.rb', line 946

class IsolineCarOptions < Struct.new(
  :engine_type,
  :license_plate,
  :max_speed,
  :occupancy)
  SENSITIVE = [:engine_type, :license_plate, :max_speed, :occupancy]
  include Aws::Structure
end

#occupancyInteger

The number of occupants in the vehicle.

Default Value: ‘1`



946
947
948
949
950
951
952
953
# File 'lib/aws-sdk-georoutes/types.rb', line 946

class IsolineCarOptions < Struct.new(
  :engine_type,
  :license_plate,
  :max_speed,
  :occupancy)
  SENSITIVE = [:engine_type, :license_plate, :max_speed, :occupancy]
  include Aws::Structure
end