/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #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 TextAreaControlDisplayOptions { public: AWS_QUICKSIGHT_API TextAreaControlDisplayOptions(); AWS_QUICKSIGHT_API TextAreaControlDisplayOptions(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API TextAreaControlDisplayOptions& 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 TextAreaControlDisplayOptions& WithTitleOptions(const LabelOptions& value) { SetTitleOptions(value); return *this;} /** *

The options to configure the title visibility, name, and font size.

*/ inline TextAreaControlDisplayOptions& WithTitleOptions(LabelOptions&& value) { SetTitleOptions(std::move(value)); return *this;} /** *

The configuration of the placeholder options in a text area control.

*/ inline const TextControlPlaceholderOptions& GetPlaceholderOptions() const{ return m_placeholderOptions; } /** *

The configuration of the placeholder options in a text area control.

*/ inline bool PlaceholderOptionsHasBeenSet() const { return m_placeholderOptionsHasBeenSet; } /** *

The configuration of the placeholder options in a text area control.

*/ inline void SetPlaceholderOptions(const TextControlPlaceholderOptions& value) { m_placeholderOptionsHasBeenSet = true; m_placeholderOptions = value; } /** *

The configuration of the placeholder options in a text area control.

*/ inline void SetPlaceholderOptions(TextControlPlaceholderOptions&& value) { m_placeholderOptionsHasBeenSet = true; m_placeholderOptions = std::move(value); } /** *

The configuration of the placeholder options in a text area control.

*/ inline TextAreaControlDisplayOptions& WithPlaceholderOptions(const TextControlPlaceholderOptions& value) { SetPlaceholderOptions(value); return *this;} /** *

The configuration of the placeholder options in a text area control.

*/ inline TextAreaControlDisplayOptions& WithPlaceholderOptions(TextControlPlaceholderOptions&& value) { SetPlaceholderOptions(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 TextAreaControlDisplayOptions& WithInfoIconLabelOptions(const SheetControlInfoIconLabelOptions& value) { SetInfoIconLabelOptions(value); return *this;} /** *

The configuration of info icon label options.

*/ inline TextAreaControlDisplayOptions& WithInfoIconLabelOptions(SheetControlInfoIconLabelOptions&& value) { SetInfoIconLabelOptions(std::move(value)); return *this;} private: LabelOptions m_titleOptions; bool m_titleOptionsHasBeenSet = false; TextControlPlaceholderOptions m_placeholderOptions; bool m_placeholderOptionsHasBeenSet = false; SheetControlInfoIconLabelOptions m_infoIconLabelOptions; bool m_infoIconLabelOptionsHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws