/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies configuration properties for an exporting labels task
* run.See Also:
AWS
* API Reference
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