AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
ValidationExceptionErrorArgument.h
Go to the documentation of this file.
1
6#pragma once
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace Panorama
22{
23namespace Model
24{
25
32 {
33 public:
38
39
43 inline const Aws::String& GetName() const{ return m_name; }
44
48 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
49
53 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
54
58 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
59
63 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
64
68 inline ValidationExceptionErrorArgument& WithName(const Aws::String& value) { SetName(value); return *this;}
69
73 inline ValidationExceptionErrorArgument& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
74
78 inline ValidationExceptionErrorArgument& WithName(const char* value) { SetName(value); return *this;}
79
80
84 inline const Aws::String& GetValue() const{ return m_value; }
85
89 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
90
94 inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; }
95
99 inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); }
100
104 inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); }
105
109 inline ValidationExceptionErrorArgument& WithValue(const Aws::String& value) { SetValue(value); return *this;}
110
114 inline ValidationExceptionErrorArgument& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;}
115
119 inline ValidationExceptionErrorArgument& WithValue(const char* value) { SetValue(value); return *this;}
120
121 private:
122
123 Aws::String m_name;
124 bool m_nameHasBeenSet = false;
125
126 Aws::String m_value;
127 bool m_valueHasBeenSet = false;
128 };
129
130} // namespace Model
131} // namespace Panorama
132} // namespace Aws
#define AWS_PANORAMA_API
AWS_PANORAMA_API ValidationExceptionErrorArgument(Aws::Utils::Json::JsonView jsonValue)
AWS_PANORAMA_API Aws::Utils::Json::JsonValue Jsonize() const
ValidationExceptionErrorArgument & WithName(const Aws::String &value)
ValidationExceptionErrorArgument & WithValue(const Aws::String &value)
ValidationExceptionErrorArgument & WithName(Aws::String &&value)
ValidationExceptionErrorArgument & WithValue(Aws::String &&value)
ValidationExceptionErrorArgument & WithName(const char *value)
AWS_PANORAMA_API ValidationExceptionErrorArgument & operator=(Aws::Utils::Json::JsonView jsonValue)
ValidationExceptionErrorArgument & WithValue(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String