AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
InvalidStateException.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/eks/EKS_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace EKS {
20namespace Model {
21
34 public:
35 AWS_EKS_API InvalidStateException() = default;
39
41
44 inline const Aws::String& GetClusterName() const { return m_clusterName; }
45 inline bool ClusterNameHasBeenSet() const { return m_clusterNameHasBeenSet; }
46 template <typename ClusterNameT = Aws::String>
47 void SetClusterName(ClusterNameT&& value) {
48 m_clusterNameHasBeenSet = true;
49 m_clusterName = std::forward<ClusterNameT>(value);
50 }
51 template <typename ClusterNameT = Aws::String>
52 InvalidStateException& WithClusterName(ClusterNameT&& value) {
53 SetClusterName(std::forward<ClusterNameT>(value));
54 return *this;
55 }
57
59
60 inline const Aws::String& GetMessage() const { return m_message; }
61 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
62 template <typename MessageT = Aws::String>
63 void SetMessage(MessageT&& value) {
64 m_messageHasBeenSet = true;
65 m_message = std::forward<MessageT>(value);
66 }
67 template <typename MessageT = Aws::String>
69 SetMessage(std::forward<MessageT>(value));
70 return *this;
71 }
73 private:
74 Aws::String m_clusterName;
75
76 Aws::String m_message;
77 bool m_clusterNameHasBeenSet = false;
78 bool m_messageHasBeenSet = false;
79};
80
81} // namespace Model
82} // namespace EKS
83} // namespace Aws
AWS_EKS_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_EKS_API InvalidStateException(Aws::Utils::Json::JsonView jsonValue)
AWS_EKS_API InvalidStateException()=default
InvalidStateException & WithMessage(MessageT &&value)
AWS_EKS_API InvalidStateException & operator=(Aws::Utils::Json::JsonView jsonValue)
InvalidStateException & WithClusterName(ClusterNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue