AWS SDK for C++

AWS SDK for C++ Version 1.11.740

Loading...
Searching...
No Matches
UpdatePullRequestDescriptionRequest.h
1
6#pragma once
7#include <aws/codecommit/CodeCommitRequest.h>
8#include <aws/codecommit/CodeCommit_EXPORTS.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace CodeCommit {
15namespace Model {
16
20 public:
21 AWS_CODECOMMIT_API UpdatePullRequestDescriptionRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "UpdatePullRequestDescription"; }
28
29 AWS_CODECOMMIT_API Aws::String SerializePayload() const override;
30
32
34
38 inline const Aws::String& GetPullRequestId() const { return m_pullRequestId; }
39 inline bool PullRequestIdHasBeenSet() const { return m_pullRequestIdHasBeenSet; }
40 template <typename PullRequestIdT = Aws::String>
41 void SetPullRequestId(PullRequestIdT&& value) {
42 m_pullRequestIdHasBeenSet = true;
43 m_pullRequestId = std::forward<PullRequestIdT>(value);
44 }
45 template <typename PullRequestIdT = Aws::String>
47 SetPullRequestId(std::forward<PullRequestIdT>(value));
48 return *this;
49 }
51
53
57 inline const Aws::String& GetDescription() const { return m_description; }
58 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
59 template <typename DescriptionT = Aws::String>
60 void SetDescription(DescriptionT&& value) {
61 m_descriptionHasBeenSet = true;
62 m_description = std::forward<DescriptionT>(value);
63 }
64 template <typename DescriptionT = Aws::String>
66 SetDescription(std::forward<DescriptionT>(value));
67 return *this;
68 }
70 private:
71 Aws::String m_pullRequestId;
72
73 Aws::String m_description;
74 bool m_pullRequestIdHasBeenSet = false;
75 bool m_descriptionHasBeenSet = false;
76};
77
78} // namespace Model
79} // namespace CodeCommit
80} // namespace Aws
AWS_CODECOMMIT_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_CODECOMMIT_API Aws::String SerializePayload() const override
AWS_CODECOMMIT_API UpdatePullRequestDescriptionRequest()=default
UpdatePullRequestDescriptionRequest & WithDescription(DescriptionT &&value)
UpdatePullRequestDescriptionRequest & WithPullRequestId(PullRequestIdT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String