AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
ListOnPremisesInstancesResult.h
Go to the documentation of this file.
1
6#pragma once
10#include <utility>
11
12namespace Aws
13{
14template<typename RESULT_TYPE>
15class AmazonWebServiceResult;
16
17namespace Utils
18{
19namespace Json
20{
21 class JsonValue;
22} // namespace Json
23} // namespace Utils
24namespace CodeDeploy
25{
26namespace Model
27{
35 {
36 public:
40
41
45 inline const Aws::Vector<Aws::String>& GetInstanceNames() const{ return m_instanceNames; }
46
50 inline void SetInstanceNames(const Aws::Vector<Aws::String>& value) { m_instanceNames = value; }
51
55 inline void SetInstanceNames(Aws::Vector<Aws::String>&& value) { m_instanceNames = std::move(value); }
56
61
66
70 inline ListOnPremisesInstancesResult& AddInstanceNames(const Aws::String& value) { m_instanceNames.push_back(value); return *this; }
71
75 inline ListOnPremisesInstancesResult& AddInstanceNames(Aws::String&& value) { m_instanceNames.push_back(std::move(value)); return *this; }
76
80 inline ListOnPremisesInstancesResult& AddInstanceNames(const char* value) { m_instanceNames.push_back(value); return *this; }
81
82
88 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
89
95 inline void SetNextToken(const Aws::String& value) { m_nextToken = value; }
96
102 inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); }
103
109 inline void SetNextToken(const char* value) { m_nextToken.assign(value); }
110
116 inline ListOnPremisesInstancesResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
117
123 inline ListOnPremisesInstancesResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
124
130 inline ListOnPremisesInstancesResult& WithNextToken(const char* value) { SetNextToken(value); return *this;}
131
132 private:
133
134 Aws::Vector<Aws::String> m_instanceNames;
135
136 Aws::String m_nextToken;
137 };
138
139} // namespace Model
140} // namespace CodeDeploy
141} // namespace Aws
#define AWS_CODEDEPLOY_API
ListOnPremisesInstancesResult & WithNextToken(const Aws::String &value)
void SetInstanceNames(const Aws::Vector< Aws::String > &value)
AWS_CODEDEPLOY_API ListOnPremisesInstancesResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
ListOnPremisesInstancesResult & AddInstanceNames(const char *value)
ListOnPremisesInstancesResult & AddInstanceNames(Aws::String &&value)
ListOnPremisesInstancesResult & WithNextToken(const char *value)
const Aws::Vector< Aws::String > & GetInstanceNames() const
AWS_CODEDEPLOY_API ListOnPremisesInstancesResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
ListOnPremisesInstancesResult & AddInstanceNames(const Aws::String &value)
ListOnPremisesInstancesResult & WithNextToken(Aws::String &&value)
ListOnPremisesInstancesResult & WithInstanceNames(const Aws::Vector< Aws::String > &value)
ListOnPremisesInstancesResult & WithInstanceNames(Aws::Vector< Aws::String > &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector