AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
MapMatchingConfig.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 MapMatchingConfig() = default;
31 AWS_SAGEMAKERGEOSPATIAL_API MapMatchingConfig(Aws::Utils::Json::JsonView jsonValue);
32 AWS_SAGEMAKERGEOSPATIAL_API MapMatchingConfig& operator=(Aws::Utils::Json::JsonView jsonValue);
33 AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
40 inline const Aws::String& GetIdAttributeName() const { return m_idAttributeName; }
41 inline bool IdAttributeNameHasBeenSet() const { return m_idAttributeNameHasBeenSet; }
42 template <typename IdAttributeNameT = Aws::String>
43 void SetIdAttributeName(IdAttributeNameT&& value) {
44 m_idAttributeNameHasBeenSet = true;
45 m_idAttributeName = std::forward<IdAttributeNameT>(value);
46 }
47 template <typename IdAttributeNameT = Aws::String>
48 MapMatchingConfig& WithIdAttributeName(IdAttributeNameT&& value) {
49 SetIdAttributeName(std::forward<IdAttributeNameT>(value));
50 return *this;
51 }
53
55
58 inline const Aws::String& GetTimestampAttributeName() const { return m_timestampAttributeName; }
59 inline bool TimestampAttributeNameHasBeenSet() const { return m_timestampAttributeNameHasBeenSet; }
60 template <typename TimestampAttributeNameT = Aws::String>
61 void SetTimestampAttributeName(TimestampAttributeNameT&& value) {
62 m_timestampAttributeNameHasBeenSet = true;
63 m_timestampAttributeName = std::forward<TimestampAttributeNameT>(value);
64 }
65 template <typename TimestampAttributeNameT = Aws::String>
66 MapMatchingConfig& WithTimestampAttributeName(TimestampAttributeNameT&& value) {
67 SetTimestampAttributeName(std::forward<TimestampAttributeNameT>(value));
68 return *this;
69 }
71
73
76 inline const Aws::String& GetXAttributeName() const { return m_xAttributeName; }
77 inline bool XAttributeNameHasBeenSet() const { return m_xAttributeNameHasBeenSet; }
78 template <typename XAttributeNameT = Aws::String>
79 void SetXAttributeName(XAttributeNameT&& value) {
80 m_xAttributeNameHasBeenSet = true;
81 m_xAttributeName = std::forward<XAttributeNameT>(value);
82 }
83 template <typename XAttributeNameT = Aws::String>
84 MapMatchingConfig& WithXAttributeName(XAttributeNameT&& value) {
85 SetXAttributeName(std::forward<XAttributeNameT>(value));
86 return *this;
87 }
89
91
94 inline const Aws::String& GetYAttributeName() const { return m_yAttributeName; }
95 inline bool YAttributeNameHasBeenSet() const { return m_yAttributeNameHasBeenSet; }
96 template <typename YAttributeNameT = Aws::String>
97 void SetYAttributeName(YAttributeNameT&& value) {
98 m_yAttributeNameHasBeenSet = true;
99 m_yAttributeName = std::forward<YAttributeNameT>(value);
100 }
101 template <typename YAttributeNameT = Aws::String>
102 MapMatchingConfig& WithYAttributeName(YAttributeNameT&& value) {
103 SetYAttributeName(std::forward<YAttributeNameT>(value));
104 return *this;
105 }
107 private:
108 Aws::String m_idAttributeName;
109
110 Aws::String m_timestampAttributeName;
111
112 Aws::String m_xAttributeName;
113
114 Aws::String m_yAttributeName;
115 bool m_idAttributeNameHasBeenSet = false;
116 bool m_timestampAttributeNameHasBeenSet = false;
117 bool m_xAttributeNameHasBeenSet = false;
118 bool m_yAttributeNameHasBeenSet = false;
119};
120
121} // namespace Model
122} // namespace SageMakerGeospatial
123} // namespace Aws
AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_SAGEMAKERGEOSPATIAL_API MapMatchingConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
MapMatchingConfig & WithXAttributeName(XAttributeNameT &&value)
MapMatchingConfig & WithYAttributeName(YAttributeNameT &&value)
void SetTimestampAttributeName(TimestampAttributeNameT &&value)
AWS_SAGEMAKERGEOSPATIAL_API MapMatchingConfig(Aws::Utils::Json::JsonView jsonValue)
AWS_SAGEMAKERGEOSPATIAL_API MapMatchingConfig()=default
MapMatchingConfig & WithTimestampAttributeName(TimestampAttributeNameT &&value)
MapMatchingConfig & WithIdAttributeName(IdAttributeNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue