AWS SDK for C++

AWS SDK for C++ Version 1.11.555

All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Pages
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() = 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 "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 template<typename DomainT = Aws::String>
49 void SetDomain(DomainT&& value) { m_domainHasBeenSet = true; m_domain = std::forward<DomainT>(value); }
50 template<typename DomainT = Aws::String>
51 ListAssociatedPackagesRequest& WithDomain(DomainT&& value) { SetDomain(std::forward<DomainT>(value)); return *this;}
53
55
59 inline const Aws::String& GetDomainOwner() const { return m_domainOwner; }
60 inline bool DomainOwnerHasBeenSet() const { return m_domainOwnerHasBeenSet; }
61 template<typename DomainOwnerT = Aws::String>
62 void SetDomainOwner(DomainOwnerT&& value) { m_domainOwnerHasBeenSet = true; m_domainOwner = std::forward<DomainOwnerT>(value); }
63 template<typename DomainOwnerT = Aws::String>
64 ListAssociatedPackagesRequest& WithDomainOwner(DomainOwnerT&& value) { SetDomainOwner(std::forward<DomainOwnerT>(value)); return *this;}
66
68
72 inline const Aws::String& GetPackageGroup() const { return m_packageGroup; }
73 inline bool PackageGroupHasBeenSet() const { return m_packageGroupHasBeenSet; }
74 template<typename PackageGroupT = Aws::String>
75 void SetPackageGroup(PackageGroupT&& value) { m_packageGroupHasBeenSet = true; m_packageGroup = std::forward<PackageGroupT>(value); }
76 template<typename PackageGroupT = Aws::String>
77 ListAssociatedPackagesRequest& WithPackageGroup(PackageGroupT&& value) { SetPackageGroup(std::forward<PackageGroupT>(value)); return *this;}
79
81
84 inline int GetMaxResults() const { return m_maxResults; }
85 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
86 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
87 inline ListAssociatedPackagesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
89
91
95 inline const Aws::String& GetNextToken() const { return m_nextToken; }
96 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
97 template<typename NextTokenT = Aws::String>
98 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
99 template<typename NextTokenT = Aws::String>
100 ListAssociatedPackagesRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
102
104
109 inline bool GetPreview() const { return m_preview; }
110 inline bool PreviewHasBeenSet() const { return m_previewHasBeenSet; }
111 inline void SetPreview(bool value) { m_previewHasBeenSet = true; m_preview = value; }
112 inline ListAssociatedPackagesRequest& WithPreview(bool value) { SetPreview(value); return *this;}
114 private:
115
116 Aws::String m_domain;
117 bool m_domainHasBeenSet = false;
118
119 Aws::String m_domainOwner;
120 bool m_domainOwnerHasBeenSet = false;
121
122 Aws::String m_packageGroup;
123 bool m_packageGroupHasBeenSet = false;
124
125 int m_maxResults{0};
126 bool m_maxResultsHasBeenSet = false;
127
128 Aws::String m_nextToken;
129 bool m_nextTokenHasBeenSet = false;
130
131 bool m_preview{false};
132 bool m_previewHasBeenSet = false;
133 };
134
135} // namespace Model
136} // namespace CodeArtifact
137} // namespace Aws
ListAssociatedPackagesRequest & WithNextToken(NextTokenT &&value)
AWS_CODEARTIFACT_API ListAssociatedPackagesRequest()=default
AWS_CODEARTIFACT_API Aws::String SerializePayload() const override
AWS_CODEARTIFACT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
ListAssociatedPackagesRequest & WithDomainOwner(DomainOwnerT &&value)
ListAssociatedPackagesRequest & WithDomain(DomainT &&value)
ListAssociatedPackagesRequest & WithPackageGroup(PackageGroupT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String