AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
VectorEnrichmentJobConfig.h
1
6#pragma once
7#include <aws/sagemaker-geospatial/SageMakerGeospatial_EXPORTS.h>
8#include <aws/sagemaker-geospatial/model/MapMatchingConfig.h>
9#include <aws/sagemaker-geospatial/model/ReverseGeocodingConfig.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace SageMakerGeospatial {
21namespace Model {
22
30 public:
31 AWS_SAGEMAKERGEOSPATIAL_API VectorEnrichmentJobConfig() = default;
32 AWS_SAGEMAKERGEOSPATIAL_API VectorEnrichmentJobConfig(Aws::Utils::Json::JsonView jsonValue);
33 AWS_SAGEMAKERGEOSPATIAL_API VectorEnrichmentJobConfig& operator=(Aws::Utils::Json::JsonView jsonValue);
34 AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
40 inline const MapMatchingConfig& GetMapMatchingConfig() const { return m_mapMatchingConfig; }
41 inline bool MapMatchingConfigHasBeenSet() const { return m_mapMatchingConfigHasBeenSet; }
42 template <typename MapMatchingConfigT = MapMatchingConfig>
43 void SetMapMatchingConfig(MapMatchingConfigT&& value) {
44 m_mapMatchingConfigHasBeenSet = true;
45 m_mapMatchingConfig = std::forward<MapMatchingConfigT>(value);
46 }
47 template <typename MapMatchingConfigT = MapMatchingConfig>
48 VectorEnrichmentJobConfig& WithMapMatchingConfig(MapMatchingConfigT&& value) {
49 SetMapMatchingConfig(std::forward<MapMatchingConfigT>(value));
50 return *this;
51 }
53
55
58 inline const ReverseGeocodingConfig& GetReverseGeocodingConfig() const { return m_reverseGeocodingConfig; }
59 inline bool ReverseGeocodingConfigHasBeenSet() const { return m_reverseGeocodingConfigHasBeenSet; }
60 template <typename ReverseGeocodingConfigT = ReverseGeocodingConfig>
61 void SetReverseGeocodingConfig(ReverseGeocodingConfigT&& value) {
62 m_reverseGeocodingConfigHasBeenSet = true;
63 m_reverseGeocodingConfig = std::forward<ReverseGeocodingConfigT>(value);
64 }
65 template <typename ReverseGeocodingConfigT = ReverseGeocodingConfig>
66 VectorEnrichmentJobConfig& WithReverseGeocodingConfig(ReverseGeocodingConfigT&& value) {
67 SetReverseGeocodingConfig(std::forward<ReverseGeocodingConfigT>(value));
68 return *this;
69 }
71 private:
72 MapMatchingConfig m_mapMatchingConfig;
73
74 ReverseGeocodingConfig m_reverseGeocodingConfig;
75 bool m_mapMatchingConfigHasBeenSet = false;
76 bool m_reverseGeocodingConfigHasBeenSet = false;
77};
78
79} // namespace Model
80} // namespace SageMakerGeospatial
81} // namespace Aws
AWS_SAGEMAKERGEOSPATIAL_API VectorEnrichmentJobConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
VectorEnrichmentJobConfig & WithReverseGeocodingConfig(ReverseGeocodingConfigT &&value)
AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_SAGEMAKERGEOSPATIAL_API VectorEnrichmentJobConfig()=default
VectorEnrichmentJobConfig & WithMapMatchingConfig(MapMatchingConfigT &&value)
AWS_SAGEMAKERGEOSPATIAL_API VectorEnrichmentJobConfig(Aws::Utils::Json::JsonView jsonValue)
Aws::Utils::Json::JsonValue JsonValue