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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-georoutes/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.



3083
3084
3085
3086
3087
3088
3089
3090
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 3083

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


3083
3084
3085
3086
3087
3088
3089
3090
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 3083

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:



3083
3084
3085
3086
3087
3088
3089
3090
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 3083

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


3083
3084
3085
3086
3087
3088
3089
3090
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 3083

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