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/DescribeCodeReviewRequest.h

100 lines
3.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/CodeGuruReviewerRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace CodeGuruReviewer
{
namespace Model
{
/**
*/
class AWS_CODEGURUREVIEWER_API DescribeCodeReviewRequest : public CodeGuruReviewerRequest
{
public:
DescribeCodeReviewRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "DescribeCodeReview"; }
Aws::String SerializePayload() const override;
/**
* <p>The Amazon Resource Name (ARN) of the <a
* href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_CodeReview.html">
* <code>CodeReview</code> </a> object. </p>
*/
inline const Aws::String& GetCodeReviewArn() const{ return m_codeReviewArn; }
/**
* <p>The Amazon Resource Name (ARN) of the <a
* href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_CodeReview.html">
* <code>CodeReview</code> </a> object. </p>
*/
inline bool CodeReviewArnHasBeenSet() const { return m_codeReviewArnHasBeenSet; }
/**
* <p>The Amazon Resource Name (ARN) of the <a
* href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_CodeReview.html">
* <code>CodeReview</code> </a> object. </p>
*/
inline void SetCodeReviewArn(const Aws::String& value) { m_codeReviewArnHasBeenSet = true; m_codeReviewArn = value; }
/**
* <p>The Amazon Resource Name (ARN) of the <a
* href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_CodeReview.html">
* <code>CodeReview</code> </a> object. </p>
*/
inline void SetCodeReviewArn(Aws::String&& value) { m_codeReviewArnHasBeenSet = true; m_codeReviewArn = std::move(value); }
/**
* <p>The Amazon Resource Name (ARN) of the <a
* href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_CodeReview.html">
* <code>CodeReview</code> </a> object. </p>
*/
inline void SetCodeReviewArn(const char* value) { m_codeReviewArnHasBeenSet = true; m_codeReviewArn.assign(value); }
/**
* <p>The Amazon Resource Name (ARN) of the <a
* href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_CodeReview.html">
* <code>CodeReview</code> </a> object. </p>
*/
inline DescribeCodeReviewRequest& WithCodeReviewArn(const Aws::String& value) { SetCodeReviewArn(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the <a
* href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_CodeReview.html">
* <code>CodeReview</code> </a> object. </p>
*/
inline DescribeCodeReviewRequest& WithCodeReviewArn(Aws::String&& value) { SetCodeReviewArn(std::move(value)); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the <a
* href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_CodeReview.html">
* <code>CodeReview</code> </a> object. </p>
*/
inline DescribeCodeReviewRequest& WithCodeReviewArn(const char* value) { SetCodeReviewArn(value); return *this;}
private:
Aws::String m_codeReviewArn;
bool m_codeReviewArnHasBeenSet;
};
} // namespace Model
} // namespace CodeGuruReviewer
} // namespace Aws