/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace CodePipeline { namespace Model { /** *

Represents the output of a GetThirdPartyJobDetails * action.

See Also:

AWS * API Reference

*/ class AWS_CODEPIPELINE_API GetThirdPartyJobDetailsResult { public: GetThirdPartyJobDetailsResult(); GetThirdPartyJobDetailsResult(const Aws::AmazonWebServiceResult& result); GetThirdPartyJobDetailsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

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