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/mediapackagev2/Mediapackagev2_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/mediapackagev2/model/ConflictExceptionType.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace mediapackagev2
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_MEDIAPACKAGEV2_API ConflictException();
37 AWS_MEDIAPACKAGEV2_API ConflictException(Aws::Utils::Json::JsonView jsonValue);
38 AWS_MEDIAPACKAGEV2_API ConflictException& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_MEDIAPACKAGEV2_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 ConflictExceptionType& GetConflictExceptionType() const{ return m_conflictExceptionType; }
59 inline bool ConflictExceptionTypeHasBeenSet() const { return m_conflictExceptionTypeHasBeenSet; }
60 inline void SetConflictExceptionType(const ConflictExceptionType& value) { m_conflictExceptionTypeHasBeenSet = true; m_conflictExceptionType = value; }
61 inline void SetConflictExceptionType(ConflictExceptionType&& value) { m_conflictExceptionTypeHasBeenSet = true; m_conflictExceptionType = std::move(value); }
65 private:
66
67 Aws::String m_message;
68 bool m_messageHasBeenSet = false;
69
70 ConflictExceptionType m_conflictExceptionType;
71 bool m_conflictExceptionTypeHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace mediapackagev2
76} // namespace Aws
ConflictException & WithConflictExceptionType(ConflictExceptionType &&value)
void SetConflictExceptionType(ConflictExceptionType &&value)
AWS_MEDIAPACKAGEV2_API ConflictException(Aws::Utils::Json::JsonView jsonValue)
ConflictException & WithConflictExceptionType(const ConflictExceptionType &value)
ConflictException & WithMessage(Aws::String &&value)
AWS_MEDIAPACKAGEV2_API Aws::Utils::Json::JsonValue Jsonize() const
const ConflictExceptionType & GetConflictExceptionType() const
AWS_MEDIAPACKAGEV2_API ConflictException & operator=(Aws::Utils::Json::JsonView jsonValue)
ConflictException & WithMessage(const char *value)
void SetConflictExceptionType(const ConflictExceptionType &value)
ConflictException & WithMessage(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue