Class: Aws::SageMakerGeospatial::Types::AreaOfInterestGeometry
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMakerGeospatial::Types::AreaOfInterestGeometry
- 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
Defined Under Namespace
Classes: MultiPolygonGeometry, PolygonGeometry, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#multi_polygon_geometry ⇒ Types::MultiPolygonGeometryInput
The structure representing the MultiPolygon Geometry.
-
#polygon_geometry ⇒ Types::PolygonGeometryInput
The structure representing Polygon Geometry.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#multi_polygon_geometry ⇒ Types::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_geometry ⇒ Types::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 |
#unknown ⇒ Object
Returns the value of attribute unknown
67 68 69 |
# File 'gems/aws-sdk-sagemakergeospatial/lib/aws-sdk-sagemakergeospatial/types.rb', line 67 def unknown @unknown end |