AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateApprovalRuleTemplateContentRequest.h
1
6#pragma once
7#include <aws/codecommit/CodeCommit_EXPORTS.h>
8#include <aws/codecommit/CodeCommitRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace CodeCommit
15{
16namespace Model
17{
18
22 {
23 public:
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "UpdateApprovalRuleTemplateContent"; }
31
32 AWS_CODECOMMIT_API Aws::String SerializePayload() const override;
33
35
36
38
42 inline const Aws::String& GetApprovalRuleTemplateName() const{ return m_approvalRuleTemplateName; }
43 inline bool ApprovalRuleTemplateNameHasBeenSet() const { return m_approvalRuleTemplateNameHasBeenSet; }
44 inline void SetApprovalRuleTemplateName(const Aws::String& value) { m_approvalRuleTemplateNameHasBeenSet = true; m_approvalRuleTemplateName = value; }
45 inline void SetApprovalRuleTemplateName(Aws::String&& value) { m_approvalRuleTemplateNameHasBeenSet = true; m_approvalRuleTemplateName = std::move(value); }
46 inline void SetApprovalRuleTemplateName(const char* value) { m_approvalRuleTemplateNameHasBeenSet = true; m_approvalRuleTemplateName.assign(value); }
51
53
57 inline const Aws::String& GetNewRuleContent() const{ return m_newRuleContent; }
58 inline bool NewRuleContentHasBeenSet() const { return m_newRuleContentHasBeenSet; }
59 inline void SetNewRuleContent(const Aws::String& value) { m_newRuleContentHasBeenSet = true; m_newRuleContent = value; }
60 inline void SetNewRuleContent(Aws::String&& value) { m_newRuleContentHasBeenSet = true; m_newRuleContent = std::move(value); }
61 inline void SetNewRuleContent(const char* value) { m_newRuleContentHasBeenSet = true; m_newRuleContent.assign(value); }
64 inline UpdateApprovalRuleTemplateContentRequest& WithNewRuleContent(const char* value) { SetNewRuleContent(value); return *this;}
66
68
72 inline const Aws::String& GetExistingRuleContentSha256() const{ return m_existingRuleContentSha256; }
73 inline bool ExistingRuleContentSha256HasBeenSet() const { return m_existingRuleContentSha256HasBeenSet; }
74 inline void SetExistingRuleContentSha256(const Aws::String& value) { m_existingRuleContentSha256HasBeenSet = true; m_existingRuleContentSha256 = value; }
75 inline void SetExistingRuleContentSha256(Aws::String&& value) { m_existingRuleContentSha256HasBeenSet = true; m_existingRuleContentSha256 = std::move(value); }
76 inline void SetExistingRuleContentSha256(const char* value) { m_existingRuleContentSha256HasBeenSet = true; m_existingRuleContentSha256.assign(value); }
81 private:
82
83 Aws::String m_approvalRuleTemplateName;
84 bool m_approvalRuleTemplateNameHasBeenSet = false;
85
86 Aws::String m_newRuleContent;
87 bool m_newRuleContentHasBeenSet = false;
88
89 Aws::String m_existingRuleContentSha256;
90 bool m_existingRuleContentSha256HasBeenSet = false;
91 };
92
93} // namespace Model
94} // namespace CodeCommit
95} // namespace Aws
UpdateApprovalRuleTemplateContentRequest & WithExistingRuleContentSha256(const Aws::String &value)
AWS_CODECOMMIT_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
UpdateApprovalRuleTemplateContentRequest & WithExistingRuleContentSha256(Aws::String &&value)
UpdateApprovalRuleTemplateContentRequest & WithExistingRuleContentSha256(const char *value)
AWS_CODECOMMIT_API Aws::String SerializePayload() const override
UpdateApprovalRuleTemplateContentRequest & WithApprovalRuleTemplateName(const Aws::String &value)
UpdateApprovalRuleTemplateContentRequest & WithApprovalRuleTemplateName(const char *value)
UpdateApprovalRuleTemplateContentRequest & WithNewRuleContent(Aws::String &&value)
UpdateApprovalRuleTemplateContentRequest & WithNewRuleContent(const char *value)
UpdateApprovalRuleTemplateContentRequest & WithApprovalRuleTemplateName(Aws::String &&value)
UpdateApprovalRuleTemplateContentRequest & WithNewRuleContent(const Aws::String &value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String