AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ThrottledClientException.h
1
6#pragma once
7#include <aws/chime/Chime_EXPORTS.h>
8#include <aws/chime/model/ErrorCode.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace Chime
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_CHIME_API ThrottledClientException();
38 AWS_CHIME_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
43 inline const ErrorCode& GetCode() const{ return m_code; }
44 inline bool CodeHasBeenSet() const { return m_codeHasBeenSet; }
45 inline void SetCode(const ErrorCode& value) { m_codeHasBeenSet = true; m_code = value; }
46 inline void SetCode(ErrorCode&& value) { m_codeHasBeenSet = true; m_code = std::move(value); }
47 inline ThrottledClientException& WithCode(const ErrorCode& value) { SetCode(value); return *this;}
48 inline ThrottledClientException& WithCode(ErrorCode&& value) { SetCode(std::move(value)); return *this;}
50
52
53 inline const Aws::String& GetMessage() const{ return m_message; }
54 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
55 inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; }
56 inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); }
57 inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); }
58 inline ThrottledClientException& WithMessage(const Aws::String& value) { SetMessage(value); return *this;}
59 inline ThrottledClientException& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;}
60 inline ThrottledClientException& WithMessage(const char* value) { SetMessage(value); return *this;}
62 private:
63
64 ErrorCode m_code;
65 bool m_codeHasBeenSet = false;
66
67 Aws::String m_message;
68 bool m_messageHasBeenSet = false;
69 };
70
71} // namespace Model
72} // namespace Chime
73} // namespace Aws
AWS_CHIME_API ThrottledClientException(Aws::Utils::Json::JsonView jsonValue)
ThrottledClientException & WithMessage(const char *value)
AWS_CHIME_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_CHIME_API ThrottledClientException & operator=(Aws::Utils::Json::JsonView jsonValue)
ThrottledClientException & WithCode(ErrorCode &&value)
ThrottledClientException & WithCode(const ErrorCode &value)
ThrottledClientException & WithMessage(Aws::String &&value)
ThrottledClientException & WithMessage(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue