/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The Amazon S3 location of the input data objects.See Also:
* AWS
* API Reference
The Amazon S3 location of the manifest file that describes the input data * objects.
*/ inline const Aws::String& GetManifestS3Uri() const{ return m_manifestS3Uri; } /** *The Amazon S3 location of the manifest file that describes the input data * objects.
*/ inline bool ManifestS3UriHasBeenSet() const { return m_manifestS3UriHasBeenSet; } /** *The Amazon S3 location of the manifest file that describes the input data * objects.
*/ inline void SetManifestS3Uri(const Aws::String& value) { m_manifestS3UriHasBeenSet = true; m_manifestS3Uri = value; } /** *The Amazon S3 location of the manifest file that describes the input data * objects.
*/ inline void SetManifestS3Uri(Aws::String&& value) { m_manifestS3UriHasBeenSet = true; m_manifestS3Uri = std::move(value); } /** *The Amazon S3 location of the manifest file that describes the input data * objects.
*/ inline void SetManifestS3Uri(const char* value) { m_manifestS3UriHasBeenSet = true; m_manifestS3Uri.assign(value); } /** *The Amazon S3 location of the manifest file that describes the input data * objects.
*/ inline LabelingJobS3DataSource& WithManifestS3Uri(const Aws::String& value) { SetManifestS3Uri(value); return *this;} /** *The Amazon S3 location of the manifest file that describes the input data * objects.
*/ inline LabelingJobS3DataSource& WithManifestS3Uri(Aws::String&& value) { SetManifestS3Uri(std::move(value)); return *this;} /** *The Amazon S3 location of the manifest file that describes the input data * objects.
*/ inline LabelingJobS3DataSource& WithManifestS3Uri(const char* value) { SetManifestS3Uri(value); return *this;} private: Aws::String m_manifestS3Uri; bool m_manifestS3UriHasBeenSet; }; } // namespace Model } // namespace SageMaker } // namespace Aws