Class: Aws::GeoRoutes::Types::RouteTrailerOptions

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

Overview

Trailer options corresponding to the vehicle.

Constant Summary collapse

SENSITIVE =
[:axle_count, :trailer_count]

Instance Attribute Summary collapse

Instance Attribute Details

#axle_countInteger

Total number of axles of the vehicle.

Returns:

  • (Integer)


6933
6934
6935
6936
6937
6938
# File 'lib/aws-sdk-georoutes/types.rb', line 6933

class RouteTrailerOptions < Struct.new(
  :axle_count,
  :trailer_count)
  SENSITIVE = [:axle_count, :trailer_count]
  include Aws::Structure
end

#trailer_countInteger

Number of trailers attached to the vehicle.

Default value: ‘0`

Returns:

  • (Integer)


6933
6934
6935
6936
6937
6938
# File 'lib/aws-sdk-georoutes/types.rb', line 6933

class RouteTrailerOptions < Struct.new(
  :axle_count,
  :trailer_count)
  SENSITIVE = [:axle_count, :trailer_count]
  include Aws::Structure
end