AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeletePackageGroupRequest.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 DeletePackageGroupRequest();
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 "DeletePackageGroup"; }
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 DeletePackageGroupRequest& WithDomain(const Aws::String& value) { SetDomain(value); return *this;}
51 inline DeletePackageGroupRequest& WithDomain(Aws::String&& value) { SetDomain(std::move(value)); return *this;}
52 inline DeletePackageGroupRequest& 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 DeletePackageGroupRequest& WithDomainOwner(const Aws::String& value) { SetDomainOwner(value); return *this;}
66 inline DeletePackageGroupRequest& WithDomainOwner(Aws::String&& value) { SetDomainOwner(std::move(value)); return *this;}
67 inline DeletePackageGroupRequest& 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 DeletePackageGroupRequest& WithPackageGroup(const Aws::String& value) { SetPackageGroup(value); return *this;}
80 inline DeletePackageGroupRequest& WithPackageGroup(Aws::String&& value) { SetPackageGroup(std::move(value)); return *this;}
81 inline DeletePackageGroupRequest& WithPackageGroup(const char* value) { SetPackageGroup(value); return *this;}
83 private:
84
85 Aws::String m_domain;
86 bool m_domainHasBeenSet = false;
87
88 Aws::String m_domainOwner;
89 bool m_domainOwnerHasBeenSet = false;
90
91 Aws::String m_packageGroup;
92 bool m_packageGroupHasBeenSet = false;
93 };
94
95} // namespace Model
96} // namespace CodeArtifact
97} // namespace Aws
DeletePackageGroupRequest & WithPackageGroup(Aws::String &&value)
AWS_CODEARTIFACT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DeletePackageGroupRequest & WithDomainOwner(const char *value)
DeletePackageGroupRequest & WithDomain(const Aws::String &value)
DeletePackageGroupRequest & WithDomainOwner(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
DeletePackageGroupRequest & WithDomain(Aws::String &&value)
AWS_CODEARTIFACT_API Aws::String SerializePayload() const override
DeletePackageGroupRequest & WithPackageGroup(const Aws::String &value)
DeletePackageGroupRequest & WithDomain(const char *value)
DeletePackageGroupRequest & WithDomainOwner(Aws::String &&value)
DeletePackageGroupRequest & WithPackageGroup(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String