AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
InternalServerException.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/nova-act/NovaAct_EXPORTS.h>
9#include <aws/nova-act/model/InternalServerExceptionReason.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace NovaAct {
21namespace Model {
22
30 public:
31 AWS_NOVAACT_API InternalServerException() = default;
34 AWS_NOVAACT_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
40 inline const Aws::String& GetMessage() const { return m_message; }
41 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
42 template <typename MessageT = Aws::String>
43 void SetMessage(MessageT&& value) {
44 m_messageHasBeenSet = true;
45 m_message = std::forward<MessageT>(value);
46 }
47 template <typename MessageT = Aws::String>
49 SetMessage(std::forward<MessageT>(value));
50 return *this;
51 }
53
55
58 inline int GetRetryAfterSeconds() const { return m_retryAfterSeconds; }
59 inline bool RetryAfterSecondsHasBeenSet() const { return m_retryAfterSecondsHasBeenSet; }
60 inline void SetRetryAfterSeconds(int value) {
61 m_retryAfterSecondsHasBeenSet = true;
62 m_retryAfterSeconds = value;
63 }
66 return *this;
67 }
69
71
74 inline InternalServerExceptionReason GetReason() const { return m_reason; }
75 inline bool ReasonHasBeenSet() const { return m_reasonHasBeenSet; }
77 m_reasonHasBeenSet = true;
78 m_reason = value;
79 }
81 SetReason(value);
82 return *this;
83 }
85 private:
86 Aws::String m_message;
87
88 int m_retryAfterSeconds{0};
89
91 bool m_messageHasBeenSet = false;
92 bool m_retryAfterSecondsHasBeenSet = false;
93 bool m_reasonHasBeenSet = false;
94};
95
96} // namespace Model
97} // namespace NovaAct
98} // namespace Aws
InternalServerException & WithReason(InternalServerExceptionReason value)
InternalServerException & WithMessage(MessageT &&value)
void SetReason(InternalServerExceptionReason value)
InternalServerException & WithRetryAfterSeconds(int value)
AWS_NOVAACT_API InternalServerException & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_NOVAACT_API InternalServerException(Aws::Utils::Json::JsonView jsonValue)
AWS_NOVAACT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_NOVAACT_API InternalServerException()=default
InternalServerExceptionReason GetReason() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue