AWS SDK for C++

AWS SDK for C++ Version 1.11.741

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