/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace EKS { namespace Model { /** *

A property that allows a node to repel a set of pods. For more information, * see Node * taints on managed node groups.

See Also:

AWS API * Reference

*/ class Taint { public: AWS_EKS_API Taint(); AWS_EKS_API Taint(Aws::Utils::Json::JsonView jsonValue); AWS_EKS_API Taint& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_EKS_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The key of the taint.

*/ inline const Aws::String& GetKey() const{ return m_key; } /** *

The key of the taint.

*/ inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; } /** *

The key of the taint.

*/ inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; } /** *

The key of the taint.

*/ inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); } /** *

The key of the taint.

*/ inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); } /** *

The key of the taint.

*/ inline Taint& WithKey(const Aws::String& value) { SetKey(value); return *this;} /** *

The key of the taint.

*/ inline Taint& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;} /** *

The key of the taint.

*/ inline Taint& WithKey(const char* value) { SetKey(value); return *this;} /** *

The value of the taint.

*/ inline const Aws::String& GetValue() const{ return m_value; } /** *

The value of the taint.

*/ inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; } /** *

The value of the taint.

*/ inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; } /** *

The value of the taint.

*/ inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); } /** *

The value of the taint.

*/ inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); } /** *

The value of the taint.

*/ inline Taint& WithValue(const Aws::String& value) { SetValue(value); return *this;} /** *

The value of the taint.

*/ inline Taint& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;} /** *

The value of the taint.

*/ inline Taint& WithValue(const char* value) { SetValue(value); return *this;} /** *

The effect of the taint.

*/ inline const TaintEffect& GetEffect() const{ return m_effect; } /** *

The effect of the taint.

*/ inline bool EffectHasBeenSet() const { return m_effectHasBeenSet; } /** *

The effect of the taint.

*/ inline void SetEffect(const TaintEffect& value) { m_effectHasBeenSet = true; m_effect = value; } /** *

The effect of the taint.

*/ inline void SetEffect(TaintEffect&& value) { m_effectHasBeenSet = true; m_effect = std::move(value); } /** *

The effect of the taint.

*/ inline Taint& WithEffect(const TaintEffect& value) { SetEffect(value); return *this;} /** *

The effect of the taint.

*/ inline Taint& WithEffect(TaintEffect&& value) { SetEffect(std::move(value)); return *this;} private: Aws::String m_key; bool m_keyHasBeenSet = false; Aws::String m_value; bool m_valueHasBeenSet = false; TaintEffect m_effect; bool m_effectHasBeenSet = false; }; } // namespace Model } // namespace EKS } // namespace Aws