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-codeguru-reviewer/include/aws/codeguru-reviewer/model/DescribeCodeReviewResult.h

68 lines
1.7 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/codeguru-reviewer/CodeGuruReviewer_EXPORTS.h>
#include <aws/codeguru-reviewer/model/CodeReview.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace CodeGuruReviewer
{
namespace Model
{
class AWS_CODEGURUREVIEWER_API DescribeCodeReviewResult
{
public:
DescribeCodeReviewResult();
DescribeCodeReviewResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
DescribeCodeReviewResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p> Information about the code review. </p>
*/
inline const CodeReview& GetCodeReview() const{ return m_codeReview; }
/**
* <p> Information about the code review. </p>
*/
inline void SetCodeReview(const CodeReview& value) { m_codeReview = value; }
/**
* <p> Information about the code review. </p>
*/
inline void SetCodeReview(CodeReview&& value) { m_codeReview = std::move(value); }
/**
* <p> Information about the code review. </p>
*/
inline DescribeCodeReviewResult& WithCodeReview(const CodeReview& value) { SetCodeReview(value); return *this;}
/**
* <p> Information about the code review. </p>
*/
inline DescribeCodeReviewResult& WithCodeReview(CodeReview&& value) { SetCodeReview(std::move(value)); return *this;}
private:
CodeReview m_codeReview;
};
} // namespace Model
} // namespace CodeGuruReviewer
} // namespace Aws