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

Determines the font settings.

See Also:

AWS API * Reference

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

Determines the font family settings.

*/ inline const Aws::String& GetFontFamily() const{ return m_fontFamily; } /** *

Determines the font family settings.

*/ inline bool FontFamilyHasBeenSet() const { return m_fontFamilyHasBeenSet; } /** *

Determines the font family settings.

*/ inline void SetFontFamily(const Aws::String& value) { m_fontFamilyHasBeenSet = true; m_fontFamily = value; } /** *

Determines the font family settings.

*/ inline void SetFontFamily(Aws::String&& value) { m_fontFamilyHasBeenSet = true; m_fontFamily = std::move(value); } /** *

Determines the font family settings.

*/ inline void SetFontFamily(const char* value) { m_fontFamilyHasBeenSet = true; m_fontFamily.assign(value); } /** *

Determines the font family settings.

*/ inline Font& WithFontFamily(const Aws::String& value) { SetFontFamily(value); return *this;} /** *

Determines the font family settings.

*/ inline Font& WithFontFamily(Aws::String&& value) { SetFontFamily(std::move(value)); return *this;} /** *

Determines the font family settings.

*/ inline Font& WithFontFamily(const char* value) { SetFontFamily(value); return *this;} private: Aws::String m_fontFamily; bool m_fontFamilyHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws