Class: Aws::SageMakerGeospatial::Types::AreaOfInterest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMakerGeospatial::Types::AreaOfInterest
- Includes:
- Aws::Structure, Aws::Structure::Union
- Defined in:
- lib/aws-sdk-sagemakergeospatial/types.rb
Overview
Note:
AreaOfInterest is a union - when making an API calls you must set exactly one of the members.
Note:
AreaOfInterest is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AreaOfInterest corresponding to the set member.
The geographic extent of the Earth Observation job.
Direct Known Subclasses
Defined Under Namespace
Classes: AreaOfInterestGeometry, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#area_of_interest_geometry ⇒ Types::AreaOfInterestGeometry
A GeoJSON object representing the geographic extent in the coordinate space.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#area_of_interest_geometry ⇒ Types::AreaOfInterestGeometry
A GeoJSON object representing the geographic extent in the coordinate space.
39 40 41 42 43 44 45 46 47 48 |
# File 'lib/aws-sdk-sagemakergeospatial/types.rb', line 39 class AreaOfInterest < Struct.new( :area_of_interest_geometry, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AreaOfInterestGeometry < AreaOfInterest; end class Unknown < AreaOfInterest; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
39 40 41 |
# File 'lib/aws-sdk-sagemakergeospatial/types.rb', line 39 def unknown @unknown end |