/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Determines the typography options.See Also:
AWS
* API Reference
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