AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListProjectsRequest.h
1
6#pragma once
7#include <aws/codecatalyst/CodeCatalyst_EXPORTS.h>
8#include <aws/codecatalyst/CodeCatalystRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/codecatalyst/model/ProjectListFilter.h>
12#include <utility>
13
14namespace Aws
15{
16namespace CodeCatalyst
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_CODECATALYST_API ListProjectsRequest() = default;
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "ListProjects"; }
33
34 AWS_CODECATALYST_API Aws::String SerializePayload() const override;
35
36
38
41 inline const Aws::String& GetSpaceName() const { return m_spaceName; }
42 inline bool SpaceNameHasBeenSet() const { return m_spaceNameHasBeenSet; }
43 template<typename SpaceNameT = Aws::String>
44 void SetSpaceName(SpaceNameT&& value) { m_spaceNameHasBeenSet = true; m_spaceName = std::forward<SpaceNameT>(value); }
45 template<typename SpaceNameT = Aws::String>
46 ListProjectsRequest& WithSpaceName(SpaceNameT&& value) { SetSpaceName(std::forward<SpaceNameT>(value)); return *this;}
48
50
54 inline const Aws::String& GetNextToken() const { return m_nextToken; }
55 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
56 template<typename NextTokenT = Aws::String>
57 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
58 template<typename NextTokenT = Aws::String>
59 ListProjectsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
61
63
69 inline int GetMaxResults() const { return m_maxResults; }
70 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
71 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
72 inline ListProjectsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
74
76
80 inline const Aws::Vector<ProjectListFilter>& GetFilters() const { return m_filters; }
81 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
82 template<typename FiltersT = Aws::Vector<ProjectListFilter>>
83 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
84 template<typename FiltersT = Aws::Vector<ProjectListFilter>>
85 ListProjectsRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
86 template<typename FiltersT = ProjectListFilter>
87 ListProjectsRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
89 private:
90
91 Aws::String m_spaceName;
92 bool m_spaceNameHasBeenSet = false;
93
94 Aws::String m_nextToken;
95 bool m_nextTokenHasBeenSet = false;
96
97 int m_maxResults{0};
98 bool m_maxResultsHasBeenSet = false;
99
101 bool m_filtersHasBeenSet = false;
102 };
103
104} // namespace Model
105} // namespace CodeCatalyst
106} // namespace Aws
AWS_CODECATALYST_API ListProjectsRequest()=default
const Aws::Vector< ProjectListFilter > & GetFilters() const
ListProjectsRequest & WithNextToken(NextTokenT &&value)
ListProjectsRequest & AddFilters(FiltersT &&value)
ListProjectsRequest & WithMaxResults(int value)
ListProjectsRequest & WithFilters(FiltersT &&value)
AWS_CODECATALYST_API Aws::String SerializePayload() const override
ListProjectsRequest & WithSpaceName(SpaceNameT &&value)
virtual const char * GetServiceRequestName() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector