/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SageMaker { namespace Model { /** *

Describes the location of the channel data.

See Also:

AWS * API Reference

*/ class TransformDataSource { public: AWS_SAGEMAKER_API TransformDataSource(); AWS_SAGEMAKER_API TransformDataSource(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKER_API TransformDataSource& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The S3 location of the data source that is associated with a channel.

*/ inline const TransformS3DataSource& GetS3DataSource() const{ return m_s3DataSource; } /** *

The S3 location of the data source that is associated with a channel.

*/ inline bool S3DataSourceHasBeenSet() const { return m_s3DataSourceHasBeenSet; } /** *

The S3 location of the data source that is associated with a channel.

*/ inline void SetS3DataSource(const TransformS3DataSource& value) { m_s3DataSourceHasBeenSet = true; m_s3DataSource = value; } /** *

The S3 location of the data source that is associated with a channel.

*/ inline void SetS3DataSource(TransformS3DataSource&& value) { m_s3DataSourceHasBeenSet = true; m_s3DataSource = std::move(value); } /** *

The S3 location of the data source that is associated with a channel.

*/ inline TransformDataSource& WithS3DataSource(const TransformS3DataSource& value) { SetS3DataSource(value); return *this;} /** *

The S3 location of the data source that is associated with a channel.

*/ inline TransformDataSource& WithS3DataSource(TransformS3DataSource&& value) { SetS3DataSource(std::move(value)); return *this;} private: TransformS3DataSource m_s3DataSource; bool m_s3DataSourceHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws