AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
FieldOptionError.h
1
6#pragma once
7#include <aws/connectcases/ConnectCases_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
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 ConnectCases
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_CONNECTCASES_API FieldOptionError();
35 AWS_CONNECTCASES_API FieldOptionError(Aws::Utils::Json::JsonView jsonValue);
36 AWS_CONNECTCASES_API FieldOptionError& operator=(Aws::Utils::Json::JsonView jsonValue);
37 AWS_CONNECTCASES_API Aws::Utils::Json::JsonValue Jsonize() const;
38
39
41
44 inline const Aws::String& GetErrorCode() const{ return m_errorCode; }
45 inline bool ErrorCodeHasBeenSet() const { return m_errorCodeHasBeenSet; }
46 inline void SetErrorCode(const Aws::String& value) { m_errorCodeHasBeenSet = true; m_errorCode = value; }
47 inline void SetErrorCode(Aws::String&& value) { m_errorCodeHasBeenSet = true; m_errorCode = std::move(value); }
48 inline void SetErrorCode(const char* value) { m_errorCodeHasBeenSet = true; m_errorCode.assign(value); }
49 inline FieldOptionError& WithErrorCode(const Aws::String& value) { SetErrorCode(value); return *this;}
50 inline FieldOptionError& WithErrorCode(Aws::String&& value) { SetErrorCode(std::move(value)); return *this;}
51 inline FieldOptionError& WithErrorCode(const char* value) { SetErrorCode(value); return *this;}
53
55
58 inline const Aws::String& GetMessage() const{ return m_message; }
59 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
60 inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; }
61 inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); }
62 inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); }
63 inline FieldOptionError& WithMessage(const Aws::String& value) { SetMessage(value); return *this;}
64 inline FieldOptionError& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;}
65 inline FieldOptionError& WithMessage(const char* value) { SetMessage(value); return *this;}
67
69
72 inline const Aws::String& GetValue() const{ return m_value; }
73 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
74 inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; }
75 inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); }
76 inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); }
77 inline FieldOptionError& WithValue(const Aws::String& value) { SetValue(value); return *this;}
78 inline FieldOptionError& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;}
79 inline FieldOptionError& WithValue(const char* value) { SetValue(value); return *this;}
81 private:
82
83 Aws::String m_errorCode;
84 bool m_errorCodeHasBeenSet = false;
85
86 Aws::String m_message;
87 bool m_messageHasBeenSet = false;
88
89 Aws::String m_value;
90 bool m_valueHasBeenSet = false;
91 };
92
93} // namespace Model
94} // namespace ConnectCases
95} // namespace Aws
AWS_CONNECTCASES_API FieldOptionError & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetErrorCode(const Aws::String &value)
FieldOptionError & WithValue(Aws::String &&value)
FieldOptionError & WithErrorCode(const char *value)
FieldOptionError & WithMessage(const Aws::String &value)
FieldOptionError & WithValue(const Aws::String &value)
FieldOptionError & WithErrorCode(Aws::String &&value)
void SetValue(const Aws::String &value)
FieldOptionError & WithValue(const char *value)
FieldOptionError & WithErrorCode(const Aws::String &value)
FieldOptionError & WithMessage(Aws::String &&value)
AWS_CONNECTCASES_API FieldOptionError(Aws::Utils::Json::JsonView jsonValue)
void SetMessage(const Aws::String &value)
AWS_CONNECTCASES_API Aws::Utils::Json::JsonValue Jsonize() const
FieldOptionError & WithMessage(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue