Class: Aws::GeoRoutes::Types::IsolineConnection
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::IsolineConnection
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-georoutes/types.rb
Overview
Isolines may contain multiple components, if these components are connected by ferry links. These components are returned as separate polygons while the ferry links are returned as connections.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#from_polygon_index ⇒ Integer
Index of the polygon corresponding to the “from” component of the connection.
-
#geometry ⇒ Types::IsolineConnectionGeometry
The isoline geometry.
-
#to_polygon_index ⇒ Integer
Index of the polygon corresponding to the “to” component of the connection.
Instance Attribute Details
#from_polygon_index ⇒ Integer
Index of the polygon corresponding to the “from” component of the connection. The polygon is available from ‘Isoline[].Geometries`.
940 941 942 943 944 945 946 |
# File 'lib/aws-sdk-georoutes/types.rb', line 940 class IsolineConnection < Struct.new( :from_polygon_index, :geometry, :to_polygon_index) SENSITIVE = [] include Aws::Structure end |
#geometry ⇒ Types::IsolineConnectionGeometry
The isoline geometry.
940 941 942 943 944 945 946 |
# File 'lib/aws-sdk-georoutes/types.rb', line 940 class IsolineConnection < Struct.new( :from_polygon_index, :geometry, :to_polygon_index) SENSITIVE = [] include Aws::Structure end |
#to_polygon_index ⇒ Integer
Index of the polygon corresponding to the “to” component of the connection. The polygon is available from ‘Isoline[].Geometries`.
940 941 942 943 944 945 946 |
# File 'lib/aws-sdk-georoutes/types.rb', line 940 class IsolineConnection < Struct.new( :from_polygon_index, :geometry, :to_polygon_index) SENSITIVE = [] include Aws::Structure end |