AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListDevEnvironmentsRequest.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/Filter.h>
12#include <utility>
13
14namespace Aws
15{
16namespace CodeCatalyst
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_CODECATALYST_API ListDevEnvironmentsRequest() = 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 "ListDevEnvironments"; }
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 ListDevEnvironmentsRequest& WithSpaceName(SpaceNameT&& value) { SetSpaceName(std::forward<SpaceNameT>(value)); return *this;}
48
50
53 inline const Aws::String& GetProjectName() const { return m_projectName; }
54 inline bool ProjectNameHasBeenSet() const { return m_projectNameHasBeenSet; }
55 template<typename ProjectNameT = Aws::String>
56 void SetProjectName(ProjectNameT&& value) { m_projectNameHasBeenSet = true; m_projectName = std::forward<ProjectNameT>(value); }
57 template<typename ProjectNameT = Aws::String>
58 ListDevEnvironmentsRequest& WithProjectName(ProjectNameT&& value) { SetProjectName(std::forward<ProjectNameT>(value)); return *this;}
60
62
66 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
67 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
68 template<typename FiltersT = Aws::Vector<Filter>>
69 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
70 template<typename FiltersT = Aws::Vector<Filter>>
71 ListDevEnvironmentsRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
72 template<typename FiltersT = Filter>
73 ListDevEnvironmentsRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
75
77
81 inline const Aws::String& GetNextToken() const { return m_nextToken; }
82 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
83 template<typename NextTokenT = Aws::String>
84 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
85 template<typename NextTokenT = Aws::String>
86 ListDevEnvironmentsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
88
90
96 inline int GetMaxResults() const { return m_maxResults; }
97 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
98 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
99 inline ListDevEnvironmentsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
101 private:
102
103 Aws::String m_spaceName;
104 bool m_spaceNameHasBeenSet = false;
105
106 Aws::String m_projectName;
107 bool m_projectNameHasBeenSet = false;
108
109 Aws::Vector<Filter> m_filters;
110 bool m_filtersHasBeenSet = false;
111
112 Aws::String m_nextToken;
113 bool m_nextTokenHasBeenSet = false;
114
115 int m_maxResults{0};
116 bool m_maxResultsHasBeenSet = false;
117 };
118
119} // namespace Model
120} // namespace CodeCatalyst
121} // namespace Aws
AWS_CODECATALYST_API ListDevEnvironmentsRequest()=default
ListDevEnvironmentsRequest & WithSpaceName(SpaceNameT &&value)
ListDevEnvironmentsRequest & WithNextToken(NextTokenT &&value)
ListDevEnvironmentsRequest & WithFilters(FiltersT &&value)
AWS_CODECATALYST_API Aws::String SerializePayload() const override
ListDevEnvironmentsRequest & AddFilters(FiltersT &&value)
ListDevEnvironmentsRequest & WithProjectName(ProjectNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector