AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
ConflictException.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/mediapackagev2/Mediapackagev2_EXPORTS.h>
9#include <aws/mediapackagev2/model/ConflictExceptionType.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace mediapackagev2 {
21namespace Model {
22
30 public:
31 AWS_MEDIAPACKAGEV2_API ConflictException() = default;
32 AWS_MEDIAPACKAGEV2_API ConflictException(Aws::Utils::Json::JsonView jsonValue);
33 AWS_MEDIAPACKAGEV2_API ConflictException& operator=(Aws::Utils::Json::JsonView jsonValue);
34 AWS_MEDIAPACKAGEV2_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
38 inline const Aws::String& GetMessage() const { return m_message; }
39 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
40 template <typename MessageT = Aws::String>
41 void SetMessage(MessageT&& value) {
42 m_messageHasBeenSet = true;
43 m_message = std::forward<MessageT>(value);
44 }
45 template <typename MessageT = Aws::String>
46 ConflictException& WithMessage(MessageT&& value) {
47 SetMessage(std::forward<MessageT>(value));
48 return *this;
49 }
51
53
56 inline ConflictExceptionType GetConflictExceptionType() const { return m_conflictExceptionType; }
57 inline bool ConflictExceptionTypeHasBeenSet() const { return m_conflictExceptionTypeHasBeenSet; }
59 m_conflictExceptionTypeHasBeenSet = true;
60 m_conflictExceptionType = value;
61 }
64 return *this;
65 }
67 private:
68 Aws::String m_message;
69
71 bool m_messageHasBeenSet = false;
72 bool m_conflictExceptionTypeHasBeenSet = false;
73};
74
75} // namespace Model
76} // namespace mediapackagev2
77} // namespace Aws
ConflictException & WithMessage(MessageT &&value)
AWS_MEDIAPACKAGEV2_API ConflictException(Aws::Utils::Json::JsonView jsonValue)
ConflictExceptionType GetConflictExceptionType() const
AWS_MEDIAPACKAGEV2_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_MEDIAPACKAGEV2_API ConflictException()=default
AWS_MEDIAPACKAGEV2_API ConflictException & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetConflictExceptionType(ConflictExceptionType value)
ConflictException & WithConflictExceptionType(ConflictExceptionType value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue