Class: Aws::GeoRoutes::Types::Circle
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::Circle
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-georoutes/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[:center]
Instance Attribute Summary collapse
-
#center ⇒ Array<Float>
Center of the Circle defined in longitude and latitude coordinates.
-
#radius ⇒ Float
Radius of the Circle.
Instance Attribute Details
#center ⇒ Array<Float>
Center of the Circle defined in longitude and latitude coordinates.
Example: ‘[-123.1174, 49.2847]` represents the position with longitude `-123.1174` and latitude `49.2847`.
625 626 627 628 629 630 |
# File 'lib/aws-sdk-georoutes/types.rb', line 625 class Circle < Struct.new( :center, :radius) SENSITIVE = [:center] include Aws::Structure end |