AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListAssociatedPackagesRequest.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 ListAssociatedPackagesRequest();
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 "ListAssociatedPackages"; }
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
46 inline const Aws::String& GetDomain() const{ return m_domain; }
47 inline bool DomainHasBeenSet() const { return m_domainHasBeenSet; }
48 inline void SetDomain(const Aws::String& value) { m_domainHasBeenSet = true; m_domain = value; }
49 inline void SetDomain(Aws::String&& value) { m_domainHasBeenSet = true; m_domain = std::move(value); }
50 inline void SetDomain(const char* value) { m_domainHasBeenSet = true; m_domain.assign(value); }
51 inline ListAssociatedPackagesRequest& WithDomain(const Aws::String& value) { SetDomain(value); return *this;}
52 inline ListAssociatedPackagesRequest& WithDomain(Aws::String&& value) { SetDomain(std::move(value)); return *this;}
53 inline ListAssociatedPackagesRequest& WithDomain(const char* value) { SetDomain(value); return *this;}
55
57
61 inline const Aws::String& GetDomainOwner() const{ return m_domainOwner; }
62 inline bool DomainOwnerHasBeenSet() const { return m_domainOwnerHasBeenSet; }
63 inline void SetDomainOwner(const Aws::String& value) { m_domainOwnerHasBeenSet = true; m_domainOwner = value; }
64 inline void SetDomainOwner(Aws::String&& value) { m_domainOwnerHasBeenSet = true; m_domainOwner = std::move(value); }
65 inline void SetDomainOwner(const char* value) { m_domainOwnerHasBeenSet = true; m_domainOwner.assign(value); }
66 inline ListAssociatedPackagesRequest& WithDomainOwner(const Aws::String& value) { SetDomainOwner(value); return *this;}
67 inline ListAssociatedPackagesRequest& WithDomainOwner(Aws::String&& value) { SetDomainOwner(std::move(value)); return *this;}
68 inline ListAssociatedPackagesRequest& WithDomainOwner(const char* value) { SetDomainOwner(value); return *this;}
70
72
76 inline const Aws::String& GetPackageGroup() const{ return m_packageGroup; }
77 inline bool PackageGroupHasBeenSet() const { return m_packageGroupHasBeenSet; }
78 inline void SetPackageGroup(const Aws::String& value) { m_packageGroupHasBeenSet = true; m_packageGroup = value; }
79 inline void SetPackageGroup(Aws::String&& value) { m_packageGroupHasBeenSet = true; m_packageGroup = std::move(value); }
80 inline void SetPackageGroup(const char* value) { m_packageGroupHasBeenSet = true; m_packageGroup.assign(value); }
81 inline ListAssociatedPackagesRequest& WithPackageGroup(const Aws::String& value) { SetPackageGroup(value); return *this;}
82 inline ListAssociatedPackagesRequest& WithPackageGroup(Aws::String&& value) { SetPackageGroup(std::move(value)); return *this;}
83 inline ListAssociatedPackagesRequest& WithPackageGroup(const char* value) { SetPackageGroup(value); return *this;}
85
87
90 inline int GetMaxResults() const{ return m_maxResults; }
91 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
92 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
93 inline ListAssociatedPackagesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
95
97
101 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
102 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
103 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
104 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
105 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
106 inline ListAssociatedPackagesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
107 inline ListAssociatedPackagesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
108 inline ListAssociatedPackagesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
110
112
117 inline bool GetPreview() const{ return m_preview; }
118 inline bool PreviewHasBeenSet() const { return m_previewHasBeenSet; }
119 inline void SetPreview(bool value) { m_previewHasBeenSet = true; m_preview = value; }
120 inline ListAssociatedPackagesRequest& WithPreview(bool value) { SetPreview(value); return *this;}
122 private:
123
124 Aws::String m_domain;
125 bool m_domainHasBeenSet = false;
126
127 Aws::String m_domainOwner;
128 bool m_domainOwnerHasBeenSet = false;
129
130 Aws::String m_packageGroup;
131 bool m_packageGroupHasBeenSet = false;
132
133 int m_maxResults;
134 bool m_maxResultsHasBeenSet = false;
135
136 Aws::String m_nextToken;
137 bool m_nextTokenHasBeenSet = false;
138
139 bool m_preview;
140 bool m_previewHasBeenSet = false;
141 };
142
143} // namespace Model
144} // namespace CodeArtifact
145} // namespace Aws
ListAssociatedPackagesRequest & WithPackageGroup(const Aws::String &value)
ListAssociatedPackagesRequest & WithDomainOwner(Aws::String &&value)
ListAssociatedPackagesRequest & WithDomain(const char *value)
ListAssociatedPackagesRequest & WithDomain(Aws::String &&value)
ListAssociatedPackagesRequest & WithNextToken(const char *value)
AWS_CODEARTIFACT_API Aws::String SerializePayload() const override
ListAssociatedPackagesRequest & WithDomainOwner(const Aws::String &value)
ListAssociatedPackagesRequest & WithPackageGroup(const char *value)
AWS_CODEARTIFACT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
ListAssociatedPackagesRequest & WithPackageGroup(Aws::String &&value)
ListAssociatedPackagesRequest & WithNextToken(Aws::String &&value)
ListAssociatedPackagesRequest & WithDomain(const Aws::String &value)
ListAssociatedPackagesRequest & WithNextToken(const Aws::String &value)
ListAssociatedPackagesRequest & WithDomainOwner(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String