/** * 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 URL content (text, icon) for the table link configuration.

See * Also:

AWS * API Reference

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

The custom text content (value, font configuration) for the table link * content configuration.

*/ inline const TableFieldCustomTextContent& GetCustomTextContent() const{ return m_customTextContent; } /** *

The custom text content (value, font configuration) for the table link * content configuration.

*/ inline bool CustomTextContentHasBeenSet() const { return m_customTextContentHasBeenSet; } /** *

The custom text content (value, font configuration) for the table link * content configuration.

*/ inline void SetCustomTextContent(const TableFieldCustomTextContent& value) { m_customTextContentHasBeenSet = true; m_customTextContent = value; } /** *

The custom text content (value, font configuration) for the table link * content configuration.

*/ inline void SetCustomTextContent(TableFieldCustomTextContent&& value) { m_customTextContentHasBeenSet = true; m_customTextContent = std::move(value); } /** *

The custom text content (value, font configuration) for the table link * content configuration.

*/ inline TableFieldLinkContentConfiguration& WithCustomTextContent(const TableFieldCustomTextContent& value) { SetCustomTextContent(value); return *this;} /** *

The custom text content (value, font configuration) for the table link * content configuration.

*/ inline TableFieldLinkContentConfiguration& WithCustomTextContent(TableFieldCustomTextContent&& value) { SetCustomTextContent(std::move(value)); return *this;} /** *

The custom icon content for the table link content configuration.

*/ inline const TableFieldCustomIconContent& GetCustomIconContent() const{ return m_customIconContent; } /** *

The custom icon content for the table link content configuration.

*/ inline bool CustomIconContentHasBeenSet() const { return m_customIconContentHasBeenSet; } /** *

The custom icon content for the table link content configuration.

*/ inline void SetCustomIconContent(const TableFieldCustomIconContent& value) { m_customIconContentHasBeenSet = true; m_customIconContent = value; } /** *

The custom icon content for the table link content configuration.

*/ inline void SetCustomIconContent(TableFieldCustomIconContent&& value) { m_customIconContentHasBeenSet = true; m_customIconContent = std::move(value); } /** *

The custom icon content for the table link content configuration.

*/ inline TableFieldLinkContentConfiguration& WithCustomIconContent(const TableFieldCustomIconContent& value) { SetCustomIconContent(value); return *this;} /** *

The custom icon content for the table link content configuration.

*/ inline TableFieldLinkContentConfiguration& WithCustomIconContent(TableFieldCustomIconContent&& value) { SetCustomIconContent(std::move(value)); return *this;} private: TableFieldCustomTextContent m_customTextContent; bool m_customTextContentHasBeenSet = false; TableFieldCustomIconContent m_customIconContent; bool m_customIconContentHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws