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/inspector-scan/Inspectorscan_EXPORTS.h>
9#include <aws/inspector-scan/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 inspectorscan {
21namespace Model {
22
30 public:
31 AWS_INSPECTORSCAN_API InternalServerException() = default;
32 AWS_INSPECTORSCAN_API InternalServerException(Aws::Utils::Json::JsonView jsonValue);
34 AWS_INSPECTORSCAN_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
38 inline const Aws::String& GetMessage() const { return m_message; }
39 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
40 template <typename MessageT = Aws::String>
41 void SetMessage(MessageT&& value) {
42 m_messageHasBeenSet = true;
43 m_message = std::forward<MessageT>(value);
44 }
45 template <typename MessageT = Aws::String>
47 SetMessage(std::forward<MessageT>(value));
48 return *this;
49 }
51
53
56 inline InternalServerExceptionReason GetReason() const { return m_reason; }
57 inline bool ReasonHasBeenSet() const { return m_reasonHasBeenSet; }
59 m_reasonHasBeenSet = true;
60 m_reason = value;
61 }
63 SetReason(value);
64 return *this;
65 }
67
69
72 inline int GetRetryAfterSeconds() const { return m_retryAfterSeconds; }
73 inline bool RetryAfterSecondsHasBeenSet() const { return m_retryAfterSecondsHasBeenSet; }
74 inline void SetRetryAfterSeconds(int value) {
75 m_retryAfterSecondsHasBeenSet = true;
76 m_retryAfterSeconds = value;
77 }
80 return *this;
81 }
83 private:
84 Aws::String m_message;
85
87
88 int m_retryAfterSeconds{0};
89 bool m_messageHasBeenSet = false;
90 bool m_reasonHasBeenSet = false;
91 bool m_retryAfterSecondsHasBeenSet = false;
92};
93
94} // namespace Model
95} // namespace inspectorscan
96} // namespace Aws
void SetReason(InternalServerExceptionReason value)
InternalServerException & WithReason(InternalServerExceptionReason value)
InternalServerException & WithRetryAfterSeconds(int value)
AWS_INSPECTORSCAN_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_INSPECTORSCAN_API InternalServerException & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_INSPECTORSCAN_API InternalServerException(Aws::Utils::Json::JsonView jsonValue)
InternalServerException & WithMessage(MessageT &&value)
AWS_INSPECTORSCAN_API InternalServerException()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue