AWS SDK for C++

AWS SDK for C++ Version 1.11.742

Loading...
Searching...
No Matches
ListNodesRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/medialive/MediaLiveRequest.h>
9#include <aws/medialive/MediaLive_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Http {
15class URI;
16} // namespace Http
17namespace MediaLive {
18namespace Model {
19
26 public:
27 AWS_MEDIALIVE_API ListNodesRequest() = default;
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "ListNodes"; }
34
35 AWS_MEDIALIVE_API Aws::String SerializePayload() const override;
36
37 AWS_MEDIALIVE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
38
40
43 inline const Aws::String& GetClusterId() const { return m_clusterId; }
44 inline bool ClusterIdHasBeenSet() const { return m_clusterIdHasBeenSet; }
45 template <typename ClusterIdT = Aws::String>
46 void SetClusterId(ClusterIdT&& value) {
47 m_clusterIdHasBeenSet = true;
48 m_clusterId = std::forward<ClusterIdT>(value);
49 }
50 template <typename ClusterIdT = Aws::String>
51 ListNodesRequest& WithClusterId(ClusterIdT&& value) {
52 SetClusterId(std::forward<ClusterIdT>(value));
53 return *this;
54 }
56
58
61 inline int GetMaxResults() const { return m_maxResults; }
62 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
63 inline void SetMaxResults(int value) {
64 m_maxResultsHasBeenSet = true;
65 m_maxResults = value;
66 }
67 inline ListNodesRequest& WithMaxResults(int value) {
68 SetMaxResults(value);
69 return *this;
70 }
72
74
77 inline const Aws::String& GetNextToken() const { return m_nextToken; }
78 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
79 template <typename NextTokenT = Aws::String>
80 void SetNextToken(NextTokenT&& value) {
81 m_nextTokenHasBeenSet = true;
82 m_nextToken = std::forward<NextTokenT>(value);
83 }
84 template <typename NextTokenT = Aws::String>
85 ListNodesRequest& WithNextToken(NextTokenT&& value) {
86 SetNextToken(std::forward<NextTokenT>(value));
87 return *this;
88 }
90 private:
91 Aws::String m_clusterId;
92
93 int m_maxResults{0};
94
95 Aws::String m_nextToken;
96 bool m_clusterIdHasBeenSet = false;
97 bool m_maxResultsHasBeenSet = false;
98 bool m_nextTokenHasBeenSet = false;
99};
100
101} // namespace Model
102} // namespace MediaLive
103} // namespace Aws
virtual const char * GetServiceRequestName() const override
AWS_MEDIALIVE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AWS_MEDIALIVE_API ListNodesRequest()=default
ListNodesRequest & WithClusterId(ClusterIdT &&value)
ListNodesRequest & WithNextToken(NextTokenT &&value)
ListNodesRequest & WithMaxResults(int value)
const Aws::String & GetClusterId() const
AWS_MEDIALIVE_API Aws::String SerializePayload() const override
const Aws::String & GetNextToken() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String