/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace QuickSight { namespace Model { /** *

The custom icon content for the table link content * configuration.

See Also:

AWS * API Reference

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

The icon set type (link) of the custom icon content for table URL link * content.

*/ inline const TableFieldIconSetType& GetIcon() const{ return m_icon; } /** *

The icon set type (link) of the custom icon content for table URL link * content.

*/ inline bool IconHasBeenSet() const { return m_iconHasBeenSet; } /** *

The icon set type (link) of the custom icon content for table URL link * content.

*/ inline void SetIcon(const TableFieldIconSetType& value) { m_iconHasBeenSet = true; m_icon = value; } /** *

The icon set type (link) of the custom icon content for table URL link * content.

*/ inline void SetIcon(TableFieldIconSetType&& value) { m_iconHasBeenSet = true; m_icon = std::move(value); } /** *

The icon set type (link) of the custom icon content for table URL link * content.

*/ inline TableFieldCustomIconContent& WithIcon(const TableFieldIconSetType& value) { SetIcon(value); return *this;} /** *

The icon set type (link) of the custom icon content for table URL link * content.

*/ inline TableFieldCustomIconContent& WithIcon(TableFieldIconSetType&& value) { SetIcon(std::move(value)); return *this;} private: TableFieldIconSetType m_icon; bool m_iconHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws