AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ComposeEnvironmentsResult.h
1
6#pragma once
7#include <aws/elasticbeanstalk/ElasticBeanstalk_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/elasticbeanstalk/model/ResponseMetadata.h>
11#include <aws/elasticbeanstalk/model/EnvironmentDescription.h>
12#include <utility>
13
14namespace Aws
15{
16template<typename RESULT_TYPE>
17class AmazonWebServiceResult;
18
19namespace Utils
20{
21namespace Xml
22{
23 class XmlDocument;
24} // namespace Xml
25} // namespace Utils
26namespace ElasticBeanstalk
27{
28namespace Model
29{
37 {
38 public:
39 AWS_ELASTICBEANSTALK_API ComposeEnvironmentsResult();
42
43
45
48 inline const Aws::Vector<EnvironmentDescription>& GetEnvironments() const{ return m_environments; }
49 inline void SetEnvironments(const Aws::Vector<EnvironmentDescription>& value) { m_environments = value; }
50 inline void SetEnvironments(Aws::Vector<EnvironmentDescription>&& value) { m_environments = std::move(value); }
53 inline ComposeEnvironmentsResult& AddEnvironments(const EnvironmentDescription& value) { m_environments.push_back(value); return *this; }
54 inline ComposeEnvironmentsResult& AddEnvironments(EnvironmentDescription&& value) { m_environments.push_back(std::move(value)); return *this; }
56
58
62 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
63 inline void SetNextToken(const Aws::String& value) { m_nextToken = value; }
64 inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); }
65 inline void SetNextToken(const char* value) { m_nextToken.assign(value); }
66 inline ComposeEnvironmentsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
67 inline ComposeEnvironmentsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
68 inline ComposeEnvironmentsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;}
70
72
73 inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
74 inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
75 inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
77 inline ComposeEnvironmentsResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;}
79 private:
80
82
83 Aws::String m_nextToken;
84
85 ResponseMetadata m_responseMetadata;
86 };
87
88} // namespace Model
89} // namespace ElasticBeanstalk
90} // namespace Aws
ComposeEnvironmentsResult & AddEnvironments(const EnvironmentDescription &value)
ComposeEnvironmentsResult & AddEnvironments(EnvironmentDescription &&value)
const Aws::Vector< EnvironmentDescription > & GetEnvironments() const
ComposeEnvironmentsResult & WithResponseMetadata(const ResponseMetadata &value)
AWS_ELASTICBEANSTALK_API ComposeEnvironmentsResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
ComposeEnvironmentsResult & WithNextToken(const Aws::String &value)
ComposeEnvironmentsResult & WithEnvironments(const Aws::Vector< EnvironmentDescription > &value)
ComposeEnvironmentsResult & WithNextToken(const char *value)
void SetEnvironments(const Aws::Vector< EnvironmentDescription > &value)
ComposeEnvironmentsResult & WithNextToken(Aws::String &&value)
void SetEnvironments(Aws::Vector< EnvironmentDescription > &&value)
ComposeEnvironmentsResult & WithResponseMetadata(ResponseMetadata &&value)
AWS_ELASTICBEANSTALK_API ComposeEnvironmentsResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
ComposeEnvironmentsResult & WithEnvironments(Aws::Vector< EnvironmentDescription > &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Xml::XmlDocument XmlDocument