AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ErrorDetail.h
1
6#pragma once
7#include <aws/glue/Glue_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 Glue
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_GLUE_API ErrorDetail();
35 AWS_GLUE_API ErrorDetail(Aws::Utils::Json::JsonView jsonValue);
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 ErrorDetail& WithErrorCode(const Aws::String& value) { SetErrorCode(value); return *this;}
50 inline ErrorDetail& WithErrorCode(Aws::String&& value) { SetErrorCode(std::move(value)); return *this;}
51 inline ErrorDetail& WithErrorCode(const char* value) { SetErrorCode(value); return *this;}
53
55
58 inline const Aws::String& GetErrorMessage() const{ return m_errorMessage; }
59 inline bool ErrorMessageHasBeenSet() const { return m_errorMessageHasBeenSet; }
60 inline void SetErrorMessage(const Aws::String& value) { m_errorMessageHasBeenSet = true; m_errorMessage = value; }
61 inline void SetErrorMessage(Aws::String&& value) { m_errorMessageHasBeenSet = true; m_errorMessage = std::move(value); }
62 inline void SetErrorMessage(const char* value) { m_errorMessageHasBeenSet = true; m_errorMessage.assign(value); }
63 inline ErrorDetail& WithErrorMessage(const Aws::String& value) { SetErrorMessage(value); return *this;}
64 inline ErrorDetail& WithErrorMessage(Aws::String&& value) { SetErrorMessage(std::move(value)); return *this;}
65 inline ErrorDetail& WithErrorMessage(const char* value) { SetErrorMessage(value); return *this;}
67 private:
68
69 Aws::String m_errorCode;
70 bool m_errorCodeHasBeenSet = false;
71
72 Aws::String m_errorMessage;
73 bool m_errorMessageHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace Glue
78} // namespace Aws
ErrorDetail & WithErrorCode(const Aws::String &value)
Definition ErrorDetail.h:49
ErrorDetail & WithErrorCode(Aws::String &&value)
Definition ErrorDetail.h:50
void SetErrorCode(Aws::String &&value)
Definition ErrorDetail.h:47
void SetErrorMessage(const char *value)
Definition ErrorDetail.h:62
ErrorDetail & WithErrorMessage(const Aws::String &value)
Definition ErrorDetail.h:63
AWS_GLUE_API Aws::Utils::Json::JsonValue Jsonize() const
ErrorDetail & WithErrorMessage(Aws::String &&value)
Definition ErrorDetail.h:64
bool ErrorMessageHasBeenSet() const
Definition ErrorDetail.h:59
AWS_GLUE_API ErrorDetail(Aws::Utils::Json::JsonView jsonValue)
void SetErrorCode(const Aws::String &value)
Definition ErrorDetail.h:46
ErrorDetail & WithErrorCode(const char *value)
Definition ErrorDetail.h:51
AWS_GLUE_API ErrorDetail & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetErrorMessage(const Aws::String &value)
Definition ErrorDetail.h:60
void SetErrorMessage(Aws::String &&value)
Definition ErrorDetail.h:61
const Aws::String & GetErrorCode() const
Definition ErrorDetail.h:44
const Aws::String & GetErrorMessage() const
Definition ErrorDetail.h:58
void SetErrorCode(const char *value)
Definition ErrorDetail.h:48
ErrorDetail & WithErrorMessage(const char *value)
Definition ErrorDetail.h:65
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue