Class: Aws::SageMakerGeospatial::Types::VectorEnrichmentJobConfig

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

Overview

Note:

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

Note:

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

It contains configs such as ReverseGeocodingConfig and MapMatchingConfig.

Defined Under Namespace

Classes: MapMatchingConfig, ReverseGeocodingConfig, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#map_matching_configTypes::MapMatchingConfig

The input structure for Map Matching operation type.



2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
# File 'gems/aws-sdk-sagemakergeospatial/lib/aws-sdk-sagemakergeospatial/types.rb', line 2403

class VectorEnrichmentJobConfig < Struct.new(
  :map_matching_config,
  :reverse_geocoding_config,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class MapMatchingConfig < VectorEnrichmentJobConfig; end
  class ReverseGeocodingConfig < VectorEnrichmentJobConfig; end
  class Unknown < VectorEnrichmentJobConfig; end
end

#reverse_geocoding_configTypes::ReverseGeocodingConfig

The input structure for Reverse Geocoding operation type.



2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
# File 'gems/aws-sdk-sagemakergeospatial/lib/aws-sdk-sagemakergeospatial/types.rb', line 2403

class VectorEnrichmentJobConfig < Struct.new(
  :map_matching_config,
  :reverse_geocoding_config,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class MapMatchingConfig < VectorEnrichmentJobConfig; end
  class ReverseGeocodingConfig < VectorEnrichmentJobConfig; end
  class Unknown < VectorEnrichmentJobConfig; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2403
2404
2405
# File 'gems/aws-sdk-sagemakergeospatial/lib/aws-sdk-sagemakergeospatial/types.rb', line 2403

def unknown
  @unknown
end