AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
ThrottlingException.h
1
6#pragma once
7#include <aws/lexv2-models/LexModelsV2_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace LexModelsV2
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_LEXMODELSV2_API ThrottlingException() = default;
36 AWS_LEXMODELSV2_API ThrottlingException(Aws::Utils::Json::JsonView jsonValue);
38 AWS_LEXMODELSV2_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline int GetRetryAfterSeconds() const { return m_retryAfterSeconds; }
46 inline bool RetryAfterSecondsHasBeenSet() const { return m_retryAfterSecondsHasBeenSet; }
47 inline void SetRetryAfterSeconds(int value) { m_retryAfterSecondsHasBeenSet = true; m_retryAfterSeconds = value; }
48 inline ThrottlingException& WithRetryAfterSeconds(int value) { SetRetryAfterSeconds(value); return *this;}
50
52
53 inline const Aws::String& GetMessage() const { return m_message; }
54 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
55 template<typename MessageT = Aws::String>
56 void SetMessage(MessageT&& value) { m_messageHasBeenSet = true; m_message = std::forward<MessageT>(value); }
57 template<typename MessageT = Aws::String>
58 ThrottlingException& WithMessage(MessageT&& value) { SetMessage(std::forward<MessageT>(value)); return *this;}
60 private:
61
62 int m_retryAfterSeconds{0};
63 bool m_retryAfterSecondsHasBeenSet = false;
64
65 Aws::String m_message;
66 bool m_messageHasBeenSet = false;
67 };
68
69} // namespace Model
70} // namespace LexModelsV2
71} // namespace Aws
AWS_LEXMODELSV2_API ThrottlingException & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_LEXMODELSV2_API ThrottlingException()=default
ThrottlingException & WithRetryAfterSeconds(int value)
ThrottlingException & WithMessage(MessageT &&value)
AWS_LEXMODELSV2_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_LEXMODELSV2_API ThrottlingException(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue