Class: Aws::GeoRoutes::Types::RouteAvoidanceAreaGeometry
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::RouteAvoidanceAreaGeometry
- Defined in:
- gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb
Overview
Geometry of the area to be avoided.
Constant Summary collapse
- SENSITIVE =
[:corridor, :bounding_box, :polyline_corridor, :polyline_polygon]
Instance Attribute Summary collapse
-
#bounding_box ⇒ Array<Float>
Geometry defined as a bounding box.
-
#corridor ⇒ Types::Corridor
Geometry defined as a corridor - a LineString with a radius that defines the width of the corridor.
-
#polygon ⇒ Array<Array<Array<Float>>>
Geometry defined as a polygon with only one linear ring.
-
#polyline_corridor ⇒ Types::PolylineCorridor
Geometry defined as an encoded corridor - an encoded polyline with a radius that defines the width of the corridor.
-
#polyline_polygon ⇒ Array<String>
A list of Isoline PolylinePolygon, for each isoline PolylinePolygon, it contains PolylinePolygon of the first linear ring (the outer ring) and from 2nd item to the last item (the inner rings).
Instance Attribute Details
#bounding_box ⇒ Array<Float>
Geometry defined as a bounding box. The first pair represents the X and Y coordinates (longitude and latitude,) of the southwest corner of the bounding box; the second pair represents the X and Y coordinates (longitude and latitude) of the northeast corner.
2466 2467 2468 2469 2470 2471 2472 2473 2474 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2466 class RouteAvoidanceAreaGeometry < Struct.new( :corridor, :bounding_box, :polygon, :polyline_corridor, :polyline_polygon) SENSITIVE = [:corridor, :bounding_box, :polyline_corridor, :polyline_polygon] include Aws::Structure end |
#corridor ⇒ Types::Corridor
Geometry defined as a corridor - a LineString with a radius that defines the width of the corridor.
2466 2467 2468 2469 2470 2471 2472 2473 2474 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2466 class RouteAvoidanceAreaGeometry < Struct.new( :corridor, :bounding_box, :polygon, :polyline_corridor, :polyline_polygon) SENSITIVE = [:corridor, :bounding_box, :polyline_corridor, :polyline_polygon] include Aws::Structure end |
#polygon ⇒ Array<Array<Array<Float>>>
Geometry defined as a polygon with only one linear ring.
2466 2467 2468 2469 2470 2471 2472 2473 2474 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2466 class RouteAvoidanceAreaGeometry < Struct.new( :corridor, :bounding_box, :polygon, :polyline_corridor, :polyline_polygon) SENSITIVE = [:corridor, :bounding_box, :polyline_corridor, :polyline_polygon] include Aws::Structure end |
#polyline_corridor ⇒ Types::PolylineCorridor
Geometry defined as an encoded corridor - an encoded polyline with a radius that defines the width of the corridor.
2466 2467 2468 2469 2470 2471 2472 2473 2474 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2466 class RouteAvoidanceAreaGeometry < Struct.new( :corridor, :bounding_box, :polygon, :polyline_corridor, :polyline_polygon) SENSITIVE = [:corridor, :bounding_box, :polyline_corridor, :polyline_polygon] include Aws::Structure end |
#polyline_polygon ⇒ Array<String>
A list of Isoline PolylinePolygon, for each isoline PolylinePolygon, it contains PolylinePolygon of the first linear ring (the outer ring) and from 2nd item to the last item (the inner rings). For more information on polyline encoding, see https://github.com/aws-geospatial/polyline.
2466 2467 2468 2469 2470 2471 2472 2473 2474 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2466 class RouteAvoidanceAreaGeometry < Struct.new( :corridor, :bounding_box, :polygon, :polyline_corridor, :polyline_polygon) SENSITIVE = [:corridor, :bounding_box, :polyline_corridor, :polyline_polygon] include Aws::Structure end |