/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies the location of ML model data to deploy. If specified, you must
* specify one and only one of the available data sources.See Also:
* AWS
* API Reference
Specifies the S3 location of ML model data to deploy.
*/ inline const S3ModelDataSource& GetS3DataSource() const{ return m_s3DataSource; } /** *Specifies the S3 location of ML model data to deploy.
*/ inline bool S3DataSourceHasBeenSet() const { return m_s3DataSourceHasBeenSet; } /** *Specifies the S3 location of ML model data to deploy.
*/ inline void SetS3DataSource(const S3ModelDataSource& value) { m_s3DataSourceHasBeenSet = true; m_s3DataSource = value; } /** *Specifies the S3 location of ML model data to deploy.
*/ inline void SetS3DataSource(S3ModelDataSource&& value) { m_s3DataSourceHasBeenSet = true; m_s3DataSource = std::move(value); } /** *Specifies the S3 location of ML model data to deploy.
*/ inline ModelDataSource& WithS3DataSource(const S3ModelDataSource& value) { SetS3DataSource(value); return *this;} /** *Specifies the S3 location of ML model data to deploy.
*/ inline ModelDataSource& WithS3DataSource(S3ModelDataSource&& value) { SetS3DataSource(std::move(value)); return *this;} private: S3ModelDataSource m_s3DataSource; bool m_s3DataSourceHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws