AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ConflictException.h
1
6#pragma once
7#include <aws/iotfleetwise/IoTFleetWise_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 IoTFleetWise
22{
23namespace Model
24{
25
34 {
35 public:
36 AWS_IOTFLEETWISE_API ConflictException();
37 AWS_IOTFLEETWISE_API ConflictException(Aws::Utils::Json::JsonView jsonValue);
38 AWS_IOTFLEETWISE_API ConflictException& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_IOTFLEETWISE_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
44 inline const Aws::String& GetMessage() const{ return m_message; }
45 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
46 inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; }
47 inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); }
48 inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); }
49 inline ConflictException& WithMessage(const Aws::String& value) { SetMessage(value); return *this;}
50 inline ConflictException& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;}
51 inline ConflictException& WithMessage(const char* value) { SetMessage(value); return *this;}
53
55
58 inline const Aws::String& GetResource() const{ return m_resource; }
59 inline bool ResourceHasBeenSet() const { return m_resourceHasBeenSet; }
60 inline void SetResource(const Aws::String& value) { m_resourceHasBeenSet = true; m_resource = value; }
61 inline void SetResource(Aws::String&& value) { m_resourceHasBeenSet = true; m_resource = std::move(value); }
62 inline void SetResource(const char* value) { m_resourceHasBeenSet = true; m_resource.assign(value); }
63 inline ConflictException& WithResource(const Aws::String& value) { SetResource(value); return *this;}
64 inline ConflictException& WithResource(Aws::String&& value) { SetResource(std::move(value)); return *this;}
65 inline ConflictException& WithResource(const char* value) { SetResource(value); return *this;}
67
69
72 inline const Aws::String& GetResourceType() const{ return m_resourceType; }
73 inline bool ResourceTypeHasBeenSet() const { return m_resourceTypeHasBeenSet; }
74 inline void SetResourceType(const Aws::String& value) { m_resourceTypeHasBeenSet = true; m_resourceType = value; }
75 inline void SetResourceType(Aws::String&& value) { m_resourceTypeHasBeenSet = true; m_resourceType = std::move(value); }
76 inline void SetResourceType(const char* value) { m_resourceTypeHasBeenSet = true; m_resourceType.assign(value); }
77 inline ConflictException& WithResourceType(const Aws::String& value) { SetResourceType(value); return *this;}
78 inline ConflictException& WithResourceType(Aws::String&& value) { SetResourceType(std::move(value)); return *this;}
79 inline ConflictException& WithResourceType(const char* value) { SetResourceType(value); return *this;}
81 private:
82
83 Aws::String m_message;
84 bool m_messageHasBeenSet = false;
85
86 Aws::String m_resource;
87 bool m_resourceHasBeenSet = false;
88
89 Aws::String m_resourceType;
90 bool m_resourceTypeHasBeenSet = false;
91 };
92
93} // namespace Model
94} // namespace IoTFleetWise
95} // namespace Aws
ConflictException & WithResourceType(const char *value)
ConflictException & WithResource(const char *value)
ConflictException & WithResource(Aws::String &&value)
AWS_IOTFLEETWISE_API ConflictException & operator=(Aws::Utils::Json::JsonView jsonValue)
ConflictException & WithResource(const Aws::String &value)
AWS_IOTFLEETWISE_API ConflictException(Aws::Utils::Json::JsonView jsonValue)
void SetResource(const Aws::String &value)
void SetResourceType(const Aws::String &value)
ConflictException & WithResourceType(Aws::String &&value)
AWS_IOTFLEETWISE_API Aws::Utils::Json::JsonValue Jsonize() const
void SetMessage(const Aws::String &value)
ConflictException & WithResourceType(const Aws::String &value)
ConflictException & WithMessage(Aws::String &&value)
ConflictException & WithMessage(const Aws::String &value)
ConflictException & WithMessage(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue