Class: Aws::SageMakerGeospatial::Types::AreaOfInterestGeometry

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemakergeospatial/lib/aws-sdk-sagemakergeospatial/types.rb

Overview

Note:

AreaOfInterestGeometry is a union - when making an API calls you must set exactly one of the members.

Note:

AreaOfInterestGeometry is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AreaOfInterestGeometry corresponding to the set member.

A GeoJSON object representing the geographic extent in the coordinate space.

Direct Known Subclasses

MultiPolygonGeometry, PolygonGeometry, Unknown

Defined Under Namespace

Classes: MultiPolygonGeometry, PolygonGeometry, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#multi_polygon_geometryTypes::MultiPolygonGeometryInput

The structure representing the MultiPolygon Geometry.



67
68
69
70
71
72
73
74
75
76
77
78
# File 'gems/aws-sdk-sagemakergeospatial/lib/aws-sdk-sagemakergeospatial/types.rb', line 67

class AreaOfInterestGeometry < Struct.new(
  :multi_polygon_geometry,
  :polygon_geometry,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class MultiPolygonGeometry < AreaOfInterestGeometry; end
  class PolygonGeometry < AreaOfInterestGeometry; end
  class Unknown < AreaOfInterestGeometry; end
end

#polygon_geometryTypes::PolygonGeometryInput

The structure representing Polygon Geometry.



67
68
69
70
71
72
73
74
75
76
77
78
# File 'gems/aws-sdk-sagemakergeospatial/lib/aws-sdk-sagemakergeospatial/types.rb', line 67

class AreaOfInterestGeometry < Struct.new(
  :multi_polygon_geometry,
  :polygon_geometry,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class MultiPolygonGeometry < AreaOfInterestGeometry; end
  class PolygonGeometry < AreaOfInterestGeometry; end
  class Unknown < AreaOfInterestGeometry; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



67
68
69
# File 'gems/aws-sdk-sagemakergeospatial/lib/aws-sdk-sagemakergeospatial/types.rb', line 67

def unknown
  @unknown
end