/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object that represents the key value pairs for the JSON.See
* Also:
AWS
* API Reference
The specified key for the JSON.
*/ inline const Aws::String& GetKey() const{ return m_key; } /** *The specified key for the JSON.
*/ inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; } /** *The specified key for the JSON.
*/ inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; } /** *The specified key for the JSON.
*/ inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); } /** *The specified key for the JSON.
*/ inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); } /** *The specified key for the JSON.
*/ inline JsonFormatRef& WithKey(const Aws::String& value) { SetKey(value); return *this;} /** *The specified key for the JSON.
*/ inline JsonFormatRef& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;} /** *The specified key for the JSON.
*/ inline JsonFormatRef& WithKey(const char* value) { SetKey(value); return *this;} /** *The specified value for the JSON.
*/ inline const Aws::String& GetValue() const{ return m_value; } /** *The specified value for the JSON.
*/ inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; } /** *The specified value for the JSON.
*/ inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; } /** *The specified value for the JSON.
*/ inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); } /** *The specified value for the JSON.
*/ inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); } /** *The specified value for the JSON.
*/ inline JsonFormatRef& WithValue(const Aws::String& value) { SetValue(value); return *this;} /** *The specified value for the JSON.
*/ inline JsonFormatRef& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;} /** *The specified value for the JSON.
*/ inline JsonFormatRef& 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 AppMesh } // namespace Aws