/**
* 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;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline AcknowledgeJobResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline AcknowledgeJobResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline AcknowledgeJobResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: JobStatus m_status; Aws::String m_requestId; }; } // namespace Model } // namespace CodePipeline } // namespace Aws