Class: Aws::GeoRoutes::Types::IsolineAvoidanceArea

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

Overview

Defines an area to avoid when calculating routes. Consists of a primary geometry to avoid, with the ability to specify exception areas within that geometry where travel is permitted.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#exceptArray<Types::IsolineAvoidanceAreaGeometry>

Areas within the primary avoidance geometry where travel is allowed. For example, you might want to avoid a neighborhood but allow travel on a major road that passes through it.



1010
1011
1012
1013
1014
1015
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 1010

class IsolineAvoidanceArea < Struct.new(
  :except,
  :geometry)
  SENSITIVE = []
  include Aws::Structure
end

#geometryTypes::IsolineAvoidanceAreaGeometry

The primary area to avoid, specified using a bounding box, corridor, polygon, or polyline corridor.



1010
1011
1012
1013
1014
1015
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 1010

class IsolineAvoidanceArea < Struct.new(
  :except,
  :geometry)
  SENSITIVE = []
  include Aws::Structure
end