AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
BatchCreateVariableError.h
1
6#pragma once
7#include <aws/frauddetector/FraudDetector_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 FraudDetector
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_FRAUDDETECTOR_API BatchCreateVariableError();
36 AWS_FRAUDDETECTOR_API BatchCreateVariableError(Aws::Utils::Json::JsonView jsonValue);
38 AWS_FRAUDDETECTOR_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetName() const{ return m_name; }
46 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
47 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
48 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
49 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
50 inline BatchCreateVariableError& WithName(const Aws::String& value) { SetName(value); return *this;}
51 inline BatchCreateVariableError& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
52 inline BatchCreateVariableError& WithName(const char* value) { SetName(value); return *this;}
54
56
59 inline int GetCode() const{ return m_code; }
60 inline bool CodeHasBeenSet() const { return m_codeHasBeenSet; }
61 inline void SetCode(int value) { m_codeHasBeenSet = true; m_code = value; }
62 inline BatchCreateVariableError& WithCode(int value) { SetCode(value); return *this;}
64
66
69 inline const Aws::String& GetMessage() const{ return m_message; }
70 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
71 inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; }
72 inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); }
73 inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); }
74 inline BatchCreateVariableError& WithMessage(const Aws::String& value) { SetMessage(value); return *this;}
75 inline BatchCreateVariableError& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;}
76 inline BatchCreateVariableError& WithMessage(const char* value) { SetMessage(value); return *this;}
78 private:
79
80 Aws::String m_name;
81 bool m_nameHasBeenSet = false;
82
83 int m_code;
84 bool m_codeHasBeenSet = false;
85
86 Aws::String m_message;
87 bool m_messageHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace FraudDetector
92} // namespace Aws
BatchCreateVariableError & WithMessage(Aws::String &&value)
BatchCreateVariableError & WithMessage(const char *value)
BatchCreateVariableError & WithName(const Aws::String &value)
BatchCreateVariableError & WithMessage(const Aws::String &value)
BatchCreateVariableError & WithName(Aws::String &&value)
AWS_FRAUDDETECTOR_API BatchCreateVariableError & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_FRAUDDETECTOR_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_FRAUDDETECTOR_API BatchCreateVariableError(Aws::Utils::Json::JsonView jsonValue)
BatchCreateVariableError & WithName(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue