AWS SDK for C++

AWS SDK for C++ Version 1.11.900

Loading...
Searching...
No Matches
ResourceNotFoundException.h
1
6#pragma once
7#include <aws/cloudwatchomni/CloudWatchOmni_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/crt/cbor/Cbor.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Cbor {
16class CborValue;
17} // namespace Cbor
18} // namespace Utils
19namespace CloudWatchOmni {
20namespace Model {
21
28 public:
29 AWS_CLOUDWATCHOMNI_API ResourceNotFoundException() = default;
30 AWS_CLOUDWATCHOMNI_API ResourceNotFoundException(const std::shared_ptr<Aws::Crt::Cbor::CborDecoder>& decoder);
31 AWS_CLOUDWATCHOMNI_API ResourceNotFoundException& operator=(const std::shared_ptr<Aws::Crt::Cbor::CborDecoder>& decoder);
32 AWS_CLOUDWATCHOMNI_API void CborEncode(Aws::Crt::Cbor::CborEncoder& encoder) const;
33
35
36 inline const Aws::String& GetMessage() const { return m_message; }
37 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
38 template <typename MessageT = Aws::String>
39 void SetMessage(MessageT&& value) {
40 m_messageHasBeenSet = true;
41 m_message = std::forward<MessageT>(value);
42 }
43 template <typename MessageT = Aws::String>
45 SetMessage(std::forward<MessageT>(value));
46 return *this;
47 }
49
51
54 inline const Aws::String& GetResourceType() const { return m_resourceType; }
55 inline bool ResourceTypeHasBeenSet() const { return m_resourceTypeHasBeenSet; }
56 template <typename ResourceTypeT = Aws::String>
57 void SetResourceType(ResourceTypeT&& value) {
58 m_resourceTypeHasBeenSet = true;
59 m_resourceType = std::forward<ResourceTypeT>(value);
60 }
61 template <typename ResourceTypeT = Aws::String>
63 SetResourceType(std::forward<ResourceTypeT>(value));
64 return *this;
65 }
67
69
73 inline const Aws::String& GetResourceId() const { return m_resourceId; }
74 inline bool ResourceIdHasBeenSet() const { return m_resourceIdHasBeenSet; }
75 template <typename ResourceIdT = Aws::String>
76 void SetResourceId(ResourceIdT&& value) {
77 m_resourceIdHasBeenSet = true;
78 m_resourceId = std::forward<ResourceIdT>(value);
79 }
80 template <typename ResourceIdT = Aws::String>
82 SetResourceId(std::forward<ResourceIdT>(value));
83 return *this;
84 }
86
88
91 inline const Aws::String& GetErrorCode() const { return m_errorCode; }
92 inline bool ErrorCodeHasBeenSet() const { return m_errorCodeHasBeenSet; }
93 template <typename ErrorCodeT = Aws::String>
94 void SetErrorCode(ErrorCodeT&& value) {
95 m_errorCodeHasBeenSet = true;
96 m_errorCode = std::forward<ErrorCodeT>(value);
97 }
98 template <typename ErrorCodeT = Aws::String>
100 SetErrorCode(std::forward<ErrorCodeT>(value));
101 return *this;
102 }
104 private:
105 Aws::String m_message;
106
107 Aws::String m_resourceType;
108
109 Aws::String m_resourceId;
110
111 Aws::String m_errorCode;
112 bool m_messageHasBeenSet = false;
113 bool m_resourceTypeHasBeenSet = false;
114 bool m_resourceIdHasBeenSet = false;
115 bool m_errorCodeHasBeenSet = false;
116};
117
118} // namespace Model
119} // namespace CloudWatchOmni
120} // namespace Aws
ResourceNotFoundException & WithErrorCode(ErrorCodeT &&value)
AWS_CLOUDWATCHOMNI_API ResourceNotFoundException()=default
AWS_CLOUDWATCHOMNI_API ResourceNotFoundException(const std::shared_ptr< Aws::Crt::Cbor::CborDecoder > &decoder)
ResourceNotFoundException & WithMessage(MessageT &&value)
AWS_CLOUDWATCHOMNI_API void CborEncode(Aws::Crt::Cbor::CborEncoder &encoder) const
ResourceNotFoundException & WithResourceType(ResourceTypeT &&value)
ResourceNotFoundException & WithResourceId(ResourceIdT &&value)
AWS_CLOUDWATCHOMNI_API ResourceNotFoundException & operator=(const std::shared_ptr< Aws::Crt::Cbor::CborDecoder > &decoder)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String