AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetModelsRequest.h
1
6#pragma once
7#include <aws/frauddetector/FraudDetector_EXPORTS.h>
8#include <aws/frauddetector/FraudDetectorRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/frauddetector/model/ModelTypeEnum.h>
11#include <utility>
12
13namespace Aws
14{
15namespace FraudDetector
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_FRAUDDETECTOR_API GetModelsRequest();
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "GetModels"; }
32
33 AWS_FRAUDDETECTOR_API Aws::String SerializePayload() const override;
34
35 AWS_FRAUDDETECTOR_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
36
37
39
42 inline const Aws::String& GetModelId() const{ return m_modelId; }
43 inline bool ModelIdHasBeenSet() const { return m_modelIdHasBeenSet; }
44 inline void SetModelId(const Aws::String& value) { m_modelIdHasBeenSet = true; m_modelId = value; }
45 inline void SetModelId(Aws::String&& value) { m_modelIdHasBeenSet = true; m_modelId = std::move(value); }
46 inline void SetModelId(const char* value) { m_modelIdHasBeenSet = true; m_modelId.assign(value); }
47 inline GetModelsRequest& WithModelId(const Aws::String& value) { SetModelId(value); return *this;}
48 inline GetModelsRequest& WithModelId(Aws::String&& value) { SetModelId(std::move(value)); return *this;}
49 inline GetModelsRequest& WithModelId(const char* value) { SetModelId(value); return *this;}
51
53
56 inline const ModelTypeEnum& GetModelType() const{ return m_modelType; }
57 inline bool ModelTypeHasBeenSet() const { return m_modelTypeHasBeenSet; }
58 inline void SetModelType(const ModelTypeEnum& value) { m_modelTypeHasBeenSet = true; m_modelType = value; }
59 inline void SetModelType(ModelTypeEnum&& value) { m_modelTypeHasBeenSet = true; m_modelType = std::move(value); }
60 inline GetModelsRequest& WithModelType(const ModelTypeEnum& value) { SetModelType(value); return *this;}
61 inline GetModelsRequest& WithModelType(ModelTypeEnum&& value) { SetModelType(std::move(value)); return *this;}
63
65
68 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
69 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
70 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
71 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
72 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
73 inline GetModelsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
74 inline GetModelsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
75 inline GetModelsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
77
79
82 inline int GetMaxResults() const{ return m_maxResults; }
83 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
84 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
85 inline GetModelsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
87 private:
88
89 Aws::String m_modelId;
90 bool m_modelIdHasBeenSet = false;
91
92 ModelTypeEnum m_modelType;
93 bool m_modelTypeHasBeenSet = false;
94
95 Aws::String m_nextToken;
96 bool m_nextTokenHasBeenSet = false;
97
98 int m_maxResults;
99 bool m_maxResultsHasBeenSet = false;
100 };
101
102} // namespace Model
103} // namespace FraudDetector
104} // namespace Aws
GetModelsRequest & WithModelType(ModelTypeEnum &&value)
GetModelsRequest & WithNextToken(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
const ModelTypeEnum & GetModelType() const
AWS_FRAUDDETECTOR_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
void SetNextToken(const Aws::String &value)
AWS_FRAUDDETECTOR_API Aws::String SerializePayload() const override
void SetModelType(const ModelTypeEnum &value)
GetModelsRequest & WithModelId(const char *value)
GetModelsRequest & WithNextToken(const char *value)
GetModelsRequest & WithMaxResults(int value)
GetModelsRequest & WithModelId(Aws::String &&value)
GetModelsRequest & WithModelType(const ModelTypeEnum &value)
void SetModelId(const Aws::String &value)
GetModelsRequest & WithModelId(const Aws::String &value)
GetModelsRequest & WithNextToken(Aws::String &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String