AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
ThrottlingException.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/mgn/Mgn_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace mgn {
20namespace Model {
21
28 public:
29 AWS_MGN_API ThrottlingException() = default;
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 ThrottlingException& WithMessage(MessageT&& value) {
45 SetMessage(std::forward<MessageT>(value));
46 return *this;
47 }
49
51
54 inline const Aws::String& GetServiceCode() const { return m_serviceCode; }
55 inline bool ServiceCodeHasBeenSet() const { return m_serviceCodeHasBeenSet; }
56 template <typename ServiceCodeT = Aws::String>
57 void SetServiceCode(ServiceCodeT&& value) {
58 m_serviceCodeHasBeenSet = true;
59 m_serviceCode = std::forward<ServiceCodeT>(value);
60 }
61 template <typename ServiceCodeT = Aws::String>
62 ThrottlingException& WithServiceCode(ServiceCodeT&& value) {
63 SetServiceCode(std::forward<ServiceCodeT>(value));
64 return *this;
65 }
67
69
72 inline const Aws::String& GetQuotaCode() const { return m_quotaCode; }
73 inline bool QuotaCodeHasBeenSet() const { return m_quotaCodeHasBeenSet; }
74 template <typename QuotaCodeT = Aws::String>
75 void SetQuotaCode(QuotaCodeT&& value) {
76 m_quotaCodeHasBeenSet = true;
77 m_quotaCode = std::forward<QuotaCodeT>(value);
78 }
79 template <typename QuotaCodeT = Aws::String>
80 ThrottlingException& WithQuotaCode(QuotaCodeT&& value) {
81 SetQuotaCode(std::forward<QuotaCodeT>(value));
82 return *this;
83 }
85
87
90 inline const Aws::String& GetRetryAfterSeconds() const { return m_retryAfterSeconds; }
91 inline bool RetryAfterSecondsHasBeenSet() const { return m_retryAfterSecondsHasBeenSet; }
92 template <typename RetryAfterSecondsT = Aws::String>
93 void SetRetryAfterSeconds(RetryAfterSecondsT&& value) {
94 m_retryAfterSecondsHasBeenSet = true;
95 m_retryAfterSeconds = std::forward<RetryAfterSecondsT>(value);
96 }
97 template <typename RetryAfterSecondsT = Aws::String>
98 ThrottlingException& WithRetryAfterSeconds(RetryAfterSecondsT&& value) {
99 SetRetryAfterSeconds(std::forward<RetryAfterSecondsT>(value));
100 return *this;
101 }
103 private:
104 Aws::String m_message;
105
106 Aws::String m_serviceCode;
107
108 Aws::String m_quotaCode;
109
110 Aws::String m_retryAfterSeconds;
111 bool m_messageHasBeenSet = false;
112 bool m_serviceCodeHasBeenSet = false;
113 bool m_quotaCodeHasBeenSet = false;
114 bool m_retryAfterSecondsHasBeenSet = false;
115};
116
117} // namespace Model
118} // namespace mgn
119} // namespace Aws
void SetServiceCode(ServiceCodeT &&value)
ThrottlingException & WithQuotaCode(QuotaCodeT &&value)
AWS_MGN_API ThrottlingException()=default
void SetRetryAfterSeconds(RetryAfterSecondsT &&value)
ThrottlingException & WithRetryAfterSeconds(RetryAfterSecondsT &&value)
const Aws::String & GetQuotaCode() const
AWS_MGN_API Aws::Utils::Json::JsonValue Jsonize() const
const Aws::String & GetMessage() const
const Aws::String & GetServiceCode() const
ThrottlingException & WithMessage(MessageT &&value)
const Aws::String & GetRetryAfterSeconds() const
ThrottlingException & WithServiceCode(ServiceCodeT &&value)
AWS_MGN_API ThrottlingException & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_MGN_API ThrottlingException(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue