98 lines
2.9 KiB
C++
98 lines
2.9 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/sagemaker/SageMaker_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace SageMaker
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>The Amazon S3 location of the input data objects.</p><p><h3>See Also:</h3>
|
|
* <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/LabelingJobS3DataSource">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_SAGEMAKER_API LabelingJobS3DataSource
|
|
{
|
|
public:
|
|
LabelingJobS3DataSource();
|
|
LabelingJobS3DataSource(Aws::Utils::Json::JsonView jsonValue);
|
|
LabelingJobS3DataSource& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>The Amazon S3 location of the manifest file that describes the input data
|
|
* objects.</p>
|
|
*/
|
|
inline const Aws::String& GetManifestS3Uri() const{ return m_manifestS3Uri; }
|
|
|
|
/**
|
|
* <p>The Amazon S3 location of the manifest file that describes the input data
|
|
* objects.</p>
|
|
*/
|
|
inline bool ManifestS3UriHasBeenSet() const { return m_manifestS3UriHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The Amazon S3 location of the manifest file that describes the input data
|
|
* objects.</p>
|
|
*/
|
|
inline void SetManifestS3Uri(const Aws::String& value) { m_manifestS3UriHasBeenSet = true; m_manifestS3Uri = value; }
|
|
|
|
/**
|
|
* <p>The Amazon S3 location of the manifest file that describes the input data
|
|
* objects.</p>
|
|
*/
|
|
inline void SetManifestS3Uri(Aws::String&& value) { m_manifestS3UriHasBeenSet = true; m_manifestS3Uri = std::move(value); }
|
|
|
|
/**
|
|
* <p>The Amazon S3 location of the manifest file that describes the input data
|
|
* objects.</p>
|
|
*/
|
|
inline void SetManifestS3Uri(const char* value) { m_manifestS3UriHasBeenSet = true; m_manifestS3Uri.assign(value); }
|
|
|
|
/**
|
|
* <p>The Amazon S3 location of the manifest file that describes the input data
|
|
* objects.</p>
|
|
*/
|
|
inline LabelingJobS3DataSource& WithManifestS3Uri(const Aws::String& value) { SetManifestS3Uri(value); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon S3 location of the manifest file that describes the input data
|
|
* objects.</p>
|
|
*/
|
|
inline LabelingJobS3DataSource& WithManifestS3Uri(Aws::String&& value) { SetManifestS3Uri(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon S3 location of the manifest file that describes the input data
|
|
* objects.</p>
|
|
*/
|
|
inline LabelingJobS3DataSource& WithManifestS3Uri(const char* value) { SetManifestS3Uri(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_manifestS3Uri;
|
|
bool m_manifestS3UriHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace SageMaker
|
|
} // namespace Aws
|