/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the output of a GetThirdPartyJobDetails
* action.See Also:
AWS
* API Reference
The details of the job, including any protected values defined for the * job.
*/ inline const ThirdPartyJobDetails& GetJobDetails() const{ return m_jobDetails; } /** *The details of the job, including any protected values defined for the * job.
*/ inline void SetJobDetails(const ThirdPartyJobDetails& value) { m_jobDetails = value; } /** *The details of the job, including any protected values defined for the * job.
*/ inline void SetJobDetails(ThirdPartyJobDetails&& value) { m_jobDetails = std::move(value); } /** *The details of the job, including any protected values defined for the * job.
*/ inline GetThirdPartyJobDetailsResult& WithJobDetails(const ThirdPartyJobDetails& value) { SetJobDetails(value); return *this;} /** *The details of the job, including any protected values defined for the * job.
*/ inline GetThirdPartyJobDetailsResult& WithJobDetails(ThirdPartyJobDetails&& value) { SetJobDetails(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 GetThirdPartyJobDetailsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetThirdPartyJobDetailsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetThirdPartyJobDetailsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: ThirdPartyJobDetails m_jobDetails; Aws::String m_requestId; }; } // namespace Model } // namespace CodePipeline } // namespace Aws