Class: Aws::GeoRoutes::Types::RouteCarOptions

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, :max_speed, :occupancy]

Instance Attribute Summary collapse

Instance Attribute Details

#engine_typeString

Engine type of the vehicle.

Returns:

  • (String)


2147
2148
2149
2150
2151
2152
2153
2154
# File 'lib/aws-sdk-georoutes/types.rb', line 2147

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

#license_plateTypes::RouteVehicleLicensePlate

The vehicle License Plate.



2147
2148
2149
2150
2151
2152
2153
2154
# File 'lib/aws-sdk-georoutes/types.rb', line 2147

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

#max_speedFloat

Maximum speed specified.

Unit: ‘KilometersPerHour`

Returns:

  • (Float)


2147
2148
2149
2150
2151
2152
2153
2154
# File 'lib/aws-sdk-georoutes/types.rb', line 2147

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

#occupancyInteger

The number of occupants in the vehicle.

Default Value: ‘1`

Returns:

  • (Integer)


2147
2148
2149
2150
2151
2152
2153
2154
# File 'lib/aws-sdk-georoutes/types.rb', line 2147

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