/** * 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 AmplifyUIBuilder { namespace Model { class ThemeValue; /** *

A key-value pair that defines a property of a theme.

See Also:

* AWS * API Reference

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

The name of the property.

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

The name of the property.

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

The name of the property.

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

The name of the property.

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

The name of the property.

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

The name of the property.

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

The name of the property.

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

The name of the property.

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

The value of the property.

*/ AWS_AMPLIFYUIBUILDER_API const ThemeValue& GetValue() const; /** *

The value of the property.

*/ AWS_AMPLIFYUIBUILDER_API bool ValueHasBeenSet() const; /** *

The value of the property.

*/ AWS_AMPLIFYUIBUILDER_API void SetValue(const ThemeValue& value); /** *

The value of the property.

*/ AWS_AMPLIFYUIBUILDER_API void SetValue(ThemeValue&& value); /** *

The value of the property.

*/ AWS_AMPLIFYUIBUILDER_API ThemeValues& WithValue(const ThemeValue& value); /** *

The value of the property.

*/ AWS_AMPLIFYUIBUILDER_API ThemeValues& WithValue(ThemeValue&& value); private: Aws::String m_key; bool m_keyHasBeenSet = false; std::shared_ptr m_value; bool m_valueHasBeenSet = false; }; } // namespace Model } // namespace AmplifyUIBuilder } // namespace Aws