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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-georoutes/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)


5544
5545
5546
5547
5548
5549
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 5544

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)


5544
5545
5546
5547
5548
5549
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 5544

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