AWS SDK for C++

AWS SDK for C++ Version 1.11.748

Loading...
Searching...
No Matches
ThrottlingException.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/security-ir/SecurityIR_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace SecurityIR {
20namespace Model {
21
28 public:
29 AWS_SECURITYIR_API ThrottlingException() = default;
30 AWS_SECURITYIR_API ThrottlingException(Aws::Utils::Json::JsonView jsonValue);
32 AWS_SECURITYIR_API Aws::Utils::Json::JsonValue Jsonize() const;
33
35
38 inline const Aws::String& GetMessage() const { return m_message; }
39 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
40 template <typename MessageT = Aws::String>
41 void SetMessage(MessageT&& value) {
42 m_messageHasBeenSet = true;
43 m_message = std::forward<MessageT>(value);
44 }
45 template <typename MessageT = Aws::String>
46 ThrottlingException& WithMessage(MessageT&& value) {
47 SetMessage(std::forward<MessageT>(value));
48 return *this;
49 }
51
53
56 inline const Aws::String& GetServiceCode() const { return m_serviceCode; }
57 inline bool ServiceCodeHasBeenSet() const { return m_serviceCodeHasBeenSet; }
58 template <typename ServiceCodeT = Aws::String>
59 void SetServiceCode(ServiceCodeT&& value) {
60 m_serviceCodeHasBeenSet = true;
61 m_serviceCode = std::forward<ServiceCodeT>(value);
62 }
63 template <typename ServiceCodeT = Aws::String>
64 ThrottlingException& WithServiceCode(ServiceCodeT&& value) {
65 SetServiceCode(std::forward<ServiceCodeT>(value));
66 return *this;
67 }
69
71
74 inline const Aws::String& GetQuotaCode() const { return m_quotaCode; }
75 inline bool QuotaCodeHasBeenSet() const { return m_quotaCodeHasBeenSet; }
76 template <typename QuotaCodeT = Aws::String>
77 void SetQuotaCode(QuotaCodeT&& value) {
78 m_quotaCodeHasBeenSet = true;
79 m_quotaCode = std::forward<QuotaCodeT>(value);
80 }
81 template <typename QuotaCodeT = Aws::String>
82 ThrottlingException& WithQuotaCode(QuotaCodeT&& value) {
83 SetQuotaCode(std::forward<QuotaCodeT>(value));
84 return *this;
85 }
87
89
92 inline int GetRetryAfterSeconds() const { return m_retryAfterSeconds; }
93 inline bool RetryAfterSecondsHasBeenSet() const { return m_retryAfterSecondsHasBeenSet; }
94 inline void SetRetryAfterSeconds(int value) {
95 m_retryAfterSecondsHasBeenSet = true;
96 m_retryAfterSeconds = value;
97 }
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 int m_retryAfterSeconds{0};
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 SecurityIR
119} // namespace Aws
ThrottlingException & WithMessage(MessageT &&value)
ThrottlingException & WithServiceCode(ServiceCodeT &&value)
ThrottlingException & WithQuotaCode(QuotaCodeT &&value)
AWS_SECURITYIR_API ThrottlingException & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_SECURITYIR_API Aws::Utils::Json::JsonValue Jsonize() const
ThrottlingException & WithRetryAfterSeconds(int value)
AWS_SECURITYIR_API ThrottlingException()=default
AWS_SECURITYIR_API ThrottlingException(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue