AWS SDK for C++

AWS SDK for C++ Version 1.11.766

Loading...
Searching...
No Matches
InvalidSnsTopicException.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
32 public:
33 AWS_SES_API InvalidSnsTopicException() = default;
36
37 AWS_SES_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
38 AWS_SES_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
39
41
44 inline const Aws::String& GetTopic() const { return m_topic; }
45 inline bool TopicHasBeenSet() const { return m_topicHasBeenSet; }
46 template <typename TopicT = Aws::String>
47 void SetTopic(TopicT&& value) {
48 m_topicHasBeenSet = true;
49 m_topic = std::forward<TopicT>(value);
50 }
51 template <typename TopicT = Aws::String>
53 SetTopic(std::forward<TopicT>(value));
54 return *this;
55 }
57 private:
58 Aws::String m_topic;
59 bool m_topicHasBeenSet = false;
60};
61
62} // namespace Model
63} // namespace SES
64} // namespace Aws
AWS_SES_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
InvalidSnsTopicException & WithTopic(TopicT &&value)
AWS_SES_API InvalidSnsTopicException()=default
AWS_SES_API InvalidSnsTopicException & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_SES_API InvalidSnsTopicException(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_SES_API void OutputToStream(Aws::OStream &oStream, const char *location) const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream