AWS SDK for C++

AWS SDK for C++ Version 1.11.900

Loading...
Searching...
No Matches
ValidationException.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 ValidationException() = default;
30 AWS_CLOUDWATCHOMNI_API ValidationException(const std::shared_ptr<Aws::Crt::Cbor::CborDecoder>& decoder);
31 AWS_CLOUDWATCHOMNI_API ValidationException& 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>
44 ValidationException& WithMessage(MessageT&& value) {
45 SetMessage(std::forward<MessageT>(value));
46 return *this;
47 }
49
51
54 inline const Aws::String& GetErrorCode() const { return m_errorCode; }
55 inline bool ErrorCodeHasBeenSet() const { return m_errorCodeHasBeenSet; }
56 template <typename ErrorCodeT = Aws::String>
57 void SetErrorCode(ErrorCodeT&& value) {
58 m_errorCodeHasBeenSet = true;
59 m_errorCode = std::forward<ErrorCodeT>(value);
60 }
61 template <typename ErrorCodeT = Aws::String>
62 ValidationException& WithErrorCode(ErrorCodeT&& value) {
63 SetErrorCode(std::forward<ErrorCodeT>(value));
64 return *this;
65 }
67 private:
68 Aws::String m_message;
69
70 Aws::String m_errorCode;
71 bool m_messageHasBeenSet = false;
72 bool m_errorCodeHasBeenSet = false;
73};
74
75} // namespace Model
76} // namespace CloudWatchOmni
77} // namespace Aws
AWS_CLOUDWATCHOMNI_API ValidationException()=default
AWS_CLOUDWATCHOMNI_API ValidationException(const std::shared_ptr< Aws::Crt::Cbor::CborDecoder > &decoder)
ValidationException & WithErrorCode(ErrorCodeT &&value)
ValidationException & WithMessage(MessageT &&value)
AWS_CLOUDWATCHOMNI_API ValidationException & operator=(const std::shared_ptr< Aws::Crt::Cbor::CborDecoder > &decoder)
AWS_CLOUDWATCHOMNI_API void CborEncode(Aws::Crt::Cbor::CborEncoder &encoder) const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String