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