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

Determines the typography options.

See Also:

AWS * API Reference

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

Determines the list of font families.

*/ inline const Aws::Vector& GetFontFamilies() const{ return m_fontFamilies; } /** *

Determines the list of font families.

*/ inline bool FontFamiliesHasBeenSet() const { return m_fontFamiliesHasBeenSet; } /** *

Determines the list of font families.

*/ inline void SetFontFamilies(const Aws::Vector& value) { m_fontFamiliesHasBeenSet = true; m_fontFamilies = value; } /** *

Determines the list of font families.

*/ inline void SetFontFamilies(Aws::Vector&& value) { m_fontFamiliesHasBeenSet = true; m_fontFamilies = std::move(value); } /** *

Determines the list of font families.

*/ inline Typography& WithFontFamilies(const Aws::Vector& value) { SetFontFamilies(value); return *this;} /** *

Determines the list of font families.

*/ inline Typography& WithFontFamilies(Aws::Vector&& value) { SetFontFamilies(std::move(value)); return *this;} /** *

Determines the list of font families.

*/ inline Typography& AddFontFamilies(const Font& value) { m_fontFamiliesHasBeenSet = true; m_fontFamilies.push_back(value); return *this; } /** *

Determines the list of font families.

*/ inline Typography& AddFontFamilies(Font&& value) { m_fontFamiliesHasBeenSet = true; m_fontFamilies.push_back(std::move(value)); return *this; } private: Aws::Vector m_fontFamilies; bool m_fontFamiliesHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws