/** * 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 { /** *

The display options of a control.

See Also:

AWS * API Reference

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

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