AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListInferenceEventsRequest.h
1
6#pragma once
7#include <aws/lookoutequipment/LookoutEquipment_EXPORTS.h>
8#include <aws/lookoutequipment/LookoutEquipmentRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/DateTime.h>
11#include <utility>
12
13namespace Aws
14{
15namespace LookoutEquipment
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_LOOKOUTEQUIPMENT_API ListInferenceEventsRequest();
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 "ListInferenceEvents"; }
32
33 AWS_LOOKOUTEQUIPMENT_API Aws::String SerializePayload() const override;
34
35 AWS_LOOKOUTEQUIPMENT_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
36
37
39
43 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
44 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
45 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
46 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
47 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
48 inline ListInferenceEventsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
49 inline ListInferenceEventsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
50 inline ListInferenceEventsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
52
54
57 inline int GetMaxResults() const{ return m_maxResults; }
58 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
59 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
60 inline ListInferenceEventsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
62
64
67 inline const Aws::String& GetInferenceSchedulerName() const{ return m_inferenceSchedulerName; }
68 inline bool InferenceSchedulerNameHasBeenSet() const { return m_inferenceSchedulerNameHasBeenSet; }
69 inline void SetInferenceSchedulerName(const Aws::String& value) { m_inferenceSchedulerNameHasBeenSet = true; m_inferenceSchedulerName = value; }
70 inline void SetInferenceSchedulerName(Aws::String&& value) { m_inferenceSchedulerNameHasBeenSet = true; m_inferenceSchedulerName = std::move(value); }
71 inline void SetInferenceSchedulerName(const char* value) { m_inferenceSchedulerNameHasBeenSet = true; m_inferenceSchedulerName.assign(value); }
74 inline ListInferenceEventsRequest& WithInferenceSchedulerName(const char* value) { SetInferenceSchedulerName(value); return *this;}
76
78
82 inline const Aws::Utils::DateTime& GetIntervalStartTime() const{ return m_intervalStartTime; }
83 inline bool IntervalStartTimeHasBeenSet() const { return m_intervalStartTimeHasBeenSet; }
84 inline void SetIntervalStartTime(const Aws::Utils::DateTime& value) { m_intervalStartTimeHasBeenSet = true; m_intervalStartTime = value; }
85 inline void SetIntervalStartTime(Aws::Utils::DateTime&& value) { m_intervalStartTimeHasBeenSet = true; m_intervalStartTime = std::move(value); }
89
91
95 inline const Aws::Utils::DateTime& GetIntervalEndTime() const{ return m_intervalEndTime; }
96 inline bool IntervalEndTimeHasBeenSet() const { return m_intervalEndTimeHasBeenSet; }
97 inline void SetIntervalEndTime(const Aws::Utils::DateTime& value) { m_intervalEndTimeHasBeenSet = true; m_intervalEndTime = value; }
98 inline void SetIntervalEndTime(Aws::Utils::DateTime&& value) { m_intervalEndTimeHasBeenSet = true; m_intervalEndTime = std::move(value); }
102 private:
103
104 Aws::String m_nextToken;
105 bool m_nextTokenHasBeenSet = false;
106
107 int m_maxResults;
108 bool m_maxResultsHasBeenSet = false;
109
110 Aws::String m_inferenceSchedulerName;
111 bool m_inferenceSchedulerNameHasBeenSet = false;
112
113 Aws::Utils::DateTime m_intervalStartTime;
114 bool m_intervalStartTimeHasBeenSet = false;
115
116 Aws::Utils::DateTime m_intervalEndTime;
117 bool m_intervalEndTimeHasBeenSet = false;
118 };
119
120} // namespace Model
121} // namespace LookoutEquipment
122} // namespace Aws
AWS_LOOKOUTEQUIPMENT_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
ListInferenceEventsRequest & WithNextToken(const char *value)
ListInferenceEventsRequest & WithIntervalEndTime(const Aws::Utils::DateTime &value)
ListInferenceEventsRequest & WithInferenceSchedulerName(const Aws::String &value)
AWS_LOOKOUTEQUIPMENT_API Aws::String SerializePayload() const override
ListInferenceEventsRequest & WithIntervalStartTime(const Aws::Utils::DateTime &value)
ListInferenceEventsRequest & WithNextToken(Aws::String &&value)
ListInferenceEventsRequest & WithNextToken(const Aws::String &value)
ListInferenceEventsRequest & WithInferenceSchedulerName(Aws::String &&value)
ListInferenceEventsRequest & WithIntervalStartTime(Aws::Utils::DateTime &&value)
ListInferenceEventsRequest & WithInferenceSchedulerName(const char *value)
ListInferenceEventsRequest & WithIntervalEndTime(Aws::Utils::DateTime &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String