AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ErrorDetails.h
1
6#pragma once
7#include <aws/appstream/AppStream_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 AppStream
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_APPSTREAM_API ErrorDetails();
35 AWS_APPSTREAM_API ErrorDetails(Aws::Utils::Json::JsonView jsonValue);
36 AWS_APPSTREAM_API ErrorDetails& operator=(Aws::Utils::Json::JsonView jsonValue);
37 AWS_APPSTREAM_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 ErrorDetails& WithErrorCode(const Aws::String& value) { SetErrorCode(value); return *this;}
50 inline ErrorDetails& WithErrorCode(Aws::String&& value) { SetErrorCode(std::move(value)); return *this;}
51 inline ErrorDetails& 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 ErrorDetails& WithErrorMessage(const Aws::String& value) { SetErrorMessage(value); return *this;}
64 inline ErrorDetails& WithErrorMessage(Aws::String&& value) { SetErrorMessage(std::move(value)); return *this;}
65 inline ErrorDetails& 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 AppStream
78} // namespace Aws
void SetErrorCode(Aws::String &&value)
void SetErrorMessage(Aws::String &&value)
AWS_APPSTREAM_API Aws::Utils::Json::JsonValue Jsonize() const
void SetErrorMessage(const char *value)
ErrorDetails & WithErrorCode(const char *value)
const Aws::String & GetErrorCode() const
AWS_APPSTREAM_API ErrorDetails & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_APPSTREAM_API ErrorDetails(Aws::Utils::Json::JsonView jsonValue)
ErrorDetails & WithErrorCode(Aws::String &&value)
void SetErrorCode(const char *value)
ErrorDetails & WithErrorMessage(const char *value)
const Aws::String & GetErrorMessage() const
void SetErrorCode(const Aws::String &value)
ErrorDetails & WithErrorMessage(Aws::String &&value)
void SetErrorMessage(const Aws::String &value)
ErrorDetails & WithErrorCode(const Aws::String &value)
ErrorDetails & WithErrorMessage(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue