AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
InvalidRequestException.h
1
6#pragma once
7#include <aws/datasync/DataSync_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 DataSync
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_DATASYNC_API InvalidRequestException();
38 AWS_DATASYNC_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
43 inline const Aws::String& GetMessage() const{ return m_message; }
44 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
45 inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; }
46 inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); }
47 inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); }
48 inline InvalidRequestException& WithMessage(const Aws::String& value) { SetMessage(value); return *this;}
49 inline InvalidRequestException& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;}
50 inline InvalidRequestException& WithMessage(const char* value) { SetMessage(value); return *this;}
52
54
55 inline const Aws::String& GetErrorCode() const{ return m_errorCode; }
56 inline bool ErrorCodeHasBeenSet() const { return m_errorCodeHasBeenSet; }
57 inline void SetErrorCode(const Aws::String& value) { m_errorCodeHasBeenSet = true; m_errorCode = value; }
58 inline void SetErrorCode(Aws::String&& value) { m_errorCodeHasBeenSet = true; m_errorCode = std::move(value); }
59 inline void SetErrorCode(const char* value) { m_errorCodeHasBeenSet = true; m_errorCode.assign(value); }
60 inline InvalidRequestException& WithErrorCode(const Aws::String& value) { SetErrorCode(value); return *this;}
61 inline InvalidRequestException& WithErrorCode(Aws::String&& value) { SetErrorCode(std::move(value)); return *this;}
62 inline InvalidRequestException& WithErrorCode(const char* value) { SetErrorCode(value); return *this;}
64
66
67 inline const Aws::String& GetDatasyncErrorCode() const{ return m_datasyncErrorCode; }
68 inline bool DatasyncErrorCodeHasBeenSet() const { return m_datasyncErrorCodeHasBeenSet; }
69 inline void SetDatasyncErrorCode(const Aws::String& value) { m_datasyncErrorCodeHasBeenSet = true; m_datasyncErrorCode = value; }
70 inline void SetDatasyncErrorCode(Aws::String&& value) { m_datasyncErrorCodeHasBeenSet = true; m_datasyncErrorCode = std::move(value); }
71 inline void SetDatasyncErrorCode(const char* value) { m_datasyncErrorCodeHasBeenSet = true; m_datasyncErrorCode.assign(value); }
73 inline InvalidRequestException& WithDatasyncErrorCode(Aws::String&& value) { SetDatasyncErrorCode(std::move(value)); return *this;}
74 inline InvalidRequestException& WithDatasyncErrorCode(const char* value) { SetDatasyncErrorCode(value); return *this;}
76 private:
77
78 Aws::String m_message;
79 bool m_messageHasBeenSet = false;
80
81 Aws::String m_errorCode;
82 bool m_errorCodeHasBeenSet = false;
83
84 Aws::String m_datasyncErrorCode;
85 bool m_datasyncErrorCodeHasBeenSet = false;
86 };
87
88} // namespace Model
89} // namespace DataSync
90} // namespace Aws
AWS_DATASYNC_API InvalidRequestException & operator=(Aws::Utils::Json::JsonView jsonValue)
InvalidRequestException & WithMessage(Aws::String &&value)
AWS_DATASYNC_API InvalidRequestException(Aws::Utils::Json::JsonView jsonValue)
AWS_DATASYNC_API Aws::Utils::Json::JsonValue Jsonize() const
InvalidRequestException & WithMessage(const char *value)
InvalidRequestException & WithErrorCode(Aws::String &&value)
InvalidRequestException & WithErrorCode(const Aws::String &value)
InvalidRequestException & WithDatasyncErrorCode(const char *value)
InvalidRequestException & WithMessage(const Aws::String &value)
InvalidRequestException & WithDatasyncErrorCode(Aws::String &&value)
InvalidRequestException & WithDatasyncErrorCode(const Aws::String &value)
InvalidRequestException & WithErrorCode(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue