Class: Aws::GeoRoutes::Types::RouteMatrixBoundaryGeometry

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

Overview

Geometry of the routing boundary.

Constant Summary collapse

SENSITIVE =
[:circle, :bounding_box]

Instance Attribute Summary collapse

Instance Attribute Details

#auto_circleTypes::RouteMatrixAutoCircle

Provides the circle that was used while calculating the route.



3089
3090
3091
3092
3093
3094
3095
3096
# File 'lib/aws-sdk-georoutes/types.rb', line 3089

class RouteMatrixBoundaryGeometry < Struct.new(
  :auto_circle,
  :circle,
  :bounding_box,
  :polygon)
  SENSITIVE = [:circle, :bounding_box]
  include Aws::Structure
end

#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>)


3089
3090
3091
3092
3093
3094
3095
3096
# File 'lib/aws-sdk-georoutes/types.rb', line 3089

class RouteMatrixBoundaryGeometry < Struct.new(
  :auto_circle,
  :circle,
  :bounding_box,
  :polygon)
  SENSITIVE = [:circle, :bounding_box]
  include Aws::Structure
end

#circleTypes::Circle

Geometry defined as a circle. When request routing boundary was set as ‘AutoCircle`, the response routing boundary will return `Circle` derived from the `AutoCircle` settings.

Returns:



3089
3090
3091
3092
3093
3094
3095
3096
# File 'lib/aws-sdk-georoutes/types.rb', line 3089

class RouteMatrixBoundaryGeometry < Struct.new(
  :auto_circle,
  :circle,
  :bounding_box,
  :polygon)
  SENSITIVE = [:circle, :bounding_box]
  include Aws::Structure
end

#polygonArray<Array<Array<Float>>>

Geometry defined as a polygon with only one linear ring.

Returns:

  • (Array<Array<Array<Float>>>)


3089
3090
3091
3092
3093
3094
3095
3096
# File 'lib/aws-sdk-georoutes/types.rb', line 3089

class RouteMatrixBoundaryGeometry < Struct.new(
  :auto_circle,
  :circle,
  :bounding_box,
  :polygon)
  SENSITIVE = [:circle, :bounding_box]
  include Aws::Structure
end