Class: Aws::SageMakerGeospatial::Types::Geometry
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMakerGeospatial::Types::Geometry
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemakergeospatial/types.rb
Overview
The structure representing a Geometry in terms of Type and Coordinates as per GeoJson spec.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#coordinates ⇒ Array<Array<Array<Float>>>
The coordinates of the GeoJson Geometry.
-
#type ⇒ String
GeoJson Geometry types like Polygon and MultiPolygon.
Instance Attribute Details
#coordinates ⇒ Array<Array<Array<Float>>>
The coordinates of the GeoJson Geometry.
540 541 542 543 544 545 |
# File 'lib/aws-sdk-sagemakergeospatial/types.rb', line 540 class Geometry < Struct.new( :coordinates, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
GeoJson Geometry types like Polygon and MultiPolygon.
540 541 542 543 544 545 |
# File 'lib/aws-sdk-sagemakergeospatial/types.rb', line 540 class Geometry < Struct.new( :coordinates, :type) SENSITIVE = [] include Aws::Structure end |