AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
MissingRenderingAttributeException.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
35 {
36 public:
40
41 AWS_SES_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
42 AWS_SES_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
43
44
46
47 inline const Aws::String& GetTemplateName() const{ return m_templateName; }
48 inline bool TemplateNameHasBeenSet() const { return m_templateNameHasBeenSet; }
49 inline void SetTemplateName(const Aws::String& value) { m_templateNameHasBeenSet = true; m_templateName = value; }
50 inline void SetTemplateName(Aws::String&& value) { m_templateNameHasBeenSet = true; m_templateName = std::move(value); }
51 inline void SetTemplateName(const char* value) { m_templateNameHasBeenSet = true; m_templateName.assign(value); }
53 inline MissingRenderingAttributeException& WithTemplateName(Aws::String&& value) { SetTemplateName(std::move(value)); return *this;}
54 inline MissingRenderingAttributeException& WithTemplateName(const char* value) { SetTemplateName(value); return *this;}
56 private:
57
58 Aws::String m_templateName;
59 bool m_templateNameHasBeenSet = false;
60 };
61
62} // namespace Model
63} // namespace SES
64} // namespace Aws
AWS_SES_API MissingRenderingAttributeException & operator=(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 MissingRenderingAttributeException(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_SES_API void OutputToStream(Aws::OStream &oStream, const char *location) const
MissingRenderingAttributeException & WithTemplateName(Aws::String &&value)
MissingRenderingAttributeException & WithTemplateName(const char *value)
MissingRenderingAttributeException & WithTemplateName(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream