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/cleanrooms/CleanRooms_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/cleanrooms/model/ResourceType.h>
10#include <aws/cleanrooms/model/ConflictExceptionReason.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace CleanRooms
24{
25namespace Model
26{
27
35 {
36 public:
37 AWS_CLEANROOMS_API ConflictException();
38 AWS_CLEANROOMS_API ConflictException(Aws::Utils::Json::JsonView jsonValue);
40 AWS_CLEANROOMS_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
45 inline const Aws::String& GetMessage() const{ return m_message; }
46 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
47 inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; }
48 inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); }
49 inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); }
50 inline ConflictException& WithMessage(const Aws::String& value) { SetMessage(value); return *this;}
51 inline ConflictException& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;}
52 inline ConflictException& WithMessage(const char* value) { SetMessage(value); return *this;}
54
56
59 inline const Aws::String& GetResourceId() const{ return m_resourceId; }
60 inline bool ResourceIdHasBeenSet() const { return m_resourceIdHasBeenSet; }
61 inline void SetResourceId(const Aws::String& value) { m_resourceIdHasBeenSet = true; m_resourceId = value; }
62 inline void SetResourceId(Aws::String&& value) { m_resourceIdHasBeenSet = true; m_resourceId = std::move(value); }
63 inline void SetResourceId(const char* value) { m_resourceIdHasBeenSet = true; m_resourceId.assign(value); }
64 inline ConflictException& WithResourceId(const Aws::String& value) { SetResourceId(value); return *this;}
65 inline ConflictException& WithResourceId(Aws::String&& value) { SetResourceId(std::move(value)); return *this;}
66 inline ConflictException& WithResourceId(const char* value) { SetResourceId(value); return *this;}
68
70
73 inline const ResourceType& GetResourceType() const{ return m_resourceType; }
74 inline bool ResourceTypeHasBeenSet() const { return m_resourceTypeHasBeenSet; }
75 inline void SetResourceType(const ResourceType& value) { m_resourceTypeHasBeenSet = true; m_resourceType = value; }
76 inline void SetResourceType(ResourceType&& value) { m_resourceTypeHasBeenSet = true; m_resourceType = std::move(value); }
77 inline ConflictException& WithResourceType(const ResourceType& value) { SetResourceType(value); return *this;}
78 inline ConflictException& WithResourceType(ResourceType&& value) { SetResourceType(std::move(value)); return *this;}
80
82
85 inline const ConflictExceptionReason& GetReason() const{ return m_reason; }
86 inline bool ReasonHasBeenSet() const { return m_reasonHasBeenSet; }
87 inline void SetReason(const ConflictExceptionReason& value) { m_reasonHasBeenSet = true; m_reason = value; }
88 inline void SetReason(ConflictExceptionReason&& value) { m_reasonHasBeenSet = true; m_reason = std::move(value); }
89 inline ConflictException& WithReason(const ConflictExceptionReason& value) { SetReason(value); return *this;}
90 inline ConflictException& WithReason(ConflictExceptionReason&& value) { SetReason(std::move(value)); return *this;}
92 private:
93
94 Aws::String m_message;
95 bool m_messageHasBeenSet = false;
96
97 Aws::String m_resourceId;
98 bool m_resourceIdHasBeenSet = false;
99
100 ResourceType m_resourceType;
101 bool m_resourceTypeHasBeenSet = false;
102
104 bool m_reasonHasBeenSet = false;
105 };
106
107} // namespace Model
108} // namespace CleanRooms
109} // namespace Aws
ConflictException & WithMessage(const Aws::String &value)
const ConflictExceptionReason & GetReason() const
ConflictException & WithReason(ConflictExceptionReason &&value)
void SetResourceId(const Aws::String &value)
ConflictException & WithResourceId(Aws::String &&value)
void SetMessage(const Aws::String &value)
AWS_CLEANROOMS_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_CLEANROOMS_API ConflictException(Aws::Utils::Json::JsonView jsonValue)
ConflictException & WithResourceType(ResourceType &&value)
ConflictException & WithResourceType(const ResourceType &value)
ConflictException & WithResourceId(const Aws::String &value)
void SetResourceType(const ResourceType &value)
AWS_CLEANROOMS_API ConflictException & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetResourceId() const
ConflictException & WithResourceId(const char *value)
const ResourceType & GetResourceType() const
void SetReason(ConflictExceptionReason &&value)
ConflictException & WithMessage(Aws::String &&value)
ConflictException & WithMessage(const char *value)
void SetReason(const ConflictExceptionReason &value)
ConflictException & WithReason(const ConflictExceptionReason &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue