AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
DescribeBatchPredictionsRequest.h
1
6#pragma once
7#include <aws/machinelearning/MachineLearning_EXPORTS.h>
8#include <aws/machinelearning/MachineLearningRequest.h>
9#include <aws/machinelearning/model/BatchPredictionFilterVariable.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 DescribeBatchPredictionsRequest() = 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 "DescribeBatchPredictions"; }
33
34 AWS_MACHINELEARNING_API Aws::String SerializePayload() const override;
35
36 AWS_MACHINELEARNING_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
37
38
40
57 inline BatchPredictionFilterVariable GetFilterVariable() const { return m_filterVariable; }
58 inline bool FilterVariableHasBeenSet() const { return m_filterVariableHasBeenSet; }
59 inline void SetFilterVariable(BatchPredictionFilterVariable value) { m_filterVariableHasBeenSet = true; m_filterVariable = value; }
62
64
69 inline const Aws::String& GetEQ() const { return m_eQ; }
70 inline bool EQHasBeenSet() const { return m_eQHasBeenSet; }
71 template<typename EQT = Aws::String>
72 void SetEQ(EQT&& value) { m_eQHasBeenSet = true; m_eQ = std::forward<EQT>(value); }
73 template<typename EQT = Aws::String>
74 DescribeBatchPredictionsRequest& WithEQ(EQT&& value) { SetEQ(std::forward<EQT>(value)); return *this;}
76
78
83 inline const Aws::String& GetGT() const { return m_gT; }
84 inline bool GTHasBeenSet() const { return m_gTHasBeenSet; }
85 template<typename GTT = Aws::String>
86 void SetGT(GTT&& value) { m_gTHasBeenSet = true; m_gT = std::forward<GTT>(value); }
87 template<typename GTT = Aws::String>
88 DescribeBatchPredictionsRequest& WithGT(GTT&& value) { SetGT(std::forward<GTT>(value)); return *this;}
90
92
97 inline const Aws::String& GetLT() const { return m_lT; }
98 inline bool LTHasBeenSet() const { return m_lTHasBeenSet; }
99 template<typename LTT = Aws::String>
100 void SetLT(LTT&& value) { m_lTHasBeenSet = true; m_lT = std::forward<LTT>(value); }
101 template<typename LTT = Aws::String>
102 DescribeBatchPredictionsRequest& WithLT(LTT&& value) { SetLT(std::forward<LTT>(value)); return *this;}
104
106
111 inline const Aws::String& GetGE() const { return m_gE; }
112 inline bool GEHasBeenSet() const { return m_gEHasBeenSet; }
113 template<typename GET = Aws::String>
114 void SetGE(GET&& value) { m_gEHasBeenSet = true; m_gE = std::forward<GET>(value); }
115 template<typename GET = Aws::String>
116 DescribeBatchPredictionsRequest& WithGE(GET&& value) { SetGE(std::forward<GET>(value)); return *this;}
118
120
125 inline const Aws::String& GetLE() const { return m_lE; }
126 inline bool LEHasBeenSet() const { return m_lEHasBeenSet; }
127 template<typename LET = Aws::String>
128 void SetLE(LET&& value) { m_lEHasBeenSet = true; m_lE = std::forward<LET>(value); }
129 template<typename LET = Aws::String>
130 DescribeBatchPredictionsRequest& WithLE(LET&& value) { SetLE(std::forward<LET>(value)); return *this;}
132
134
139 inline const Aws::String& GetNE() const { return m_nE; }
140 inline bool NEHasBeenSet() const { return m_nEHasBeenSet; }
141 template<typename NET = Aws::String>
142 void SetNE(NET&& value) { m_nEHasBeenSet = true; m_nE = std::forward<NET>(value); }
143 template<typename NET = Aws::String>
144 DescribeBatchPredictionsRequest& WithNE(NET&& value) { SetNE(std::forward<NET>(value)); return *this;}
146
148
158 inline const Aws::String& GetPrefix() const { return m_prefix; }
159 inline bool PrefixHasBeenSet() const { return m_prefixHasBeenSet; }
160 template<typename PrefixT = Aws::String>
161 void SetPrefix(PrefixT&& value) { m_prefixHasBeenSet = true; m_prefix = std::forward<PrefixT>(value); }
162 template<typename PrefixT = Aws::String>
163 DescribeBatchPredictionsRequest& WithPrefix(PrefixT&& value) { SetPrefix(std::forward<PrefixT>(value)); return *this;}
165
167
174 inline SortOrder GetSortOrder() const { return m_sortOrder; }
175 inline bool SortOrderHasBeenSet() const { return m_sortOrderHasBeenSet; }
176 inline void SetSortOrder(SortOrder value) { m_sortOrderHasBeenSet = true; m_sortOrder = value; }
179
181
184 inline const Aws::String& GetNextToken() const { return m_nextToken; }
185 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
186 template<typename NextTokenT = Aws::String>
187 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
188 template<typename NextTokenT = Aws::String>
189 DescribeBatchPredictionsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
191
193
198 inline int GetLimit() const { return m_limit; }
199 inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
200 inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; }
201 inline DescribeBatchPredictionsRequest& WithLimit(int value) { SetLimit(value); return *this;}
203 private:
204
206 bool m_filterVariableHasBeenSet = false;
207
208 Aws::String m_eQ;
209 bool m_eQHasBeenSet = false;
210
211 Aws::String m_gT;
212 bool m_gTHasBeenSet = false;
213
214 Aws::String m_lT;
215 bool m_lTHasBeenSet = false;
216
217 Aws::String m_gE;
218 bool m_gEHasBeenSet = false;
219
220 Aws::String m_lE;
221 bool m_lEHasBeenSet = false;
222
223 Aws::String m_nE;
224 bool m_nEHasBeenSet = false;
225
226 Aws::String m_prefix;
227 bool m_prefixHasBeenSet = false;
228
229 SortOrder m_sortOrder{SortOrder::NOT_SET};
230 bool m_sortOrderHasBeenSet = false;
231
232 Aws::String m_nextToken;
233 bool m_nextTokenHasBeenSet = false;
234
235 int m_limit{0};
236 bool m_limitHasBeenSet = false;
237 };
238
239} // namespace Model
240} // namespace MachineLearning
241} // namespace Aws
DescribeBatchPredictionsRequest & WithNextToken(NextTokenT &&value)
AWS_MACHINELEARNING_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeBatchPredictionsRequest & WithFilterVariable(BatchPredictionFilterVariable value)
AWS_MACHINELEARNING_API Aws::String SerializePayload() const override
DescribeBatchPredictionsRequest & WithSortOrder(SortOrder value)
AWS_MACHINELEARNING_API DescribeBatchPredictionsRequest()=default
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String