AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
ThrottlingException.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/ssm/SSM_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace SSM {
20namespace Model {
21
29 public:
30 AWS_SSM_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
56 inline const Aws::String& GetQuotaCode() const { return m_quotaCode; }
57 inline bool QuotaCodeHasBeenSet() const { return m_quotaCodeHasBeenSet; }
58 template <typename QuotaCodeT = Aws::String>
59 void SetQuotaCode(QuotaCodeT&& value) {
60 m_quotaCodeHasBeenSet = true;
61 m_quotaCode = std::forward<QuotaCodeT>(value);
62 }
63 template <typename QuotaCodeT = Aws::String>
64 ThrottlingException& WithQuotaCode(QuotaCodeT&& value) {
65 SetQuotaCode(std::forward<QuotaCodeT>(value));
66 return *this;
67 }
69
71
74 inline const Aws::String& GetServiceCode() const { return m_serviceCode; }
75 inline bool ServiceCodeHasBeenSet() const { return m_serviceCodeHasBeenSet; }
76 template <typename ServiceCodeT = Aws::String>
77 void SetServiceCode(ServiceCodeT&& value) {
78 m_serviceCodeHasBeenSet = true;
79 m_serviceCode = std::forward<ServiceCodeT>(value);
80 }
81 template <typename ServiceCodeT = Aws::String>
82 ThrottlingException& WithServiceCode(ServiceCodeT&& value) {
83 SetServiceCode(std::forward<ServiceCodeT>(value));
84 return *this;
85 }
87 private:
88 Aws::String m_message;
89
90 Aws::String m_quotaCode;
91
92 Aws::String m_serviceCode;
93 bool m_messageHasBeenSet = false;
94 bool m_quotaCodeHasBeenSet = false;
95 bool m_serviceCodeHasBeenSet = false;
96};
97
98} // namespace Model
99} // namespace SSM
100} // namespace Aws
AWS_SSM_API ThrottlingException & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetServiceCode(ServiceCodeT &&value)
ThrottlingException & WithServiceCode(ServiceCodeT &&value)
ThrottlingException & WithMessage(MessageT &&value)
AWS_SSM_API ThrottlingException()=default
AWS_SSM_API ThrottlingException(Aws::Utils::Json::JsonView jsonValue)
AWS_SSM_API Aws::Utils::Json::JsonValue Jsonize() const
ThrottlingException & WithQuotaCode(QuotaCodeT &&value)
const Aws::String & GetMessage() const
const Aws::String & GetServiceCode() const
const Aws::String & GetQuotaCode() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue