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

A control to display info icons for filters and parameters.

See * Also:

AWS * API Reference

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

The visibility configuration of info icon label options.

*/ inline const Visibility& GetVisibility() const{ return m_visibility; } /** *

The visibility configuration of info icon label options.

*/ inline bool VisibilityHasBeenSet() const { return m_visibilityHasBeenSet; } /** *

The visibility configuration of info icon label options.

*/ inline void SetVisibility(const Visibility& value) { m_visibilityHasBeenSet = true; m_visibility = value; } /** *

The visibility configuration of info icon label options.

*/ inline void SetVisibility(Visibility&& value) { m_visibilityHasBeenSet = true; m_visibility = std::move(value); } /** *

The visibility configuration of info icon label options.

*/ inline SheetControlInfoIconLabelOptions& WithVisibility(const Visibility& value) { SetVisibility(value); return *this;} /** *

The visibility configuration of info icon label options.

*/ inline SheetControlInfoIconLabelOptions& WithVisibility(Visibility&& value) { SetVisibility(std::move(value)); return *this;} /** *

The text content of info icon.

*/ inline const Aws::String& GetInfoIconText() const{ return m_infoIconText; } /** *

The text content of info icon.

*/ inline bool InfoIconTextHasBeenSet() const { return m_infoIconTextHasBeenSet; } /** *

The text content of info icon.

*/ inline void SetInfoIconText(const Aws::String& value) { m_infoIconTextHasBeenSet = true; m_infoIconText = value; } /** *

The text content of info icon.

*/ inline void SetInfoIconText(Aws::String&& value) { m_infoIconTextHasBeenSet = true; m_infoIconText = std::move(value); } /** *

The text content of info icon.

*/ inline void SetInfoIconText(const char* value) { m_infoIconTextHasBeenSet = true; m_infoIconText.assign(value); } /** *

The text content of info icon.

*/ inline SheetControlInfoIconLabelOptions& WithInfoIconText(const Aws::String& value) { SetInfoIconText(value); return *this;} /** *

The text content of info icon.

*/ inline SheetControlInfoIconLabelOptions& WithInfoIconText(Aws::String&& value) { SetInfoIconText(std::move(value)); return *this;} /** *

The text content of info icon.

*/ inline SheetControlInfoIconLabelOptions& WithInfoIconText(const char* value) { SetInfoIconText(value); return *this;} private: Visibility m_visibility; bool m_visibilityHasBeenSet = false; Aws::String m_infoIconText; bool m_infoIconTextHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws