AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 const DataSourceFilterVariable& GetFilterVariable() const{ return m_filterVariable; }
54 inline bool FilterVariableHasBeenSet() const { return m_filterVariableHasBeenSet; }
55 inline void SetFilterVariable(const DataSourceFilterVariable& value) { m_filterVariableHasBeenSet = true; m_filterVariable = value; }
56 inline void SetFilterVariable(DataSourceFilterVariable&& value) { m_filterVariableHasBeenSet = true; m_filterVariable = std::move(value); }
60
62
67 inline const Aws::String& GetEQ() const{ return m_eQ; }
68 inline bool EQHasBeenSet() const { return m_eQHasBeenSet; }
69 inline void SetEQ(const Aws::String& value) { m_eQHasBeenSet = true; m_eQ = value; }
70 inline void SetEQ(Aws::String&& value) { m_eQHasBeenSet = true; m_eQ = std::move(value); }
71 inline void SetEQ(const char* value) { m_eQHasBeenSet = true; m_eQ.assign(value); }
72 inline DescribeDataSourcesRequest& WithEQ(const Aws::String& value) { SetEQ(value); return *this;}
73 inline DescribeDataSourcesRequest& WithEQ(Aws::String&& value) { SetEQ(std::move(value)); return *this;}
74 inline DescribeDataSourcesRequest& WithEQ(const char* value) { SetEQ(value); return *this;}
76
78
83 inline const Aws::String& GetGT() const{ return m_gT; }
84 inline bool GTHasBeenSet() const { return m_gTHasBeenSet; }
85 inline void SetGT(const Aws::String& value) { m_gTHasBeenSet = true; m_gT = value; }
86 inline void SetGT(Aws::String&& value) { m_gTHasBeenSet = true; m_gT = std::move(value); }
87 inline void SetGT(const char* value) { m_gTHasBeenSet = true; m_gT.assign(value); }
88 inline DescribeDataSourcesRequest& WithGT(const Aws::String& value) { SetGT(value); return *this;}
89 inline DescribeDataSourcesRequest& WithGT(Aws::String&& value) { SetGT(std::move(value)); return *this;}
90 inline DescribeDataSourcesRequest& WithGT(const char* value) { SetGT(value); return *this;}
92
94
99 inline const Aws::String& GetLT() const{ return m_lT; }
100 inline bool LTHasBeenSet() const { return m_lTHasBeenSet; }
101 inline void SetLT(const Aws::String& value) { m_lTHasBeenSet = true; m_lT = value; }
102 inline void SetLT(Aws::String&& value) { m_lTHasBeenSet = true; m_lT = std::move(value); }
103 inline void SetLT(const char* value) { m_lTHasBeenSet = true; m_lT.assign(value); }
104 inline DescribeDataSourcesRequest& WithLT(const Aws::String& value) { SetLT(value); return *this;}
105 inline DescribeDataSourcesRequest& WithLT(Aws::String&& value) { SetLT(std::move(value)); return *this;}
106 inline DescribeDataSourcesRequest& WithLT(const char* value) { SetLT(value); return *this;}
108
110
115 inline const Aws::String& GetGE() const{ return m_gE; }
116 inline bool GEHasBeenSet() const { return m_gEHasBeenSet; }
117 inline void SetGE(const Aws::String& value) { m_gEHasBeenSet = true; m_gE = value; }
118 inline void SetGE(Aws::String&& value) { m_gEHasBeenSet = true; m_gE = std::move(value); }
119 inline void SetGE(const char* value) { m_gEHasBeenSet = true; m_gE.assign(value); }
120 inline DescribeDataSourcesRequest& WithGE(const Aws::String& value) { SetGE(value); return *this;}
121 inline DescribeDataSourcesRequest& WithGE(Aws::String&& value) { SetGE(std::move(value)); return *this;}
122 inline DescribeDataSourcesRequest& WithGE(const char* value) { SetGE(value); return *this;}
124
126
131 inline const Aws::String& GetLE() const{ return m_lE; }
132 inline bool LEHasBeenSet() const { return m_lEHasBeenSet; }
133 inline void SetLE(const Aws::String& value) { m_lEHasBeenSet = true; m_lE = value; }
134 inline void SetLE(Aws::String&& value) { m_lEHasBeenSet = true; m_lE = std::move(value); }
135 inline void SetLE(const char* value) { m_lEHasBeenSet = true; m_lE.assign(value); }
136 inline DescribeDataSourcesRequest& WithLE(const Aws::String& value) { SetLE(value); return *this;}
137 inline DescribeDataSourcesRequest& WithLE(Aws::String&& value) { SetLE(std::move(value)); return *this;}
138 inline DescribeDataSourcesRequest& WithLE(const char* value) { SetLE(value); return *this;}
140
142
147 inline const Aws::String& GetNE() const{ return m_nE; }
148 inline bool NEHasBeenSet() const { return m_nEHasBeenSet; }
149 inline void SetNE(const Aws::String& value) { m_nEHasBeenSet = true; m_nE = value; }
150 inline void SetNE(Aws::String&& value) { m_nEHasBeenSet = true; m_nE = std::move(value); }
151 inline void SetNE(const char* value) { m_nEHasBeenSet = true; m_nE.assign(value); }
152 inline DescribeDataSourcesRequest& WithNE(const Aws::String& value) { SetNE(value); return *this;}
153 inline DescribeDataSourcesRequest& WithNE(Aws::String&& value) { SetNE(std::move(value)); return *this;}
154 inline DescribeDataSourcesRequest& WithNE(const char* value) { SetNE(value); return *this;}
156
158
168 inline const Aws::String& GetPrefix() const{ return m_prefix; }
169 inline bool PrefixHasBeenSet() const { return m_prefixHasBeenSet; }
170 inline void SetPrefix(const Aws::String& value) { m_prefixHasBeenSet = true; m_prefix = value; }
171 inline void SetPrefix(Aws::String&& value) { m_prefixHasBeenSet = true; m_prefix = std::move(value); }
172 inline void SetPrefix(const char* value) { m_prefixHasBeenSet = true; m_prefix.assign(value); }
173 inline DescribeDataSourcesRequest& WithPrefix(const Aws::String& value) { SetPrefix(value); return *this;}
174 inline DescribeDataSourcesRequest& WithPrefix(Aws::String&& value) { SetPrefix(std::move(value)); return *this;}
175 inline DescribeDataSourcesRequest& WithPrefix(const char* value) { SetPrefix(value); return *this;}
177
179
186 inline const SortOrder& GetSortOrder() const{ return m_sortOrder; }
187 inline bool SortOrderHasBeenSet() const { return m_sortOrderHasBeenSet; }
188 inline void SetSortOrder(const SortOrder& value) { m_sortOrderHasBeenSet = true; m_sortOrder = value; }
189 inline void SetSortOrder(SortOrder&& value) { m_sortOrderHasBeenSet = true; m_sortOrder = std::move(value); }
190 inline DescribeDataSourcesRequest& WithSortOrder(const SortOrder& value) { SetSortOrder(value); return *this;}
191 inline DescribeDataSourcesRequest& WithSortOrder(SortOrder&& value) { SetSortOrder(std::move(value)); return *this;}
193
195
198 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
199 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
200 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
201 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
202 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
203 inline DescribeDataSourcesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
204 inline DescribeDataSourcesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
205 inline DescribeDataSourcesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
207
209
212 inline int GetLimit() const{ return m_limit; }
213 inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
214 inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; }
215 inline DescribeDataSourcesRequest& WithLimit(int value) { SetLimit(value); return *this;}
217 private:
218
219 DataSourceFilterVariable m_filterVariable;
220 bool m_filterVariableHasBeenSet = false;
221
222 Aws::String m_eQ;
223 bool m_eQHasBeenSet = false;
224
225 Aws::String m_gT;
226 bool m_gTHasBeenSet = false;
227
228 Aws::String m_lT;
229 bool m_lTHasBeenSet = false;
230
231 Aws::String m_gE;
232 bool m_gEHasBeenSet = false;
233
234 Aws::String m_lE;
235 bool m_lEHasBeenSet = false;
236
237 Aws::String m_nE;
238 bool m_nEHasBeenSet = false;
239
240 Aws::String m_prefix;
241 bool m_prefixHasBeenSet = false;
242
243 SortOrder m_sortOrder;
244 bool m_sortOrderHasBeenSet = false;
245
246 Aws::String m_nextToken;
247 bool m_nextTokenHasBeenSet = false;
248
249 int m_limit;
250 bool m_limitHasBeenSet = false;
251 };
252
253} // namespace Model
254} // namespace MachineLearning
255} // namespace Aws
void SetFilterVariable(const DataSourceFilterVariable &value)
DescribeDataSourcesRequest & WithLT(const Aws::String &value)
DescribeDataSourcesRequest & WithGT(const char *value)
DescribeDataSourcesRequest & WithSortOrder(const SortOrder &value)
DescribeDataSourcesRequest & WithSortOrder(SortOrder &&value)
DescribeDataSourcesRequest & WithFilterVariable(DataSourceFilterVariable &&value)
DescribeDataSourcesRequest & WithLE(const char *value)
DescribeDataSourcesRequest & WithFilterVariable(const DataSourceFilterVariable &value)
AWS_MACHINELEARNING_API Aws::String SerializePayload() const override
DescribeDataSourcesRequest & WithEQ(const Aws::String &value)
DescribeDataSourcesRequest & WithEQ(Aws::String &&value)
DescribeDataSourcesRequest & WithGE(const Aws::String &value)
DescribeDataSourcesRequest & WithNE(Aws::String &&value)
DescribeDataSourcesRequest & WithNextToken(Aws::String &&value)
DescribeDataSourcesRequest & WithNE(const char *value)
AWS_MACHINELEARNING_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeDataSourcesRequest & WithLT(Aws::String &&value)
DescribeDataSourcesRequest & WithPrefix(const char *value)
DescribeDataSourcesRequest & WithPrefix(Aws::String &&value)
DescribeDataSourcesRequest & WithEQ(const char *value)
DescribeDataSourcesRequest & WithNextToken(const Aws::String &value)
DescribeDataSourcesRequest & WithNextToken(const char *value)
DescribeDataSourcesRequest & WithGE(const char *value)
DescribeDataSourcesRequest & WithLE(const Aws::String &value)
DescribeDataSourcesRequest & WithGT(const Aws::String &value)
DescribeDataSourcesRequest & WithPrefix(const Aws::String &value)
DescribeDataSourcesRequest & WithNE(const Aws::String &value)
DescribeDataSourcesRequest & WithLT(const char *value)
DescribeDataSourcesRequest & WithLE(Aws::String &&value)
DescribeDataSourcesRequest & WithGE(Aws::String &&value)
DescribeDataSourcesRequest & WithGT(Aws::String &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String