AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
ReverseGeocodingConfig.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/sagemaker-geospatial/SageMakerGeospatial_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace SageMakerGeospatial {
20namespace Model {
21
29 public:
30 AWS_SAGEMAKERGEOSPATIAL_API ReverseGeocodingConfig() = default;
31 AWS_SAGEMAKERGEOSPATIAL_API ReverseGeocodingConfig(Aws::Utils::Json::JsonView jsonValue);
32 AWS_SAGEMAKERGEOSPATIAL_API ReverseGeocodingConfig& operator=(Aws::Utils::Json::JsonView jsonValue);
33 AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
40 inline const Aws::String& GetXAttributeName() const { return m_xAttributeName; }
41 inline bool XAttributeNameHasBeenSet() const { return m_xAttributeNameHasBeenSet; }
42 template <typename XAttributeNameT = Aws::String>
43 void SetXAttributeName(XAttributeNameT&& value) {
44 m_xAttributeNameHasBeenSet = true;
45 m_xAttributeName = std::forward<XAttributeNameT>(value);
46 }
47 template <typename XAttributeNameT = Aws::String>
48 ReverseGeocodingConfig& WithXAttributeName(XAttributeNameT&& value) {
49 SetXAttributeName(std::forward<XAttributeNameT>(value));
50 return *this;
51 }
53
55
59 inline const Aws::String& GetYAttributeName() const { return m_yAttributeName; }
60 inline bool YAttributeNameHasBeenSet() const { return m_yAttributeNameHasBeenSet; }
61 template <typename YAttributeNameT = Aws::String>
62 void SetYAttributeName(YAttributeNameT&& value) {
63 m_yAttributeNameHasBeenSet = true;
64 m_yAttributeName = std::forward<YAttributeNameT>(value);
65 }
66 template <typename YAttributeNameT = Aws::String>
67 ReverseGeocodingConfig& WithYAttributeName(YAttributeNameT&& value) {
68 SetYAttributeName(std::forward<YAttributeNameT>(value));
69 return *this;
70 }
72 private:
73 Aws::String m_xAttributeName;
74
75 Aws::String m_yAttributeName;
76 bool m_xAttributeNameHasBeenSet = false;
77 bool m_yAttributeNameHasBeenSet = false;
78};
79
80} // namespace Model
81} // namespace SageMakerGeospatial
82} // namespace Aws
ReverseGeocodingConfig & WithXAttributeName(XAttributeNameT &&value)
AWS_SAGEMAKERGEOSPATIAL_API ReverseGeocodingConfig()=default
AWS_SAGEMAKERGEOSPATIAL_API ReverseGeocodingConfig(Aws::Utils::Json::JsonView jsonValue)
ReverseGeocodingConfig & WithYAttributeName(YAttributeNameT &&value)
AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_SAGEMAKERGEOSPATIAL_API ReverseGeocodingConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue