AWS SDK for C++

AWS SDK for C++ Version 1.11.743

Loading...
Searching...
No Matches
InvalidInputException.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/inspector/Inspector_EXPORTS.h>
9#include <aws/inspector/model/InvalidInputErrorCode.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace Inspector {
21namespace Model {
22
30 public:
31 AWS_INSPECTOR_API InvalidInputException() = default;
34 AWS_INSPECTOR_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 InvalidInputErrorCode GetErrorCode() const { return m_errorCode; }
59 inline bool ErrorCodeHasBeenSet() const { return m_errorCodeHasBeenSet; }
61 m_errorCodeHasBeenSet = true;
62 m_errorCode = value;
63 }
65 SetErrorCode(value);
66 return *this;
67 }
69
71
74 inline bool GetCanRetry() const { return m_canRetry; }
75 inline bool CanRetryHasBeenSet() const { return m_canRetryHasBeenSet; }
76 inline void SetCanRetry(bool value) {
77 m_canRetryHasBeenSet = true;
78 m_canRetry = value;
79 }
80 inline InvalidInputException& WithCanRetry(bool value) {
81 SetCanRetry(value);
82 return *this;
83 }
85 private:
86 Aws::String m_message;
87
89
90 bool m_canRetry{false};
91 bool m_messageHasBeenSet = false;
92 bool m_errorCodeHasBeenSet = false;
93 bool m_canRetryHasBeenSet = false;
94};
95
96} // namespace Model
97} // namespace Inspector
98} // namespace Aws
AWS_INSPECTOR_API InvalidInputException & operator=(Aws::Utils::Json::JsonView jsonValue)
InvalidInputException & WithMessage(MessageT &&value)
AWS_INSPECTOR_API InvalidInputException()=default
InvalidInputException & WithCanRetry(bool value)
InvalidInputException & WithErrorCode(InvalidInputErrorCode value)
AWS_INSPECTOR_API InvalidInputException(Aws::Utils::Json::JsonView jsonValue)
AWS_INSPECTOR_API Aws::Utils::Json::JsonValue Jsonize() const
void SetErrorCode(InvalidInputErrorCode value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue