98 lines
3.1 KiB
C++
98 lines
3.1 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/glue/Glue_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 Glue
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Specifies configuration properties for a labeling set generation task
|
|
* run.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/LabelingSetGenerationTaskRunProperties">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_GLUE_API LabelingSetGenerationTaskRunProperties
|
|
{
|
|
public:
|
|
LabelingSetGenerationTaskRunProperties();
|
|
LabelingSetGenerationTaskRunProperties(Aws::Utils::Json::JsonView jsonValue);
|
|
LabelingSetGenerationTaskRunProperties& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>The Amazon Simple Storage Service (Amazon S3) path where you will generate
|
|
* the labeling set.</p>
|
|
*/
|
|
inline const Aws::String& GetOutputS3Path() const{ return m_outputS3Path; }
|
|
|
|
/**
|
|
* <p>The Amazon Simple Storage Service (Amazon S3) path where you will generate
|
|
* the labeling set.</p>
|
|
*/
|
|
inline bool OutputS3PathHasBeenSet() const { return m_outputS3PathHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The Amazon Simple Storage Service (Amazon S3) path where you will generate
|
|
* the labeling set.</p>
|
|
*/
|
|
inline void SetOutputS3Path(const Aws::String& value) { m_outputS3PathHasBeenSet = true; m_outputS3Path = value; }
|
|
|
|
/**
|
|
* <p>The Amazon Simple Storage Service (Amazon S3) path where you will generate
|
|
* the labeling set.</p>
|
|
*/
|
|
inline void SetOutputS3Path(Aws::String&& value) { m_outputS3PathHasBeenSet = true; m_outputS3Path = std::move(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Simple Storage Service (Amazon S3) path where you will generate
|
|
* the labeling set.</p>
|
|
*/
|
|
inline void SetOutputS3Path(const char* value) { m_outputS3PathHasBeenSet = true; m_outputS3Path.assign(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Simple Storage Service (Amazon S3) path where you will generate
|
|
* the labeling set.</p>
|
|
*/
|
|
inline LabelingSetGenerationTaskRunProperties& WithOutputS3Path(const Aws::String& value) { SetOutputS3Path(value); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Simple Storage Service (Amazon S3) path where you will generate
|
|
* the labeling set.</p>
|
|
*/
|
|
inline LabelingSetGenerationTaskRunProperties& WithOutputS3Path(Aws::String&& value) { SetOutputS3Path(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Simple Storage Service (Amazon S3) path where you will generate
|
|
* the labeling set.</p>
|
|
*/
|
|
inline LabelingSetGenerationTaskRunProperties& WithOutputS3Path(const char* value) { SetOutputS3Path(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_outputS3Path;
|
|
bool m_outputS3PathHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Glue
|
|
} // namespace Aws
|