/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object that has details about the source of the data that was submitted
* for import.See Also:
AWS
* API Reference
The configuration parameters for the data source of the import
*/ inline const ImportDataSourceConfig& GetDataSourceConfig() const{ return m_dataSourceConfig; } /** *The configuration parameters for the data source of the import
*/ inline bool DataSourceConfigHasBeenSet() const { return m_dataSourceConfigHasBeenSet; } /** *The configuration parameters for the data source of the import
*/ inline void SetDataSourceConfig(const ImportDataSourceConfig& value) { m_dataSourceConfigHasBeenSet = true; m_dataSourceConfig = value; } /** *The configuration parameters for the data source of the import
*/ inline void SetDataSourceConfig(ImportDataSourceConfig&& value) { m_dataSourceConfigHasBeenSet = true; m_dataSourceConfig = std::move(value); } /** *The configuration parameters for the data source of the import
*/ inline ImportDataSource& WithDataSourceConfig(const ImportDataSourceConfig& value) { SetDataSourceConfig(value); return *this;} /** *The configuration parameters for the data source of the import
*/ inline ImportDataSource& WithDataSourceConfig(ImportDataSourceConfig&& value) { SetDataSourceConfig(std::move(value)); return *this;} private: ImportDataSourceConfig m_dataSourceConfig; bool m_dataSourceConfigHasBeenSet = false; }; } // namespace Model } // namespace Honeycode } // namespace Aws