AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetEventPredictionMetadataRequest.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 <utility>
11
12namespace Aws
13{
14namespace FraudDetector
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_FRAUDDETECTOR_API GetEventPredictionMetadataRequest();
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "GetEventPredictionMetadata"; }
31
32 AWS_FRAUDDETECTOR_API Aws::String SerializePayload() const override;
33
34 AWS_FRAUDDETECTOR_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
35
36
38
41 inline const Aws::String& GetEventId() const{ return m_eventId; }
42 inline bool EventIdHasBeenSet() const { return m_eventIdHasBeenSet; }
43 inline void SetEventId(const Aws::String& value) { m_eventIdHasBeenSet = true; m_eventId = value; }
44 inline void SetEventId(Aws::String&& value) { m_eventIdHasBeenSet = true; m_eventId = std::move(value); }
45 inline void SetEventId(const char* value) { m_eventIdHasBeenSet = true; m_eventId.assign(value); }
46 inline GetEventPredictionMetadataRequest& WithEventId(const Aws::String& value) { SetEventId(value); return *this;}
47 inline GetEventPredictionMetadataRequest& WithEventId(Aws::String&& value) { SetEventId(std::move(value)); return *this;}
48 inline GetEventPredictionMetadataRequest& WithEventId(const char* value) { SetEventId(value); return *this;}
50
52
56 inline const Aws::String& GetEventTypeName() const{ return m_eventTypeName; }
57 inline bool EventTypeNameHasBeenSet() const { return m_eventTypeNameHasBeenSet; }
58 inline void SetEventTypeName(const Aws::String& value) { m_eventTypeNameHasBeenSet = true; m_eventTypeName = value; }
59 inline void SetEventTypeName(Aws::String&& value) { m_eventTypeNameHasBeenSet = true; m_eventTypeName = std::move(value); }
60 inline void SetEventTypeName(const char* value) { m_eventTypeNameHasBeenSet = true; m_eventTypeName.assign(value); }
62 inline GetEventPredictionMetadataRequest& WithEventTypeName(Aws::String&& value) { SetEventTypeName(std::move(value)); return *this;}
63 inline GetEventPredictionMetadataRequest& WithEventTypeName(const char* value) { SetEventTypeName(value); return *this;}
65
67
70 inline const Aws::String& GetDetectorId() const{ return m_detectorId; }
71 inline bool DetectorIdHasBeenSet() const { return m_detectorIdHasBeenSet; }
72 inline void SetDetectorId(const Aws::String& value) { m_detectorIdHasBeenSet = true; m_detectorId = value; }
73 inline void SetDetectorId(Aws::String&& value) { m_detectorIdHasBeenSet = true; m_detectorId = std::move(value); }
74 inline void SetDetectorId(const char* value) { m_detectorIdHasBeenSet = true; m_detectorId.assign(value); }
75 inline GetEventPredictionMetadataRequest& WithDetectorId(const Aws::String& value) { SetDetectorId(value); return *this;}
76 inline GetEventPredictionMetadataRequest& WithDetectorId(Aws::String&& value) { SetDetectorId(std::move(value)); return *this;}
77 inline GetEventPredictionMetadataRequest& WithDetectorId(const char* value) { SetDetectorId(value); return *this;}
79
81
84 inline const Aws::String& GetDetectorVersionId() const{ return m_detectorVersionId; }
85 inline bool DetectorVersionIdHasBeenSet() const { return m_detectorVersionIdHasBeenSet; }
86 inline void SetDetectorVersionId(const Aws::String& value) { m_detectorVersionIdHasBeenSet = true; m_detectorVersionId = value; }
87 inline void SetDetectorVersionId(Aws::String&& value) { m_detectorVersionIdHasBeenSet = true; m_detectorVersionId = std::move(value); }
88 inline void SetDetectorVersionId(const char* value) { m_detectorVersionIdHasBeenSet = true; m_detectorVersionId.assign(value); }
91 inline GetEventPredictionMetadataRequest& WithDetectorVersionId(const char* value) { SetDetectorVersionId(value); return *this;}
93
95
102 inline const Aws::String& GetPredictionTimestamp() const{ return m_predictionTimestamp; }
103 inline bool PredictionTimestampHasBeenSet() const { return m_predictionTimestampHasBeenSet; }
104 inline void SetPredictionTimestamp(const Aws::String& value) { m_predictionTimestampHasBeenSet = true; m_predictionTimestamp = value; }
105 inline void SetPredictionTimestamp(Aws::String&& value) { m_predictionTimestampHasBeenSet = true; m_predictionTimestamp = std::move(value); }
106 inline void SetPredictionTimestamp(const char* value) { m_predictionTimestampHasBeenSet = true; m_predictionTimestamp.assign(value); }
109 inline GetEventPredictionMetadataRequest& WithPredictionTimestamp(const char* value) { SetPredictionTimestamp(value); return *this;}
111 private:
112
113 Aws::String m_eventId;
114 bool m_eventIdHasBeenSet = false;
115
116 Aws::String m_eventTypeName;
117 bool m_eventTypeNameHasBeenSet = false;
118
119 Aws::String m_detectorId;
120 bool m_detectorIdHasBeenSet = false;
121
122 Aws::String m_detectorVersionId;
123 bool m_detectorVersionIdHasBeenSet = false;
124
125 Aws::String m_predictionTimestamp;
126 bool m_predictionTimestampHasBeenSet = false;
127 };
128
129} // namespace Model
130} // namespace FraudDetector
131} // namespace Aws
GetEventPredictionMetadataRequest & WithDetectorVersionId(const Aws::String &value)
GetEventPredictionMetadataRequest & WithEventTypeName(const Aws::String &value)
GetEventPredictionMetadataRequest & WithEventTypeName(Aws::String &&value)
GetEventPredictionMetadataRequest & WithPredictionTimestamp(const Aws::String &value)
GetEventPredictionMetadataRequest & WithEventId(const char *value)
AWS_FRAUDDETECTOR_API Aws::String SerializePayload() const override
GetEventPredictionMetadataRequest & WithEventTypeName(const char *value)
GetEventPredictionMetadataRequest & WithDetectorId(Aws::String &&value)
GetEventPredictionMetadataRequest & WithEventId(Aws::String &&value)
AWS_FRAUDDETECTOR_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
GetEventPredictionMetadataRequest & WithPredictionTimestamp(const char *value)
GetEventPredictionMetadataRequest & WithPredictionTimestamp(Aws::String &&value)
GetEventPredictionMetadataRequest & WithDetectorId(const Aws::String &value)
GetEventPredictionMetadataRequest & WithDetectorVersionId(Aws::String &&value)
GetEventPredictionMetadataRequest & WithDetectorId(const char *value)
GetEventPredictionMetadataRequest & WithEventId(const Aws::String &value)
GetEventPredictionMetadataRequest & WithDetectorVersionId(const char *value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String