/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace QuickSight { namespace Model { /** *

Metadata that contains a description for a column.

See Also:

* AWS * API Reference

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

The text of a description for a column.

*/ inline const Aws::String& GetText() const{ return m_text; } /** *

The text of a description for a column.

*/ inline bool TextHasBeenSet() const { return m_textHasBeenSet; } /** *

The text of a description for a column.

*/ inline void SetText(const Aws::String& value) { m_textHasBeenSet = true; m_text = value; } /** *

The text of a description for a column.

*/ inline void SetText(Aws::String&& value) { m_textHasBeenSet = true; m_text = std::move(value); } /** *

The text of a description for a column.

*/ inline void SetText(const char* value) { m_textHasBeenSet = true; m_text.assign(value); } /** *

The text of a description for a column.

*/ inline ColumnDescription& WithText(const Aws::String& value) { SetText(value); return *this;} /** *

The text of a description for a column.

*/ inline ColumnDescription& WithText(Aws::String&& value) { SetText(std::move(value)); return *this;} /** *

The text of a description for a column.

*/ inline ColumnDescription& WithText(const char* value) { SetText(value); return *this;} private: Aws::String m_text; bool m_textHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws