/** * 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 Glue { namespace Model { /** *

Specifies configuration properties for a labeling set generation task * run.

See Also:

AWS * API Reference

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

The Amazon Simple Storage Service (Amazon S3) path where you will generate * the labeling set.

*/ inline const Aws::String& GetOutputS3Path() const{ return m_outputS3Path; } /** *

The Amazon Simple Storage Service (Amazon S3) path where you will generate * the labeling set.

*/ inline bool OutputS3PathHasBeenSet() const { return m_outputS3PathHasBeenSet; } /** *

The Amazon Simple Storage Service (Amazon S3) path where you will generate * the labeling set.

*/ inline void SetOutputS3Path(const Aws::String& value) { m_outputS3PathHasBeenSet = true; m_outputS3Path = value; } /** *

The Amazon Simple Storage Service (Amazon S3) path where you will generate * the labeling set.

*/ inline void SetOutputS3Path(Aws::String&& value) { m_outputS3PathHasBeenSet = true; m_outputS3Path = std::move(value); } /** *

The Amazon Simple Storage Service (Amazon S3) path where you will generate * the labeling set.

*/ inline void SetOutputS3Path(const char* value) { m_outputS3PathHasBeenSet = true; m_outputS3Path.assign(value); } /** *

The Amazon Simple Storage Service (Amazon S3) path where you will generate * the labeling set.

*/ inline LabelingSetGenerationTaskRunProperties& WithOutputS3Path(const Aws::String& value) { SetOutputS3Path(value); return *this;} /** *

The Amazon Simple Storage Service (Amazon S3) path where you will generate * the labeling set.

*/ inline LabelingSetGenerationTaskRunProperties& WithOutputS3Path(Aws::String&& value) { SetOutputS3Path(std::move(value)); return *this;} /** *

The Amazon Simple Storage Service (Amazon S3) path where you will generate * the labeling set.

*/ inline LabelingSetGenerationTaskRunProperties& WithOutputS3Path(const char* value) { SetOutputS3Path(value); return *this;} private: Aws::String m_outputS3Path; bool m_outputS3PathHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws