AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
ListDeploymentsResult.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>& GetDeployments() const{ return m_deployments; }
46
50 inline void SetDeployments(const Aws::Vector<Aws::String>& value) { m_deployments = value; }
51
55 inline void SetDeployments(Aws::Vector<Aws::String>&& value) { m_deployments = std::move(value); }
56
61
65 inline ListDeploymentsResult& WithDeployments(Aws::Vector<Aws::String>&& value) { SetDeployments(std::move(value)); return *this;}
66
70 inline ListDeploymentsResult& AddDeployments(const Aws::String& value) { m_deployments.push_back(value); return *this; }
71
75 inline ListDeploymentsResult& AddDeployments(Aws::String&& value) { m_deployments.push_back(std::move(value)); return *this; }
76
80 inline ListDeploymentsResult& AddDeployments(const char* value) { m_deployments.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 ListDeploymentsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
117
123 inline ListDeploymentsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
124
130 inline ListDeploymentsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;}
131
132 private:
133
134 Aws::Vector<Aws::String> m_deployments;
135
136 Aws::String m_nextToken;
137 };
138
139} // namespace Model
140} // namespace CodeDeploy
141} // namespace Aws
#define AWS_CODEDEPLOY_API
ListDeploymentsResult & AddDeployments(const Aws::String &value)
void SetDeployments(Aws::Vector< Aws::String > &&value)
ListDeploymentsResult & WithDeployments(Aws::Vector< Aws::String > &&value)
ListDeploymentsResult & AddDeployments(const char *value)
void SetDeployments(const Aws::Vector< Aws::String > &value)
ListDeploymentsResult & WithNextToken(Aws::String &&value)
ListDeploymentsResult & WithNextToken(const char *value)
AWS_CODEDEPLOY_API ListDeploymentsResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
ListDeploymentsResult & AddDeployments(Aws::String &&value)
AWS_CODEDEPLOY_API ListDeploymentsResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
ListDeploymentsResult & WithNextToken(const Aws::String &value)
ListDeploymentsResult & WithDeployments(const Aws::Vector< Aws::String > &value)
const Aws::Vector< Aws::String > & GetDeployments() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector