/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object that contains the properties for importing data to a specific
* column in a table.See Also:
AWS
* API Reference
The index of the column in the input file.
*/ inline int GetColumnIndex() const{ return m_columnIndex; } /** *The index of the column in the input file.
*/ inline bool ColumnIndexHasBeenSet() const { return m_columnIndexHasBeenSet; } /** *The index of the column in the input file.
*/ inline void SetColumnIndex(int value) { m_columnIndexHasBeenSet = true; m_columnIndex = value; } /** *The index of the column in the input file.
*/ inline SourceDataColumnProperties& WithColumnIndex(int value) { SetColumnIndex(value); return *this;} private: int m_columnIndex; bool m_columnIndexHasBeenSet = false; }; } // namespace Model } // namespace Honeycode } // namespace Aws