AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListConfigurationSetsResult.h
1
6#pragma once
7#include <aws/email/SES_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/email/model/ResponseMetadata.h>
11#include <aws/email/model/ConfigurationSet.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 SES
27{
28namespace Model
29{
40 {
41 public:
45
46
48
51 inline const Aws::Vector<ConfigurationSet>& GetConfigurationSets() const{ return m_configurationSets; }
52 inline void SetConfigurationSets(const Aws::Vector<ConfigurationSet>& value) { m_configurationSets = value; }
53 inline void SetConfigurationSets(Aws::Vector<ConfigurationSet>&& value) { m_configurationSets = std::move(value); }
56 inline ListConfigurationSetsResult& AddConfigurationSets(const ConfigurationSet& value) { m_configurationSets.push_back(value); return *this; }
57 inline ListConfigurationSetsResult& AddConfigurationSets(ConfigurationSet&& value) { m_configurationSets.push_back(std::move(value)); return *this; }
59
61
66 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
67 inline void SetNextToken(const Aws::String& value) { m_nextToken = value; }
68 inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); }
69 inline void SetNextToken(const char* value) { m_nextToken.assign(value); }
70 inline ListConfigurationSetsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
71 inline ListConfigurationSetsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
72 inline ListConfigurationSetsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;}
74
76
77 inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
78 inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
79 inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
81 inline ListConfigurationSetsResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;}
83 private:
84
85 Aws::Vector<ConfigurationSet> m_configurationSets;
86
87 Aws::String m_nextToken;
88
89 ResponseMetadata m_responseMetadata;
90 };
91
92} // namespace Model
93} // namespace SES
94} // namespace Aws
void SetConfigurationSets(Aws::Vector< ConfigurationSet > &&value)
ListConfigurationSetsResult & AddConfigurationSets(ConfigurationSet &&value)
ListConfigurationSetsResult & WithNextToken(const Aws::String &value)
ListConfigurationSetsResult & WithNextToken(const char *value)
AWS_SES_API ListConfigurationSetsResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
void SetConfigurationSets(const Aws::Vector< ConfigurationSet > &value)
ListConfigurationSetsResult & WithResponseMetadata(ResponseMetadata &&value)
AWS_SES_API ListConfigurationSetsResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
ListConfigurationSetsResult & WithNextToken(Aws::String &&value)
ListConfigurationSetsResult & WithConfigurationSets(Aws::Vector< ConfigurationSet > &&value)
ListConfigurationSetsResult & WithResponseMetadata(const ResponseMetadata &value)
ListConfigurationSetsResult & AddConfigurationSets(const ConfigurationSet &value)
const Aws::Vector< ConfigurationSet > & GetConfigurationSets() const
ListConfigurationSetsResult & WithConfigurationSets(const Aws::Vector< ConfigurationSet > &value)
void SetResponseMetadata(const ResponseMetadata &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