/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Metadata that contains a description for a column.See Also:
* AWS
* API Reference
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