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