AWS SDK for C++

AWS SDK for C++ Version 1.11.900

Loading...
Searching...
No Matches
ThrottlingException.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
29 public:
30 AWS_CLOUDWATCHOMNI_API ThrottlingException() = default;
31 AWS_CLOUDWATCHOMNI_API ThrottlingException(const std::shared_ptr<Aws::Crt::Cbor::CborDecoder>& decoder);
32 AWS_CLOUDWATCHOMNI_API ThrottlingException& operator=(const std::shared_ptr<Aws::Crt::Cbor::CborDecoder>& decoder);
33 AWS_CLOUDWATCHOMNI_API void CborEncode(Aws::Crt::Cbor::CborEncoder& encoder) const;
34
36
37 inline const Aws::String& GetMessage() const { return m_message; }
38 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
39 template <typename MessageT = Aws::String>
40 void SetMessage(MessageT&& value) {
41 m_messageHasBeenSet = true;
42 m_message = std::forward<MessageT>(value);
43 }
44 template <typename MessageT = Aws::String>
45 ThrottlingException& WithMessage(MessageT&& value) {
46 SetMessage(std::forward<MessageT>(value));
47 return *this;
48 }
50
52
56 inline int64_t GetRetryAfterSeconds() const { return m_retryAfterSeconds; }
57 inline bool RetryAfterSecondsHasBeenSet() const { return m_retryAfterSecondsHasBeenSet; }
58 inline void SetRetryAfterSeconds(int64_t value) {
59 m_retryAfterSecondsHasBeenSet = true;
60 m_retryAfterSeconds = value;
61 }
64 return *this;
65 }
67 private:
68 Aws::String m_message;
69
70 int64_t m_retryAfterSeconds{0};
71 bool m_messageHasBeenSet = false;
72 bool m_retryAfterSecondsHasBeenSet = false;
73};
74
75} // namespace Model
76} // namespace CloudWatchOmni
77} // namespace Aws
AWS_CLOUDWATCHOMNI_API ThrottlingException(const std::shared_ptr< Aws::Crt::Cbor::CborDecoder > &decoder)
AWS_CLOUDWATCHOMNI_API ThrottlingException()=default
AWS_CLOUDWATCHOMNI_API void CborEncode(Aws::Crt::Cbor::CborEncoder &encoder) const
AWS_CLOUDWATCHOMNI_API ThrottlingException & operator=(const std::shared_ptr< Aws::Crt::Cbor::CborDecoder > &decoder)
ThrottlingException & WithRetryAfterSeconds(int64_t value)
ThrottlingException & WithMessage(MessageT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String