/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The data source for the Autopilot job.See Also:
AWS
* API Reference
The Amazon S3 location of the input data.
*/ inline const AutoMLS3DataSource& GetS3DataSource() const{ return m_s3DataSource; } /** *The Amazon S3 location of the input data.
*/ inline bool S3DataSourceHasBeenSet() const { return m_s3DataSourceHasBeenSet; } /** *The Amazon S3 location of the input data.
*/ inline void SetS3DataSource(const AutoMLS3DataSource& value) { m_s3DataSourceHasBeenSet = true; m_s3DataSource = value; } /** *The Amazon S3 location of the input data.
*/ inline void SetS3DataSource(AutoMLS3DataSource&& value) { m_s3DataSourceHasBeenSet = true; m_s3DataSource = std::move(value); } /** *The Amazon S3 location of the input data.
*/ inline AutoMLDataSource& WithS3DataSource(const AutoMLS3DataSource& value) { SetS3DataSource(value); return *this;} /** *The Amazon S3 location of the input data.
*/ inline AutoMLDataSource& WithS3DataSource(AutoMLS3DataSource&& value) { SetS3DataSource(std::move(value)); return *this;} private: AutoMLS3DataSource m_s3DataSource; bool m_s3DataSourceHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws