AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdatePackageGroupRequest.h
1
6#pragma once
7#include <aws/codeartifact/CodeArtifact_EXPORTS.h>
8#include <aws/codeartifact/CodeArtifactRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace CodeArtifact
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_CODEARTIFACT_API UpdatePackageGroupRequest();
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "UpdatePackageGroup"; }
35
36 AWS_CODEARTIFACT_API Aws::String SerializePayload() const override;
37
38 AWS_CODEARTIFACT_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
45 inline const Aws::String& GetDomain() const{ return m_domain; }
46 inline bool DomainHasBeenSet() const { return m_domainHasBeenSet; }
47 inline void SetDomain(const Aws::String& value) { m_domainHasBeenSet = true; m_domain = value; }
48 inline void SetDomain(Aws::String&& value) { m_domainHasBeenSet = true; m_domain = std::move(value); }
49 inline void SetDomain(const char* value) { m_domainHasBeenSet = true; m_domain.assign(value); }
50 inline UpdatePackageGroupRequest& WithDomain(const Aws::String& value) { SetDomain(value); return *this;}
51 inline UpdatePackageGroupRequest& WithDomain(Aws::String&& value) { SetDomain(std::move(value)); return *this;}
52 inline UpdatePackageGroupRequest& WithDomain(const char* value) { SetDomain(value); return *this;}
54
56
60 inline const Aws::String& GetDomainOwner() const{ return m_domainOwner; }
61 inline bool DomainOwnerHasBeenSet() const { return m_domainOwnerHasBeenSet; }
62 inline void SetDomainOwner(const Aws::String& value) { m_domainOwnerHasBeenSet = true; m_domainOwner = value; }
63 inline void SetDomainOwner(Aws::String&& value) { m_domainOwnerHasBeenSet = true; m_domainOwner = std::move(value); }
64 inline void SetDomainOwner(const char* value) { m_domainOwnerHasBeenSet = true; m_domainOwner.assign(value); }
65 inline UpdatePackageGroupRequest& WithDomainOwner(const Aws::String& value) { SetDomainOwner(value); return *this;}
66 inline UpdatePackageGroupRequest& WithDomainOwner(Aws::String&& value) { SetDomainOwner(std::move(value)); return *this;}
67 inline UpdatePackageGroupRequest& WithDomainOwner(const char* value) { SetDomainOwner(value); return *this;}
69
71
74 inline const Aws::String& GetPackageGroup() const{ return m_packageGroup; }
75 inline bool PackageGroupHasBeenSet() const { return m_packageGroupHasBeenSet; }
76 inline void SetPackageGroup(const Aws::String& value) { m_packageGroupHasBeenSet = true; m_packageGroup = value; }
77 inline void SetPackageGroup(Aws::String&& value) { m_packageGroupHasBeenSet = true; m_packageGroup = std::move(value); }
78 inline void SetPackageGroup(const char* value) { m_packageGroupHasBeenSet = true; m_packageGroup.assign(value); }
79 inline UpdatePackageGroupRequest& WithPackageGroup(const Aws::String& value) { SetPackageGroup(value); return *this;}
80 inline UpdatePackageGroupRequest& WithPackageGroup(Aws::String&& value) { SetPackageGroup(std::move(value)); return *this;}
81 inline UpdatePackageGroupRequest& WithPackageGroup(const char* value) { SetPackageGroup(value); return *this;}
83
85
89 inline const Aws::String& GetContactInfo() const{ return m_contactInfo; }
90 inline bool ContactInfoHasBeenSet() const { return m_contactInfoHasBeenSet; }
91 inline void SetContactInfo(const Aws::String& value) { m_contactInfoHasBeenSet = true; m_contactInfo = value; }
92 inline void SetContactInfo(Aws::String&& value) { m_contactInfoHasBeenSet = true; m_contactInfo = std::move(value); }
93 inline void SetContactInfo(const char* value) { m_contactInfoHasBeenSet = true; m_contactInfo.assign(value); }
94 inline UpdatePackageGroupRequest& WithContactInfo(const Aws::String& value) { SetContactInfo(value); return *this;}
95 inline UpdatePackageGroupRequest& WithContactInfo(Aws::String&& value) { SetContactInfo(std::move(value)); return *this;}
96 inline UpdatePackageGroupRequest& WithContactInfo(const char* value) { SetContactInfo(value); return *this;}
98
100
103 inline const Aws::String& GetDescription() const{ return m_description; }
104 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
105 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
106 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
107 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
108 inline UpdatePackageGroupRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
109 inline UpdatePackageGroupRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
110 inline UpdatePackageGroupRequest& WithDescription(const char* value) { SetDescription(value); return *this;}
112 private:
113
114 Aws::String m_domain;
115 bool m_domainHasBeenSet = false;
116
117 Aws::String m_domainOwner;
118 bool m_domainOwnerHasBeenSet = false;
119
120 Aws::String m_packageGroup;
121 bool m_packageGroupHasBeenSet = false;
122
123 Aws::String m_contactInfo;
124 bool m_contactInfoHasBeenSet = false;
125
126 Aws::String m_description;
127 bool m_descriptionHasBeenSet = false;
128 };
129
130} // namespace Model
131} // namespace CodeArtifact
132} // namespace Aws
UpdatePackageGroupRequest & WithDomain(const Aws::String &value)
UpdatePackageGroupRequest & WithDomainOwner(const char *value)
UpdatePackageGroupRequest & WithPackageGroup(const char *value)
UpdatePackageGroupRequest & WithDomain(Aws::String &&value)
UpdatePackageGroupRequest & WithPackageGroup(Aws::String &&value)
UpdatePackageGroupRequest & WithContactInfo(const char *value)
UpdatePackageGroupRequest & WithDescription(const char *value)
UpdatePackageGroupRequest & WithContactInfo(Aws::String &&value)
UpdatePackageGroupRequest & WithDomainOwner(Aws::String &&value)
UpdatePackageGroupRequest & WithContactInfo(const Aws::String &value)
UpdatePackageGroupRequest & WithDomain(const char *value)
UpdatePackageGroupRequest & WithPackageGroup(const Aws::String &value)
UpdatePackageGroupRequest & WithDescription(Aws::String &&value)
UpdatePackageGroupRequest & WithDescription(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
AWS_CODEARTIFACT_API Aws::String SerializePayload() const override
AWS_CODEARTIFACT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
UpdatePackageGroupRequest & WithDomainOwner(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String