AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
ListNodesResult.h
Go to the documentation of this file.
1
6#pragma once
11#include <utility>
12
13namespace Aws
14{
15template<typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils
19{
20namespace Json
21{
22 class JsonValue;
23} // namespace Json
24} // namespace Utils
25namespace Panorama
26{
27namespace Model
28{
30 {
31 public:
35
36
40 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
41
45 inline void SetNextToken(const Aws::String& value) { m_nextToken = value; }
46
50 inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); }
51
55 inline void SetNextToken(const char* value) { m_nextToken.assign(value); }
56
60 inline ListNodesResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
61
65 inline ListNodesResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
66
70 inline ListNodesResult& WithNextToken(const char* value) { SetNextToken(value); return *this;}
71
72
76 inline const Aws::Vector<Node>& GetNodes() const{ return m_nodes; }
77
81 inline void SetNodes(const Aws::Vector<Node>& value) { m_nodes = value; }
82
86 inline void SetNodes(Aws::Vector<Node>&& value) { m_nodes = std::move(value); }
87
91 inline ListNodesResult& WithNodes(const Aws::Vector<Node>& value) { SetNodes(value); return *this;}
92
96 inline ListNodesResult& WithNodes(Aws::Vector<Node>&& value) { SetNodes(std::move(value)); return *this;}
97
101 inline ListNodesResult& AddNodes(const Node& value) { m_nodes.push_back(value); return *this; }
102
106 inline ListNodesResult& AddNodes(Node&& value) { m_nodes.push_back(std::move(value)); return *this; }
107
108 private:
109
110 Aws::String m_nextToken;
111
112 Aws::Vector<Node> m_nodes;
113 };
114
115} // namespace Model
116} // namespace Panorama
117} // namespace Aws
#define AWS_PANORAMA_API
ListNodesResult & WithNodes(const Aws::Vector< Node > &value)
AWS_PANORAMA_API ListNodesResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
ListNodesResult & WithNextToken(const char *value)
void SetNextToken(Aws::String &&value)
const Aws::Vector< Node > & GetNodes() const
ListNodesResult & AddNodes(Node &&value)
ListNodesResult & WithNextToken(const Aws::String &value)
ListNodesResult & AddNodes(const Node &value)
void SetNodes(Aws::Vector< Node > &&value)
ListNodesResult & WithNextToken(Aws::String &&value)
void SetNodes(const Aws::Vector< Node > &value)
ListNodesResult & WithNodes(Aws::Vector< Node > &&value)
const Aws::String & GetNextToken() const
AWS_PANORAMA_API ListNodesResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
void SetNextToken(const Aws::String &value)
void SetNextToken(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector