/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the output of an AcknowledgeJob action.See Also:
* AWS
* API Reference
Whether the job worker has received the specified job.
*/ inline const JobStatus& GetStatus() const{ return m_status; } /** *Whether the job worker has received the specified job.
*/ inline void SetStatus(const JobStatus& value) { m_status = value; } /** *Whether the job worker has received the specified job.
*/ inline void SetStatus(JobStatus&& value) { m_status = std::move(value); } /** *Whether the job worker has received the specified job.
*/ inline AcknowledgeJobResult& WithStatus(const JobStatus& value) { SetStatus(value); return *this;} /** *Whether the job worker has received the specified job.
*/ inline AcknowledgeJobResult& WithStatus(JobStatus&& value) { SetStatus(std::move(value)); return *this;} private: JobStatus m_status; }; } // namespace Model } // namespace CodePipeline } // namespace Aws