AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
ResourceNotFoundException.h
Go to the documentation of this file.
1
6#pragma once
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 Panorama
22{
23namespace Model
24{
25
32 {
33 public:
38
39
40
41 inline const Aws::String& GetMessage() const{ return m_message; }
42
43
44 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
45
46
47 inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; }
48
49
50 inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); }
51
52
53 inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); }
54
55
56 inline ResourceNotFoundException& WithMessage(const Aws::String& value) { SetMessage(value); return *this;}
57
58
59 inline ResourceNotFoundException& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;}
60
61
62 inline ResourceNotFoundException& WithMessage(const char* value) { SetMessage(value); return *this;}
63
64
68 inline const Aws::String& GetResourceId() const{ return m_resourceId; }
69
73 inline bool ResourceIdHasBeenSet() const { return m_resourceIdHasBeenSet; }
74
78 inline void SetResourceId(const Aws::String& value) { m_resourceIdHasBeenSet = true; m_resourceId = value; }
79
83 inline void SetResourceId(Aws::String&& value) { m_resourceIdHasBeenSet = true; m_resourceId = std::move(value); }
84
88 inline void SetResourceId(const char* value) { m_resourceIdHasBeenSet = true; m_resourceId.assign(value); }
89
93 inline ResourceNotFoundException& WithResourceId(const Aws::String& value) { SetResourceId(value); return *this;}
94
98 inline ResourceNotFoundException& WithResourceId(Aws::String&& value) { SetResourceId(std::move(value)); return *this;}
99
103 inline ResourceNotFoundException& WithResourceId(const char* value) { SetResourceId(value); return *this;}
104
105
109 inline const Aws::String& GetResourceType() const{ return m_resourceType; }
110
114 inline bool ResourceTypeHasBeenSet() const { return m_resourceTypeHasBeenSet; }
115
119 inline void SetResourceType(const Aws::String& value) { m_resourceTypeHasBeenSet = true; m_resourceType = value; }
120
124 inline void SetResourceType(Aws::String&& value) { m_resourceTypeHasBeenSet = true; m_resourceType = std::move(value); }
125
129 inline void SetResourceType(const char* value) { m_resourceTypeHasBeenSet = true; m_resourceType.assign(value); }
130
134 inline ResourceNotFoundException& WithResourceType(const Aws::String& value) { SetResourceType(value); return *this;}
135
139 inline ResourceNotFoundException& WithResourceType(Aws::String&& value) { SetResourceType(std::move(value)); return *this;}
140
144 inline ResourceNotFoundException& WithResourceType(const char* value) { SetResourceType(value); return *this;}
145
146 private:
147
148 Aws::String m_message;
149 bool m_messageHasBeenSet = false;
150
151 Aws::String m_resourceId;
152 bool m_resourceIdHasBeenSet = false;
153
154 Aws::String m_resourceType;
155 bool m_resourceTypeHasBeenSet = false;
156 };
157
158} // namespace Model
159} // namespace Panorama
160} // namespace Aws
#define AWS_PANORAMA_API
ResourceNotFoundException & WithMessage(Aws::String &&value)
ResourceNotFoundException & WithResourceId(const Aws::String &value)
ResourceNotFoundException & WithResourceType(Aws::String &&value)
ResourceNotFoundException & WithResourceId(const char *value)
ResourceNotFoundException & WithMessage(const char *value)
ResourceNotFoundException & WithMessage(const Aws::String &value)
ResourceNotFoundException & WithResourceType(const Aws::String &value)
ResourceNotFoundException & WithResourceId(Aws::String &&value)
AWS_PANORAMA_API Aws::Utils::Json::JsonValue Jsonize() const
ResourceNotFoundException & WithResourceType(const char *value)
AWS_PANORAMA_API ResourceNotFoundException & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_PANORAMA_API ResourceNotFoundException(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String