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

A key-value pair.

See Also:

AWS * API Reference

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

The unique identifier of a key-value pair.

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

The unique identifier of a key-value pair.

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

The unique identifier of a key-value pair.

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

The unique identifier of a key-value pair.

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

The unique identifier of a key-value pair.

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

The unique identifier of a key-value pair.

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

The unique identifier of a key-value pair.

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

The unique identifier of a key-value pair.

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

The value part of the identified key.

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

The value part of the identified key.

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

The value part of the identified key.

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

The value part of the identified key.

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

The value part of the identified key.

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

The value part of the identified key.

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

The value part of the identified key.

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

The value part of the identified key.

*/ inline KeyValue& WithValue(const char* value) { SetValue(value); return *this;} private: Aws::String m_key; bool m_keyHasBeenSet = false; Aws::String m_value; bool m_valueHasBeenSet = false; }; } // namespace Model } // namespace EMR } // namespace Aws