/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Metadata for a column that is used as the input of a transform
* operation.See Also:
AWS
* API Reference
The name of this column in the underlying data source.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The name of this column in the underlying data source.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of this column in the underlying data source.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of this column in the underlying data source.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of this column in the underlying data source.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The name of this column in the underlying data source.
*/ inline InputColumn& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of this column in the underlying data source.
*/ inline InputColumn& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of this column in the underlying data source.
*/ inline InputColumn& WithName(const char* value) { SetName(value); return *this;} /** *The data type of the column.
*/ inline const InputColumnDataType& GetType() const{ return m_type; } /** *The data type of the column.
*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *The data type of the column.
*/ inline void SetType(const InputColumnDataType& value) { m_typeHasBeenSet = true; m_type = value; } /** *The data type of the column.
*/ inline void SetType(InputColumnDataType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *The data type of the column.
*/ inline InputColumn& WithType(const InputColumnDataType& value) { SetType(value); return *this;} /** *The data type of the column.
*/ inline InputColumn& WithType(InputColumnDataType&& value) { SetType(std::move(value)); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet = false; InputColumnDataType m_type; bool m_typeHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws