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

See Also:

AWS * API Reference

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

The string value of the custom text content for the table URL link * content.

*/ inline const Aws::String& GetValue() const{ return m_value; } /** *

The string value of the custom text content for the table URL link * content.

*/ inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; } /** *

The string value of the custom text content for the table URL link * content.

*/ inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; } /** *

The string value of the custom text content for the table URL link * content.

*/ inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); } /** *

The string value of the custom text content for the table URL link * content.

*/ inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); } /** *

The string value of the custom text content for the table URL link * content.

*/ inline TableFieldCustomTextContent& WithValue(const Aws::String& value) { SetValue(value); return *this;} /** *

The string value of the custom text content for the table URL link * content.

*/ inline TableFieldCustomTextContent& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;} /** *

The string value of the custom text content for the table URL link * content.

*/ inline TableFieldCustomTextContent& WithValue(const char* value) { SetValue(value); return *this;} /** *

The font configuration of the custom text content for the table URL link * content.

*/ inline const FontConfiguration& GetFontConfiguration() const{ return m_fontConfiguration; } /** *

The font configuration of the custom text content for the table URL link * content.

*/ inline bool FontConfigurationHasBeenSet() const { return m_fontConfigurationHasBeenSet; } /** *

The font configuration of the custom text content for the table URL link * content.

*/ inline void SetFontConfiguration(const FontConfiguration& value) { m_fontConfigurationHasBeenSet = true; m_fontConfiguration = value; } /** *

The font configuration of the custom text content for the table URL link * content.

*/ inline void SetFontConfiguration(FontConfiguration&& value) { m_fontConfigurationHasBeenSet = true; m_fontConfiguration = std::move(value); } /** *

The font configuration of the custom text content for the table URL link * content.

*/ inline TableFieldCustomTextContent& WithFontConfiguration(const FontConfiguration& value) { SetFontConfiguration(value); return *this;} /** *

The font configuration of the custom text content for the table URL link * content.

*/ inline TableFieldCustomTextContent& WithFontConfiguration(FontConfiguration&& value) { SetFontConfiguration(std::move(value)); return *this;} private: Aws::String m_value; bool m_valueHasBeenSet = false; FontConfiguration m_fontConfiguration; bool m_fontConfigurationHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws