AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
UpdateParam.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/eks/EKS_EXPORTS.h>
9#include <aws/eks/model/UpdateParamType.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace EKS {
21namespace Model {
22
30 public:
31 AWS_EKS_API UpdateParam() = default;
35
37
40 inline UpdateParamType GetType() const { return m_type; }
41 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
42 inline void SetType(UpdateParamType value) {
43 m_typeHasBeenSet = true;
44 m_type = value;
45 }
47 SetType(value);
48 return *this;
49 }
51
53
56 inline const Aws::String& GetValue() const { return m_value; }
57 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
58 template <typename ValueT = Aws::String>
59 void SetValue(ValueT&& value) {
60 m_valueHasBeenSet = true;
61 m_value = std::forward<ValueT>(value);
62 }
63 template <typename ValueT = Aws::String>
64 UpdateParam& WithValue(ValueT&& value) {
65 SetValue(std::forward<ValueT>(value));
66 return *this;
67 }
69 private:
71
72 Aws::String m_value;
73 bool m_typeHasBeenSet = false;
74 bool m_valueHasBeenSet = false;
75};
76
77} // namespace Model
78} // namespace EKS
79} // namespace Aws
AWS_EKS_API UpdateParam & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_EKS_API UpdateParam(Aws::Utils::Json::JsonView jsonValue)
UpdateParam & WithType(UpdateParamType value)
Definition UpdateParam.h:46
UpdateParamType GetType() const
Definition UpdateParam.h:40
const Aws::String & GetValue() const
Definition UpdateParam.h:56
void SetType(UpdateParamType value)
Definition UpdateParam.h:42
void SetValue(ValueT &&value)
Definition UpdateParam.h:59
AWS_EKS_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_EKS_API UpdateParam()=default
UpdateParam & WithValue(ValueT &&value)
Definition UpdateParam.h:64
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue