/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the output of an AcknowledgeThirdPartyJob action.See
* Also:
AWS
* API Reference
The status information for the third party job, if any.
*/ inline const JobStatus& GetStatus() const{ return m_status; } /** *The status information for the third party job, if any.
*/ inline void SetStatus(const JobStatus& value) { m_status = value; } /** *The status information for the third party job, if any.
*/ inline void SetStatus(JobStatus&& value) { m_status = std::move(value); } /** *The status information for the third party job, if any.
*/ inline AcknowledgeThirdPartyJobResult& WithStatus(const JobStatus& value) { SetStatus(value); return *this;} /** *The status information for the third party job, if any.
*/ inline AcknowledgeThirdPartyJobResult& WithStatus(JobStatus&& value) { SetStatus(std::move(value)); return *this;} private: JobStatus m_status; }; } // namespace Model } // namespace CodePipeline } // namespace Aws