AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ConfigurationSet.h
1
6#pragma once
7#include <aws/email/SES_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Xml
17{
18 class XmlNode;
19} // namespace Xml
20} // namespace Utils
21namespace SES
22{
23namespace Model
24{
25
38 {
39 public:
40 AWS_SES_API ConfigurationSet();
41 AWS_SES_API ConfigurationSet(const Aws::Utils::Xml::XmlNode& xmlNode);
43
44 AWS_SES_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
45 AWS_SES_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
46
47
49
55 inline const Aws::String& GetName() const{ return m_name; }
56 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
57 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
58 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
59 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
60 inline ConfigurationSet& WithName(const Aws::String& value) { SetName(value); return *this;}
61 inline ConfigurationSet& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
62 inline ConfigurationSet& WithName(const char* value) { SetName(value); return *this;}
64 private:
65
66 Aws::String m_name;
67 bool m_nameHasBeenSet = false;
68 };
69
70} // namespace Model
71} // namespace SES
72} // namespace Aws
ConfigurationSet & WithName(const Aws::String &value)
AWS_SES_API ConfigurationSet(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_SES_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
AWS_SES_API void OutputToStream(Aws::OStream &oStream, const char *location) const
void SetName(const Aws::String &value)
ConfigurationSet & WithName(const char *value)
const Aws::String & GetName() const
ConfigurationSet & WithName(Aws::String &&value)
void SetName(Aws::String &&value)
void SetName(const char *value)
AWS_SES_API ConfigurationSet & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream