Class: Aws::GeoRoutes::Types::RouteToll

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

Overview

Provides details about toll information along a route, including the payment sites, applicable toll rates, toll systems, and the country associated with the toll collection.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#countryString

The alpha-2 or alpha-3 character code for the country.

Returns:

  • (String)


4492
4493
4494
4495
4496
4497
4498
4499
# File 'lib/aws-sdk-georoutes/types.rb', line 4492

class RouteToll < Struct.new(
  :country,
  :payment_sites,
  :rates,
  :systems)
  SENSITIVE = []
  include Aws::Structure
end

#payment_sitesArray<Types::RouteTollPaymentSite>

Locations or sites where the toll fare is collected.

Returns:



4492
4493
4494
4495
4496
4497
4498
4499
# File 'lib/aws-sdk-georoutes/types.rb', line 4492

class RouteToll < Struct.new(
  :country,
  :payment_sites,
  :rates,
  :systems)
  SENSITIVE = []
  include Aws::Structure
end

#ratesArray<Types::RouteTollRate>

Toll rates that need to be paid to travel this leg of the route.

Returns:



4492
4493
4494
4495
4496
4497
4498
4499
# File 'lib/aws-sdk-georoutes/types.rb', line 4492

class RouteToll < Struct.new(
  :country,
  :payment_sites,
  :rates,
  :systems)
  SENSITIVE = []
  include Aws::Structure
end

#systemsArray<Integer>

Toll systems are authorities that collect payments for the toll.

Returns:

  • (Array<Integer>)


4492
4493
4494
4495
4496
4497
4498
4499
# File 'lib/aws-sdk-georoutes/types.rb', line 4492

class RouteToll < Struct.new(
  :country,
  :payment_sites,
  :rates,
  :systems)
  SENSITIVE = []
  include Aws::Structure
end