AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeMLModelsRequest.h
1
6#pragma once
7#include <aws/machinelearning/MachineLearning_EXPORTS.h>
8#include <aws/machinelearning/MachineLearningRequest.h>
9#include <aws/machinelearning/model/MLModelFilterVariable.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 DescribeMLModelsRequest() = 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 "DescribeMLModels"; }
33
34 AWS_MACHINELEARNING_API Aws::String SerializePayload() const override;
35
36 AWS_MACHINELEARNING_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
37
38
40
61 inline MLModelFilterVariable GetFilterVariable() const { return m_filterVariable; }
62 inline bool FilterVariableHasBeenSet() const { return m_filterVariableHasBeenSet; }
63 inline void SetFilterVariable(MLModelFilterVariable value) { m_filterVariableHasBeenSet = true; m_filterVariable = value; }
66
68
73 inline const Aws::String& GetEQ() const { return m_eQ; }
74 inline bool EQHasBeenSet() const { return m_eQHasBeenSet; }
75 template<typename EQT = Aws::String>
76 void SetEQ(EQT&& value) { m_eQHasBeenSet = true; m_eQ = std::forward<EQT>(value); }
77 template<typename EQT = Aws::String>
78 DescribeMLModelsRequest& WithEQ(EQT&& value) { SetEQ(std::forward<EQT>(value)); return *this;}
80
82
87 inline const Aws::String& GetGT() const { return m_gT; }
88 inline bool GTHasBeenSet() const { return m_gTHasBeenSet; }
89 template<typename GTT = Aws::String>
90 void SetGT(GTT&& value) { m_gTHasBeenSet = true; m_gT = std::forward<GTT>(value); }
91 template<typename GTT = Aws::String>
92 DescribeMLModelsRequest& WithGT(GTT&& value) { SetGT(std::forward<GTT>(value)); return *this;}
94
96
101 inline const Aws::String& GetLT() const { return m_lT; }
102 inline bool LTHasBeenSet() const { return m_lTHasBeenSet; }
103 template<typename LTT = Aws::String>
104 void SetLT(LTT&& value) { m_lTHasBeenSet = true; m_lT = std::forward<LTT>(value); }
105 template<typename LTT = Aws::String>
106 DescribeMLModelsRequest& WithLT(LTT&& value) { SetLT(std::forward<LTT>(value)); return *this;}
108
110
115 inline const Aws::String& GetGE() const { return m_gE; }
116 inline bool GEHasBeenSet() const { return m_gEHasBeenSet; }
117 template<typename GET = Aws::String>
118 void SetGE(GET&& value) { m_gEHasBeenSet = true; m_gE = std::forward<GET>(value); }
119 template<typename GET = Aws::String>
120 DescribeMLModelsRequest& WithGE(GET&& value) { SetGE(std::forward<GET>(value)); return *this;}
122
124
129 inline const Aws::String& GetLE() const { return m_lE; }
130 inline bool LEHasBeenSet() const { return m_lEHasBeenSet; }
131 template<typename LET = Aws::String>
132 void SetLE(LET&& value) { m_lEHasBeenSet = true; m_lE = std::forward<LET>(value); }
133 template<typename LET = Aws::String>
134 DescribeMLModelsRequest& WithLE(LET&& value) { SetLE(std::forward<LET>(value)); return *this;}
136
138
143 inline const Aws::String& GetNE() const { return m_nE; }
144 inline bool NEHasBeenSet() const { return m_nEHasBeenSet; }
145 template<typename NET = Aws::String>
146 void SetNE(NET&& value) { m_nEHasBeenSet = true; m_nE = std::forward<NET>(value); }
147 template<typename NET = Aws::String>
148 DescribeMLModelsRequest& WithNE(NET&& value) { SetNE(std::forward<NET>(value)); return *this;}
150
152
162 inline const Aws::String& GetPrefix() const { return m_prefix; }
163 inline bool PrefixHasBeenSet() const { return m_prefixHasBeenSet; }
164 template<typename PrefixT = Aws::String>
165 void SetPrefix(PrefixT&& value) { m_prefixHasBeenSet = true; m_prefix = std::forward<PrefixT>(value); }
166 template<typename PrefixT = Aws::String>
167 DescribeMLModelsRequest& WithPrefix(PrefixT&& value) { SetPrefix(std::forward<PrefixT>(value)); return *this;}
169
171
178 inline SortOrder GetSortOrder() const { return m_sortOrder; }
179 inline bool SortOrderHasBeenSet() const { return m_sortOrderHasBeenSet; }
180 inline void SetSortOrder(SortOrder value) { m_sortOrderHasBeenSet = true; m_sortOrder = value; }
181 inline DescribeMLModelsRequest& WithSortOrder(SortOrder value) { SetSortOrder(value); return *this;}
183
185
188 inline const Aws::String& GetNextToken() const { return m_nextToken; }
189 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
190 template<typename NextTokenT = Aws::String>
191 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
192 template<typename NextTokenT = Aws::String>
193 DescribeMLModelsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
195
197
202 inline int GetLimit() const { return m_limit; }
203 inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
204 inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; }
205 inline DescribeMLModelsRequest& WithLimit(int value) { SetLimit(value); return *this;}
207 private:
208
210 bool m_filterVariableHasBeenSet = false;
211
212 Aws::String m_eQ;
213 bool m_eQHasBeenSet = false;
214
215 Aws::String m_gT;
216 bool m_gTHasBeenSet = false;
217
218 Aws::String m_lT;
219 bool m_lTHasBeenSet = false;
220
221 Aws::String m_gE;
222 bool m_gEHasBeenSet = false;
223
224 Aws::String m_lE;
225 bool m_lEHasBeenSet = false;
226
227 Aws::String m_nE;
228 bool m_nEHasBeenSet = false;
229
230 Aws::String m_prefix;
231 bool m_prefixHasBeenSet = false;
232
233 SortOrder m_sortOrder{SortOrder::NOT_SET};
234 bool m_sortOrderHasBeenSet = false;
235
236 Aws::String m_nextToken;
237 bool m_nextTokenHasBeenSet = false;
238
239 int m_limit{0};
240 bool m_limitHasBeenSet = false;
241 };
242
243} // namespace Model
244} // namespace MachineLearning
245} // namespace Aws
AWS_MACHINELEARNING_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_MACHINELEARNING_API DescribeMLModelsRequest()=default
DescribeMLModelsRequest & WithNextToken(NextTokenT &&value)
DescribeMLModelsRequest & WithPrefix(PrefixT &&value)
virtual const char * GetServiceRequestName() const override
DescribeMLModelsRequest & WithFilterVariable(MLModelFilterVariable value)
DescribeMLModelsRequest & WithSortOrder(SortOrder value)
AWS_MACHINELEARNING_API Aws::String SerializePayload() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String