/** * 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 { /** *

Provides information about the location of input data.

See * Also:

AWS * API Reference

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

The Amazon S3 location of the input data objects.

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

The Amazon S3 location of the input data objects.

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

The Amazon S3 location of the input data objects.

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

The Amazon S3 location of the input data objects.

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

The Amazon S3 location of the input data objects.

*/ inline LabelingJobDataSource& WithS3DataSource(const LabelingJobS3DataSource& value) { SetS3DataSource(value); return *this;} /** *

The Amazon S3 location of the input data objects.

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