Class: Aws::GeoRoutes::Types::IsolineAvoidanceArea
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::IsolineAvoidanceArea
- 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
-
#except ⇒ Array<Types::IsolineAvoidanceAreaGeometry>
Areas within the primary avoidance geometry where travel is allowed.
-
#geometry ⇒ Types::IsolineAvoidanceAreaGeometry
The primary area to avoid, specified using a bounding box, corridor, polygon, or polyline corridor.
Instance Attribute Details
#except ⇒ Array<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 |
#geometry ⇒ Types::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 |