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

An object that contains the properties for importing data to a specific * column in a table.

See Also:

AWS * API Reference

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

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