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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb

Overview

Travel mode options when the provided travel mode is Car. For GrabMaps customers, ap-southeast-1 and ap-southeast-5 regions support only LicensePlate options.

Constant Summary collapse

SENSITIVE =
[:engine_type, :max_speed, :occupancy]

Instance Attribute Summary collapse

Instance Attribute Details

#engine_typeString

Engine type of the vehicle. Not supported in ap-southeast-1 and ap-southeast-5 regions for GrabMaps customers.

Returns:

  • (String)


2673
2674
2675
2676
2677
2678
2679
2680
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2673

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.



2673
2674
2675
2676
2677
2678
2679
2680
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2673

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. Not supported in ap-southeast-1 and ap-southeast-5 regions for GrabMaps customers.

Unit: kilometers per hour

Returns:

  • (Float)


2673
2674
2675
2676
2677
2678
2679
2680
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2673

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. Not supported in ap-southeast-1 and ap-southeast-5 regions for GrabMaps customers.

Default value: 1

Returns:

  • (Integer)


2673
2674
2675
2676
2677
2678
2679
2680
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2673

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