/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The custom icon content for the table link content
* configuration.See Also:
AWS
* API Reference
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