Class: Aws::GeoRoutes::Types::IsolineConnection

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

Instance Attribute Details

#from_polygon_indexInteger

Index of the polygon corresponding to the “from” component of the connection. The polygon is available from ‘Isoline[].Geometries`.

Returns:

  • (Integer)


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

#geometryTypes::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_indexInteger

Index of the polygon corresponding to the “to” component of the connection. The polygon is available from ‘Isoline[].Geometries`.

Returns:

  • (Integer)


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