AWS SDK for C++

AWS SDK for C++ Version 1.11.768

Loading...
Searching...
No Matches
TemplateDoesNotExistException.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/email/SES_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Xml {
16class XmlNode;
17} // namespace Xml
18} // namespace Utils
19namespace SES {
20namespace Model {
21
29 public:
30 AWS_SES_API TemplateDoesNotExistException() = default;
33
34 AWS_SES_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
35 AWS_SES_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
36
38
39 inline const Aws::String& GetTemplateName() const { return m_templateName; }
40 inline bool TemplateNameHasBeenSet() const { return m_templateNameHasBeenSet; }
41 template <typename TemplateNameT = Aws::String>
42 void SetTemplateName(TemplateNameT&& value) {
43 m_templateNameHasBeenSet = true;
44 m_templateName = std::forward<TemplateNameT>(value);
45 }
46 template <typename TemplateNameT = Aws::String>
48 SetTemplateName(std::forward<TemplateNameT>(value));
49 return *this;
50 }
52 private:
53 Aws::String m_templateName;
54 bool m_templateNameHasBeenSet = false;
55};
56
57} // namespace Model
58} // namespace SES
59} // namespace Aws
AWS_SES_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AWS_SES_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
AWS_SES_API TemplateDoesNotExistException(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_SES_API TemplateDoesNotExistException & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
TemplateDoesNotExistException & WithTemplateName(TemplateNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream