Class: Aws::SageMakerGeospatial::Types::VectorEnrichmentJobConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMakerGeospatial::Types::VectorEnrichmentJobConfig
- Includes:
- Aws::Structure, Aws::Structure::Union
- Defined in:
- lib/aws-sdk-sagemakergeospatial/types.rb
Overview
VectorEnrichmentJobConfig is a union - when making an API calls you must set exactly one of the members.
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.
Direct Known Subclasses
Defined Under Namespace
Classes: MapMatchingConfig, ReverseGeocodingConfig, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#map_matching_config ⇒ Types::MapMatchingConfig
The input structure for Map Matching operation type.
-
#reverse_geocoding_config ⇒ Types::ReverseGeocodingConfig
The input structure for Reverse Geocoding operation type.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#map_matching_config ⇒ Types::MapMatchingConfig
The input structure for Map Matching operation type.
2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 |
# File '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_config ⇒ Types::ReverseGeocodingConfig
The input structure for Reverse Geocoding operation type.
2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 |
# File '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 |
#unknown ⇒ Object
Returns the value of attribute unknown
2403 2404 2405 |
# File 'lib/aws-sdk-sagemakergeospatial/types.rb', line 2403 def unknown @unknown end |