/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The options that determine the title styles for each small multiples
* panel.See Also:
AWS
* API Reference
Determines whether or not panel titles are displayed.
*/ inline const Visibility& GetVisibility() const{ return m_visibility; } /** *Determines whether or not panel titles are displayed.
*/ inline bool VisibilityHasBeenSet() const { return m_visibilityHasBeenSet; } /** *Determines whether or not panel titles are displayed.
*/ inline void SetVisibility(const Visibility& value) { m_visibilityHasBeenSet = true; m_visibility = value; } /** *Determines whether or not panel titles are displayed.
*/ inline void SetVisibility(Visibility&& value) { m_visibilityHasBeenSet = true; m_visibility = std::move(value); } /** *Determines whether or not panel titles are displayed.
*/ inline PanelTitleOptions& WithVisibility(const Visibility& value) { SetVisibility(value); return *this;} /** *Determines whether or not panel titles are displayed.
*/ inline PanelTitleOptions& WithVisibility(Visibility&& value) { SetVisibility(std::move(value)); return *this;} inline const FontConfiguration& GetFontConfiguration() const{ return m_fontConfiguration; } inline bool FontConfigurationHasBeenSet() const { return m_fontConfigurationHasBeenSet; } inline void SetFontConfiguration(const FontConfiguration& value) { m_fontConfigurationHasBeenSet = true; m_fontConfiguration = value; } inline void SetFontConfiguration(FontConfiguration&& value) { m_fontConfigurationHasBeenSet = true; m_fontConfiguration = std::move(value); } inline PanelTitleOptions& WithFontConfiguration(const FontConfiguration& value) { SetFontConfiguration(value); return *this;} inline PanelTitleOptions& WithFontConfiguration(FontConfiguration&& value) { SetFontConfiguration(std::move(value)); return *this;} /** *Sets the horizontal text alignment of the title within each panel.
*/ inline const HorizontalTextAlignment& GetHorizontalTextAlignment() const{ return m_horizontalTextAlignment; } /** *Sets the horizontal text alignment of the title within each panel.
*/ inline bool HorizontalTextAlignmentHasBeenSet() const { return m_horizontalTextAlignmentHasBeenSet; } /** *Sets the horizontal text alignment of the title within each panel.
*/ inline void SetHorizontalTextAlignment(const HorizontalTextAlignment& value) { m_horizontalTextAlignmentHasBeenSet = true; m_horizontalTextAlignment = value; } /** *Sets the horizontal text alignment of the title within each panel.
*/ inline void SetHorizontalTextAlignment(HorizontalTextAlignment&& value) { m_horizontalTextAlignmentHasBeenSet = true; m_horizontalTextAlignment = std::move(value); } /** *Sets the horizontal text alignment of the title within each panel.
*/ inline PanelTitleOptions& WithHorizontalTextAlignment(const HorizontalTextAlignment& value) { SetHorizontalTextAlignment(value); return *this;} /** *Sets the horizontal text alignment of the title within each panel.
*/ inline PanelTitleOptions& WithHorizontalTextAlignment(HorizontalTextAlignment&& value) { SetHorizontalTextAlignment(std::move(value)); return *this;} private: Visibility m_visibility; bool m_visibilityHasBeenSet = false; FontConfiguration m_fontConfiguration; bool m_fontConfigurationHasBeenSet = false; HorizontalTextAlignment m_horizontalTextAlignment; bool m_horizontalTextAlignmentHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws