Class: Aws::GeoRoutes::Types::WaypointOptimizationAvoidanceAreaGeometry
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::WaypointOptimizationAvoidanceAreaGeometry
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-georoutes/types.rb
Overview
Geometry of the area to be avoided.
Constant Summary collapse
- SENSITIVE =
[:bounding_box]
Instance Attribute Summary collapse
-
#bounding_box ⇒ Array<Float>
Geometry defined as a bounding box.
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.
6151 6152 6153 6154 6155 |
# File 'lib/aws-sdk-georoutes/types.rb', line 6151 class WaypointOptimizationAvoidanceAreaGeometry < Struct.new( :bounding_box) SENSITIVE = [:bounding_box] include Aws::Structure end |