/**
* 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;} private: ThirdPartyJobDetails m_jobDetails; }; } // namespace Model } // namespace CodePipeline } // namespace Aws