This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-codepipeline/include/aws/codepipeline/model/GetJobDetailsResult.h

84 lines
2.5 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/codepipeline/CodePipeline_EXPORTS.h>
#include <aws/codepipeline/model/JobDetails.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace CodePipeline
{
namespace Model
{
/**
* <p>Represents the output of a <code>GetJobDetails</code> action.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GetJobDetailsOutput">AWS
* API Reference</a></p>
*/
class AWS_CODEPIPELINE_API GetJobDetailsResult
{
public:
GetJobDetailsResult();
GetJobDetailsResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
GetJobDetailsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The details of the job.</p> <p>If AWSSessionCredentials is used, a
* long-running job can call <code>GetJobDetails</code> again to obtain new
* credentials.</p>
*/
inline const JobDetails& GetJobDetails() const{ return m_jobDetails; }
/**
* <p>The details of the job.</p> <p>If AWSSessionCredentials is used, a
* long-running job can call <code>GetJobDetails</code> again to obtain new
* credentials.</p>
*/
inline void SetJobDetails(const JobDetails& value) { m_jobDetails = value; }
/**
* <p>The details of the job.</p> <p>If AWSSessionCredentials is used, a
* long-running job can call <code>GetJobDetails</code> again to obtain new
* credentials.</p>
*/
inline void SetJobDetails(JobDetails&& value) { m_jobDetails = std::move(value); }
/**
* <p>The details of the job.</p> <p>If AWSSessionCredentials is used, a
* long-running job can call <code>GetJobDetails</code> again to obtain new
* credentials.</p>
*/
inline GetJobDetailsResult& WithJobDetails(const JobDetails& value) { SetJobDetails(value); return *this;}
/**
* <p>The details of the job.</p> <p>If AWSSessionCredentials is used, a
* long-running job can call <code>GetJobDetails</code> again to obtain new
* credentials.</p>
*/
inline GetJobDetailsResult& WithJobDetails(JobDetails&& value) { SetJobDetails(std::move(value)); return *this;}
private:
JobDetails m_jobDetails;
};
} // namespace Model
} // namespace CodePipeline
} // namespace Aws