Class: Aws::SageMakerGeospatial::Types::AreaOfInterest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemakergeospatial/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

AreaOfInterestGeometry, Unknown

Defined Under Namespace

Classes: AreaOfInterestGeometry, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#area_of_interest_geometryTypes::AreaOfInterestGeometry

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



39
40
41
42
43
44
45
46
47
48
# File 'gems/aws-sdk-sagemakergeospatial/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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



39
40
41
# File 'gems/aws-sdk-sagemakergeospatial/lib/aws-sdk-sagemakergeospatial/types.rb', line 39

def unknown
  @unknown
end