/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The display options of a control.See Also:
AWS
* API Reference
The options to configure the title visibility, name, and font size.
*/ inline const LabelOptions& GetTitleOptions() const{ return m_titleOptions; } /** *The options to configure the title visibility, name, and font size.
*/ inline bool TitleOptionsHasBeenSet() const { return m_titleOptionsHasBeenSet; } /** *The options to configure the title visibility, name, and font size.
*/ inline void SetTitleOptions(const LabelOptions& value) { m_titleOptionsHasBeenSet = true; m_titleOptions = value; } /** *The options to configure the title visibility, name, and font size.
*/ inline void SetTitleOptions(LabelOptions&& value) { m_titleOptionsHasBeenSet = true; m_titleOptions = std::move(value); } /** *The options to configure the title visibility, name, and font size.
*/ inline SliderControlDisplayOptions& WithTitleOptions(const LabelOptions& value) { SetTitleOptions(value); return *this;} /** *The options to configure the title visibility, name, and font size.
*/ inline SliderControlDisplayOptions& WithTitleOptions(LabelOptions&& value) { SetTitleOptions(std::move(value)); return *this;} /** *The configuration of info icon label options.
*/ inline const SheetControlInfoIconLabelOptions& GetInfoIconLabelOptions() const{ return m_infoIconLabelOptions; } /** *The configuration of info icon label options.
*/ inline bool InfoIconLabelOptionsHasBeenSet() const { return m_infoIconLabelOptionsHasBeenSet; } /** *The configuration of info icon label options.
*/ inline void SetInfoIconLabelOptions(const SheetControlInfoIconLabelOptions& value) { m_infoIconLabelOptionsHasBeenSet = true; m_infoIconLabelOptions = value; } /** *The configuration of info icon label options.
*/ inline void SetInfoIconLabelOptions(SheetControlInfoIconLabelOptions&& value) { m_infoIconLabelOptionsHasBeenSet = true; m_infoIconLabelOptions = std::move(value); } /** *The configuration of info icon label options.
*/ inline SliderControlDisplayOptions& WithInfoIconLabelOptions(const SheetControlInfoIconLabelOptions& value) { SetInfoIconLabelOptions(value); return *this;} /** *The configuration of info icon label options.
*/ inline SliderControlDisplayOptions& WithInfoIconLabelOptions(SheetControlInfoIconLabelOptions&& value) { SetInfoIconLabelOptions(std::move(value)); return *this;} private: LabelOptions m_titleOptions; bool m_titleOptionsHasBeenSet = false; SheetControlInfoIconLabelOptions m_infoIconLabelOptions; bool m_infoIconLabelOptionsHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws