/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the results of a processing job.See Also:
AWS
* API Reference
The name for the processing job output.
*/ inline const Aws::String& GetOutputName() const{ return m_outputName; } /** *The name for the processing job output.
*/ inline bool OutputNameHasBeenSet() const { return m_outputNameHasBeenSet; } /** *The name for the processing job output.
*/ inline void SetOutputName(const Aws::String& value) { m_outputNameHasBeenSet = true; m_outputName = value; } /** *The name for the processing job output.
*/ inline void SetOutputName(Aws::String&& value) { m_outputNameHasBeenSet = true; m_outputName = std::move(value); } /** *The name for the processing job output.
*/ inline void SetOutputName(const char* value) { m_outputNameHasBeenSet = true; m_outputName.assign(value); } /** *The name for the processing job output.
*/ inline ProcessingOutput& WithOutputName(const Aws::String& value) { SetOutputName(value); return *this;} /** *The name for the processing job output.
*/ inline ProcessingOutput& WithOutputName(Aws::String&& value) { SetOutputName(std::move(value)); return *this;} /** *The name for the processing job output.
*/ inline ProcessingOutput& WithOutputName(const char* value) { SetOutputName(value); return *this;} /** *Configuration for processing job outputs in Amazon S3.
*/ inline const ProcessingS3Output& GetS3Output() const{ return m_s3Output; } /** *Configuration for processing job outputs in Amazon S3.
*/ inline bool S3OutputHasBeenSet() const { return m_s3OutputHasBeenSet; } /** *Configuration for processing job outputs in Amazon S3.
*/ inline void SetS3Output(const ProcessingS3Output& value) { m_s3OutputHasBeenSet = true; m_s3Output = value; } /** *Configuration for processing job outputs in Amazon S3.
*/ inline void SetS3Output(ProcessingS3Output&& value) { m_s3OutputHasBeenSet = true; m_s3Output = std::move(value); } /** *Configuration for processing job outputs in Amazon S3.
*/ inline ProcessingOutput& WithS3Output(const ProcessingS3Output& value) { SetS3Output(value); return *this;} /** *Configuration for processing job outputs in Amazon S3.
*/ inline ProcessingOutput& WithS3Output(ProcessingS3Output&& value) { SetS3Output(std::move(value)); return *this;} private: Aws::String m_outputName; bool m_outputNameHasBeenSet; ProcessingS3Output m_s3Output; bool m_s3OutputHasBeenSet; }; } // namespace Model } // namespace SageMaker } // namespace Aws