/** * 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 IoT { namespace Model { /** *

A key-value pair that you define in the header. Both the key and the value * are either literal strings or valid substitution * templates.

See Also:

AWS * API Reference

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

A key to be specified in UserProperty.

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

A key to be specified in UserProperty.

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

A key to be specified in UserProperty.

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

A key to be specified in UserProperty.

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

A key to be specified in UserProperty.

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

A key to be specified in UserProperty.

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

A key to be specified in UserProperty.

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

A key to be specified in UserProperty.

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

A value to be specified in UserProperty.

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

A value to be specified in UserProperty.

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

A value to be specified in UserProperty.

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

A value to be specified in UserProperty.

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

A value to be specified in UserProperty.

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

A value to be specified in UserProperty.

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

A value to be specified in UserProperty.

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

A value to be specified in UserProperty.

*/ inline UserProperty& 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 IoT } // namespace Aws