Class: Aws::GeoRoutes::Types::WaypointOptimizationAvoidanceAreaGeometry

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#bounding_boxArray<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.

Returns:

  • (Array<Float>)


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