/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents a request to create an import job from a data source for a data
* destination.See Also:
AWS
* API Reference
The destination for the import job.
*/ inline const ImportDestination& GetImportDestination() const{ return m_importDestination; } /** *The destination for the import job.
*/ inline bool ImportDestinationHasBeenSet() const { return m_importDestinationHasBeenSet; } /** *The destination for the import job.
*/ inline void SetImportDestination(const ImportDestination& value) { m_importDestinationHasBeenSet = true; m_importDestination = value; } /** *The destination for the import job.
*/ inline void SetImportDestination(ImportDestination&& value) { m_importDestinationHasBeenSet = true; m_importDestination = std::move(value); } /** *The destination for the import job.
*/ inline CreateImportJobRequest& WithImportDestination(const ImportDestination& value) { SetImportDestination(value); return *this;} /** *The destination for the import job.
*/ inline CreateImportJobRequest& WithImportDestination(ImportDestination&& value) { SetImportDestination(std::move(value)); return *this;} /** *The data source for the import job.
*/ inline const ImportDataSource& GetImportDataSource() const{ return m_importDataSource; } /** *The data source for the import job.
*/ inline bool ImportDataSourceHasBeenSet() const { return m_importDataSourceHasBeenSet; } /** *The data source for the import job.
*/ inline void SetImportDataSource(const ImportDataSource& value) { m_importDataSourceHasBeenSet = true; m_importDataSource = value; } /** *The data source for the import job.
*/ inline void SetImportDataSource(ImportDataSource&& value) { m_importDataSourceHasBeenSet = true; m_importDataSource = std::move(value); } /** *The data source for the import job.
*/ inline CreateImportJobRequest& WithImportDataSource(const ImportDataSource& value) { SetImportDataSource(value); return *this;} /** *The data source for the import job.
*/ inline CreateImportJobRequest& WithImportDataSource(ImportDataSource&& value) { SetImportDataSource(std::move(value)); return *this;} private: ImportDestination m_importDestination; bool m_importDestinationHasBeenSet = false; ImportDataSource m_importDataSource; bool m_importDataSourceHasBeenSet = false; }; } // namespace Model } // namespace SESV2 } // namespace Aws