/** * 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 configuration for a table field.

See Also:

AWS * API Reference

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

The link configuration of a table field URL.

*/ inline const TableFieldLinkConfiguration& GetLinkConfiguration() const{ return m_linkConfiguration; } /** *

The link configuration of a table field URL.

*/ inline bool LinkConfigurationHasBeenSet() const { return m_linkConfigurationHasBeenSet; } /** *

The link configuration of a table field URL.

*/ inline void SetLinkConfiguration(const TableFieldLinkConfiguration& value) { m_linkConfigurationHasBeenSet = true; m_linkConfiguration = value; } /** *

The link configuration of a table field URL.

*/ inline void SetLinkConfiguration(TableFieldLinkConfiguration&& value) { m_linkConfigurationHasBeenSet = true; m_linkConfiguration = std::move(value); } /** *

The link configuration of a table field URL.

*/ inline TableFieldURLConfiguration& WithLinkConfiguration(const TableFieldLinkConfiguration& value) { SetLinkConfiguration(value); return *this;} /** *

The link configuration of a table field URL.

*/ inline TableFieldURLConfiguration& WithLinkConfiguration(TableFieldLinkConfiguration&& value) { SetLinkConfiguration(std::move(value)); return *this;} /** *

The image configuration of a table field URL.

*/ inline const TableFieldImageConfiguration& GetImageConfiguration() const{ return m_imageConfiguration; } /** *

The image configuration of a table field URL.

*/ inline bool ImageConfigurationHasBeenSet() const { return m_imageConfigurationHasBeenSet; } /** *

The image configuration of a table field URL.

*/ inline void SetImageConfiguration(const TableFieldImageConfiguration& value) { m_imageConfigurationHasBeenSet = true; m_imageConfiguration = value; } /** *

The image configuration of a table field URL.

*/ inline void SetImageConfiguration(TableFieldImageConfiguration&& value) { m_imageConfigurationHasBeenSet = true; m_imageConfiguration = std::move(value); } /** *

The image configuration of a table field URL.

*/ inline TableFieldURLConfiguration& WithImageConfiguration(const TableFieldImageConfiguration& value) { SetImageConfiguration(value); return *this;} /** *

The image configuration of a table field URL.

*/ inline TableFieldURLConfiguration& WithImageConfiguration(TableFieldImageConfiguration&& value) { SetImageConfiguration(std::move(value)); return *this;} private: TableFieldLinkConfiguration m_linkConfiguration; bool m_linkConfigurationHasBeenSet = false; TableFieldImageConfiguration m_imageConfiguration; bool m_imageConfigurationHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws