AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetPropertygraphStreamRequest.h
1
6#pragma once
7#include <aws/neptunedata/Neptunedata_EXPORTS.h>
8#include <aws/neptunedata/NeptunedataRequest.h>
9#include <aws/neptunedata/model/IteratorType.h>
10#include <aws/neptunedata/model/Encoding.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Http
16{
17 class URI;
18} //namespace Http
19namespace neptunedata
20{
21namespace Model
22{
23
27 {
28 public:
29 AWS_NEPTUNEDATA_API GetPropertygraphStreamRequest() = default;
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "GetPropertygraphStream"; }
36
37 AWS_NEPTUNEDATA_API Aws::String SerializePayload() const override;
38
39 AWS_NEPTUNEDATA_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
40
41 AWS_NEPTUNEDATA_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
42
43
45
53 inline long long GetLimit() const { return m_limit; }
54 inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
55 inline void SetLimit(long long value) { m_limitHasBeenSet = true; m_limit = value; }
56 inline GetPropertygraphStreamRequest& WithLimit(long long value) { SetLimit(value); return *this;}
58
60
74 inline IteratorType GetIteratorType() const { return m_iteratorType; }
75 inline bool IteratorTypeHasBeenSet() const { return m_iteratorTypeHasBeenSet; }
76 inline void SetIteratorType(IteratorType value) { m_iteratorTypeHasBeenSet = true; m_iteratorType = value; }
79
81
88 inline long long GetCommitNum() const { return m_commitNum; }
89 inline bool CommitNumHasBeenSet() const { return m_commitNumHasBeenSet; }
90 inline void SetCommitNum(long long value) { m_commitNumHasBeenSet = true; m_commitNum = value; }
91 inline GetPropertygraphStreamRequest& WithCommitNum(long long value) { SetCommitNum(value); return *this;}
93
95
99 inline long long GetOpNum() const { return m_opNum; }
100 inline bool OpNumHasBeenSet() const { return m_opNumHasBeenSet; }
101 inline void SetOpNum(long long value) { m_opNumHasBeenSet = true; m_opNum = value; }
102 inline GetPropertygraphStreamRequest& WithOpNum(long long value) { SetOpNum(value); return *this;}
104
106
109 inline Encoding GetEncoding() const { return m_encoding; }
110 inline bool EncodingHasBeenSet() const { return m_encodingHasBeenSet; }
111 inline void SetEncoding(Encoding value) { m_encodingHasBeenSet = true; m_encoding = value; }
112 inline GetPropertygraphStreamRequest& WithEncoding(Encoding value) { SetEncoding(value); return *this;}
114 private:
115
116 long long m_limit{0};
117 bool m_limitHasBeenSet = false;
118
119 IteratorType m_iteratorType{IteratorType::NOT_SET};
120 bool m_iteratorTypeHasBeenSet = false;
121
122 long long m_commitNum{0};
123 bool m_commitNumHasBeenSet = false;
124
125 long long m_opNum{0};
126 bool m_opNumHasBeenSet = false;
127
128 Encoding m_encoding{Encoding::NOT_SET};
129 bool m_encodingHasBeenSet = false;
130 };
131
132} // namespace Model
133} // namespace neptunedata
134} // namespace Aws
GetPropertygraphStreamRequest & WithCommitNum(long long value)
GetPropertygraphStreamRequest & WithLimit(long long value)
GetPropertygraphStreamRequest & WithIteratorType(IteratorType value)
GetPropertygraphStreamRequest & WithOpNum(long long value)
AWS_NEPTUNEDATA_API Aws::String SerializePayload() const override
AWS_NEPTUNEDATA_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AWS_NEPTUNEDATA_API GetPropertygraphStreamRequest()=default
GetPropertygraphStreamRequest & WithEncoding(Encoding value)
AWS_NEPTUNEDATA_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String