AWS SDK for C++

AWS SDK for C++ Version 1.11.716

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