AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
DescribeDataSourcesRequest.h
1
6#pragma once
7#include <aws/machinelearning/MachineLearning_EXPORTS.h>
8#include <aws/machinelearning/MachineLearningRequest.h>
9#include <aws/machinelearning/model/DataSourceFilterVariable.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/machinelearning/model/SortOrder.h>
12#include <utility>
13
14namespace Aws
15{
16namespace MachineLearning
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_MACHINELEARNING_API DescribeDataSourcesRequest() = 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 "DescribeDataSources"; }
33
34 AWS_MACHINELEARNING_API Aws::String SerializePayload() const override;
35
36 AWS_MACHINELEARNING_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
37
38
40
53 inline DataSourceFilterVariable GetFilterVariable() const { return m_filterVariable; }
54 inline bool FilterVariableHasBeenSet() const { return m_filterVariableHasBeenSet; }
55 inline void SetFilterVariable(DataSourceFilterVariable value) { m_filterVariableHasBeenSet = true; m_filterVariable = value; }
58
60
65 inline const Aws::String& GetEQ() const { return m_eQ; }
66 inline bool EQHasBeenSet() const { return m_eQHasBeenSet; }
67 template<typename EQT = Aws::String>
68 void SetEQ(EQT&& value) { m_eQHasBeenSet = true; m_eQ = std::forward<EQT>(value); }
69 template<typename EQT = Aws::String>
70 DescribeDataSourcesRequest& WithEQ(EQT&& value) { SetEQ(std::forward<EQT>(value)); return *this;}
72
74
79 inline const Aws::String& GetGT() const { return m_gT; }
80 inline bool GTHasBeenSet() const { return m_gTHasBeenSet; }
81 template<typename GTT = Aws::String>
82 void SetGT(GTT&& value) { m_gTHasBeenSet = true; m_gT = std::forward<GTT>(value); }
83 template<typename GTT = Aws::String>
84 DescribeDataSourcesRequest& WithGT(GTT&& value) { SetGT(std::forward<GTT>(value)); return *this;}
86
88
93 inline const Aws::String& GetLT() const { return m_lT; }
94 inline bool LTHasBeenSet() const { return m_lTHasBeenSet; }
95 template<typename LTT = Aws::String>
96 void SetLT(LTT&& value) { m_lTHasBeenSet = true; m_lT = std::forward<LTT>(value); }
97 template<typename LTT = Aws::String>
98 DescribeDataSourcesRequest& WithLT(LTT&& value) { SetLT(std::forward<LTT>(value)); return *this;}
100
102
107 inline const Aws::String& GetGE() const { return m_gE; }
108 inline bool GEHasBeenSet() const { return m_gEHasBeenSet; }
109 template<typename GET = Aws::String>
110 void SetGE(GET&& value) { m_gEHasBeenSet = true; m_gE = std::forward<GET>(value); }
111 template<typename GET = Aws::String>
112 DescribeDataSourcesRequest& WithGE(GET&& value) { SetGE(std::forward<GET>(value)); return *this;}
114
116
121 inline const Aws::String& GetLE() const { return m_lE; }
122 inline bool LEHasBeenSet() const { return m_lEHasBeenSet; }
123 template<typename LET = Aws::String>
124 void SetLE(LET&& value) { m_lEHasBeenSet = true; m_lE = std::forward<LET>(value); }
125 template<typename LET = Aws::String>
126 DescribeDataSourcesRequest& WithLE(LET&& value) { SetLE(std::forward<LET>(value)); return *this;}
128
130
135 inline const Aws::String& GetNE() const { return m_nE; }
136 inline bool NEHasBeenSet() const { return m_nEHasBeenSet; }
137 template<typename NET = Aws::String>
138 void SetNE(NET&& value) { m_nEHasBeenSet = true; m_nE = std::forward<NET>(value); }
139 template<typename NET = Aws::String>
140 DescribeDataSourcesRequest& WithNE(NET&& value) { SetNE(std::forward<NET>(value)); return *this;}
142
144
154 inline const Aws::String& GetPrefix() const { return m_prefix; }
155 inline bool PrefixHasBeenSet() const { return m_prefixHasBeenSet; }
156 template<typename PrefixT = Aws::String>
157 void SetPrefix(PrefixT&& value) { m_prefixHasBeenSet = true; m_prefix = std::forward<PrefixT>(value); }
158 template<typename PrefixT = Aws::String>
159 DescribeDataSourcesRequest& WithPrefix(PrefixT&& value) { SetPrefix(std::forward<PrefixT>(value)); return *this;}
161
163
170 inline SortOrder GetSortOrder() const { return m_sortOrder; }
171 inline bool SortOrderHasBeenSet() const { return m_sortOrderHasBeenSet; }
172 inline void SetSortOrder(SortOrder value) { m_sortOrderHasBeenSet = true; m_sortOrder = value; }
173 inline DescribeDataSourcesRequest& WithSortOrder(SortOrder value) { SetSortOrder(value); return *this;}
175
177
180 inline const Aws::String& GetNextToken() const { return m_nextToken; }
181 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
182 template<typename NextTokenT = Aws::String>
183 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
184 template<typename NextTokenT = Aws::String>
185 DescribeDataSourcesRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
187
189
192 inline int GetLimit() const { return m_limit; }
193 inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
194 inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; }
195 inline DescribeDataSourcesRequest& WithLimit(int value) { SetLimit(value); return *this;}
197 private:
198
200 bool m_filterVariableHasBeenSet = false;
201
202 Aws::String m_eQ;
203 bool m_eQHasBeenSet = false;
204
205 Aws::String m_gT;
206 bool m_gTHasBeenSet = false;
207
208 Aws::String m_lT;
209 bool m_lTHasBeenSet = false;
210
211 Aws::String m_gE;
212 bool m_gEHasBeenSet = false;
213
214 Aws::String m_lE;
215 bool m_lEHasBeenSet = false;
216
217 Aws::String m_nE;
218 bool m_nEHasBeenSet = false;
219
220 Aws::String m_prefix;
221 bool m_prefixHasBeenSet = false;
222
223 SortOrder m_sortOrder{SortOrder::NOT_SET};
224 bool m_sortOrderHasBeenSet = false;
225
226 Aws::String m_nextToken;
227 bool m_nextTokenHasBeenSet = false;
228
229 int m_limit{0};
230 bool m_limitHasBeenSet = false;
231 };
232
233} // namespace Model
234} // namespace MachineLearning
235} // namespace Aws
AWS_MACHINELEARNING_API Aws::String SerializePayload() const override
DescribeDataSourcesRequest & WithPrefix(PrefixT &&value)
DescribeDataSourcesRequest & WithSortOrder(SortOrder value)
AWS_MACHINELEARNING_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeDataSourcesRequest & WithFilterVariable(DataSourceFilterVariable value)
AWS_MACHINELEARNING_API DescribeDataSourcesRequest()=default
DescribeDataSourcesRequest & WithNextToken(NextTokenT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String