Class: Aws::GeoRoutes::Types::IsolineTrafficOptions

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

Overview

Options related to traffic.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#flow_event_threshold_overrideInteger

Duration for which flow traffic is considered valid. For this period, the flow traffic is used over historical traffic data. Flow traffic refers to congestion, which changes very quickly. Duration in seconds for which flow traffic event would be considered valid. While flow traffic event is valid it will be used over the historical traffic data.

Unit: ‘seconds`

Returns:

  • (Integer)


1230
1231
1232
1233
1234
1235
# File 'lib/aws-sdk-georoutes/types.rb', line 1230

class IsolineTrafficOptions < Struct.new(
  :flow_event_threshold_override,
  :usage)
  SENSITIVE = []
  include Aws::Structure
end

#usageString

Determines if traffic should be used or ignored while calculating the route.

Default Value: ‘UseTrafficData`

Returns:

  • (String)


1230
1231
1232
1233
1234
1235
# File 'lib/aws-sdk-georoutes/types.rb', line 1230

class IsolineTrafficOptions < Struct.new(
  :flow_event_threshold_override,
  :usage)
  SENSITIVE = []
  include Aws::Structure
end