AWS SDK for C++

AWS SDK for C++ Version 1.11.554

All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Pages
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() = default;
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 template<typename DomainT = Aws::String>
48 void SetDomain(DomainT&& value) { m_domainHasBeenSet = true; m_domain = std::forward<DomainT>(value); }
49 template<typename DomainT = Aws::String>
50 UpdatePackageGroupRequest& WithDomain(DomainT&& value) { SetDomain(std::forward<DomainT>(value)); return *this;}
52
54
58 inline const Aws::String& GetDomainOwner() const { return m_domainOwner; }
59 inline bool DomainOwnerHasBeenSet() const { return m_domainOwnerHasBeenSet; }
60 template<typename DomainOwnerT = Aws::String>
61 void SetDomainOwner(DomainOwnerT&& value) { m_domainOwnerHasBeenSet = true; m_domainOwner = std::forward<DomainOwnerT>(value); }
62 template<typename DomainOwnerT = Aws::String>
63 UpdatePackageGroupRequest& WithDomainOwner(DomainOwnerT&& value) { SetDomainOwner(std::forward<DomainOwnerT>(value)); return *this;}
65
67
70 inline const Aws::String& GetPackageGroup() const { return m_packageGroup; }
71 inline bool PackageGroupHasBeenSet() const { return m_packageGroupHasBeenSet; }
72 template<typename PackageGroupT = Aws::String>
73 void SetPackageGroup(PackageGroupT&& value) { m_packageGroupHasBeenSet = true; m_packageGroup = std::forward<PackageGroupT>(value); }
74 template<typename PackageGroupT = Aws::String>
75 UpdatePackageGroupRequest& WithPackageGroup(PackageGroupT&& value) { SetPackageGroup(std::forward<PackageGroupT>(value)); return *this;}
77
79
83 inline const Aws::String& GetContactInfo() const { return m_contactInfo; }
84 inline bool ContactInfoHasBeenSet() const { return m_contactInfoHasBeenSet; }
85 template<typename ContactInfoT = Aws::String>
86 void SetContactInfo(ContactInfoT&& value) { m_contactInfoHasBeenSet = true; m_contactInfo = std::forward<ContactInfoT>(value); }
87 template<typename ContactInfoT = Aws::String>
88 UpdatePackageGroupRequest& WithContactInfo(ContactInfoT&& value) { SetContactInfo(std::forward<ContactInfoT>(value)); return *this;}
90
92
95 inline const Aws::String& GetDescription() const { return m_description; }
96 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
97 template<typename DescriptionT = Aws::String>
98 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
99 template<typename DescriptionT = Aws::String>
100 UpdatePackageGroupRequest& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
102 private:
103
104 Aws::String m_domain;
105 bool m_domainHasBeenSet = false;
106
107 Aws::String m_domainOwner;
108 bool m_domainOwnerHasBeenSet = false;
109
110 Aws::String m_packageGroup;
111 bool m_packageGroupHasBeenSet = false;
112
113 Aws::String m_contactInfo;
114 bool m_contactInfoHasBeenSet = false;
115
116 Aws::String m_description;
117 bool m_descriptionHasBeenSet = false;
118 };
119
120} // namespace Model
121} // namespace CodeArtifact
122} // namespace Aws
UpdatePackageGroupRequest & WithDescription(DescriptionT &&value)
UpdatePackageGroupRequest & WithContactInfo(ContactInfoT &&value)
AWS_CODEARTIFACT_API UpdatePackageGroupRequest()=default
UpdatePackageGroupRequest & WithDomain(DomainT &&value)
UpdatePackageGroupRequest & WithPackageGroup(PackageGroupT &&value)
UpdatePackageGroupRequest & WithDomainOwner(DomainOwnerT &&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
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String