/** * 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 an exporting labels task * run.

See Also:

AWS * API Reference

*/ class ExportLabelsTaskRunProperties { public: AWS_GLUE_API ExportLabelsTaskRunProperties(); AWS_GLUE_API ExportLabelsTaskRunProperties(Aws::Utils::Json::JsonView jsonValue); AWS_GLUE_API ExportLabelsTaskRunProperties& 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 export the * labels.

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

The Amazon Simple Storage Service (Amazon S3) path where you will export the * labels.

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

The Amazon Simple Storage Service (Amazon S3) path where you will export the * labels.

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

The Amazon Simple Storage Service (Amazon S3) path where you will export the * labels.

*/ 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 export the * labels.

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

The Amazon Simple Storage Service (Amazon S3) path where you will export the * labels.

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

The Amazon Simple Storage Service (Amazon S3) path where you will export the * labels.

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

The Amazon Simple Storage Service (Amazon S3) path where you will export the * labels.

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