/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Identifies one or more data sets you want to import with the
* CreateDataSetImportTask operation.See Also:
AWS
* API Reference
The data sets.
*/ inline const Aws::VectorThe data sets.
*/ inline bool DataSetsHasBeenSet() const { return m_dataSetsHasBeenSet; } /** *The data sets.
*/ inline void SetDataSets(const Aws::VectorThe data sets.
*/ inline void SetDataSets(Aws::VectorThe data sets.
*/ inline DataSetImportConfig& WithDataSets(const Aws::VectorThe data sets.
*/ inline DataSetImportConfig& WithDataSets(Aws::VectorThe data sets.
*/ inline DataSetImportConfig& AddDataSets(const DataSetImportItem& value) { m_dataSetsHasBeenSet = true; m_dataSets.push_back(value); return *this; } /** *The data sets.
*/ inline DataSetImportConfig& AddDataSets(DataSetImportItem&& value) { m_dataSetsHasBeenSet = true; m_dataSets.push_back(std::move(value)); return *this; } /** *The Amazon S3 location of the data sets.
*/ inline const Aws::String& GetS3Location() const{ return m_s3Location; } /** *The Amazon S3 location of the data sets.
*/ inline bool S3LocationHasBeenSet() const { return m_s3LocationHasBeenSet; } /** *The Amazon S3 location of the data sets.
*/ inline void SetS3Location(const Aws::String& value) { m_s3LocationHasBeenSet = true; m_s3Location = value; } /** *The Amazon S3 location of the data sets.
*/ inline void SetS3Location(Aws::String&& value) { m_s3LocationHasBeenSet = true; m_s3Location = std::move(value); } /** *The Amazon S3 location of the data sets.
*/ inline void SetS3Location(const char* value) { m_s3LocationHasBeenSet = true; m_s3Location.assign(value); } /** *The Amazon S3 location of the data sets.
*/ inline DataSetImportConfig& WithS3Location(const Aws::String& value) { SetS3Location(value); return *this;} /** *The Amazon S3 location of the data sets.
*/ inline DataSetImportConfig& WithS3Location(Aws::String&& value) { SetS3Location(std::move(value)); return *this;} /** *The Amazon S3 location of the data sets.
*/ inline DataSetImportConfig& WithS3Location(const char* value) { SetS3Location(value); return *this;} private: Aws::Vector