AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
ValidationExceptionField.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& GetMessage() const{ return m_message; }
44
48 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
49
53 inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; }
54
58 inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); }
59
63 inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); }
64
68 inline ValidationExceptionField& WithMessage(const Aws::String& value) { SetMessage(value); return *this;}
69
73 inline ValidationExceptionField& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;}
74
78 inline ValidationExceptionField& WithMessage(const char* value) { SetMessage(value); return *this;}
79
80
84 inline const Aws::String& GetName() const{ return m_name; }
85
89 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
90
94 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
95
99 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
100
104 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
105
109 inline ValidationExceptionField& WithName(const Aws::String& value) { SetName(value); return *this;}
110
114 inline ValidationExceptionField& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
115
119 inline ValidationExceptionField& WithName(const char* value) { SetName(value); return *this;}
120
121 private:
122
123 Aws::String m_message;
124 bool m_messageHasBeenSet = false;
125
126 Aws::String m_name;
127 bool m_nameHasBeenSet = false;
128 };
129
130} // namespace Model
131} // namespace Panorama
132} // namespace Aws
#define AWS_PANORAMA_API
ValidationExceptionField & WithName(Aws::String &&value)
ValidationExceptionField & WithMessage(const char *value)
ValidationExceptionField & WithMessage(const Aws::String &value)
AWS_PANORAMA_API ValidationExceptionField(Aws::Utils::Json::JsonView jsonValue)
ValidationExceptionField & WithName(const Aws::String &value)
ValidationExceptionField & WithMessage(Aws::String &&value)
AWS_PANORAMA_API ValidationExceptionField & operator=(Aws::Utils::Json::JsonView jsonValue)
ValidationExceptionField & WithName(const char *value)
AWS_PANORAMA_API Aws::Utils::Json::JsonValue Jsonize() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String