AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
InvalidSnsTopicException.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
36 {
37 public:
41
42 AWS_SES_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
43 AWS_SES_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
44
45
47
50 inline const Aws::String& GetTopic() const{ return m_topic; }
51 inline bool TopicHasBeenSet() const { return m_topicHasBeenSet; }
52 inline void SetTopic(const Aws::String& value) { m_topicHasBeenSet = true; m_topic = value; }
53 inline void SetTopic(Aws::String&& value) { m_topicHasBeenSet = true; m_topic = std::move(value); }
54 inline void SetTopic(const char* value) { m_topicHasBeenSet = true; m_topic.assign(value); }
55 inline InvalidSnsTopicException& WithTopic(const Aws::String& value) { SetTopic(value); return *this;}
56 inline InvalidSnsTopicException& WithTopic(Aws::String&& value) { SetTopic(std::move(value)); return *this;}
57 inline InvalidSnsTopicException& WithTopic(const char* value) { SetTopic(value); return *this;}
59 private:
60
61 Aws::String m_topic;
62 bool m_topicHasBeenSet = false;
63 };
64
65} // namespace Model
66} // namespace SES
67} // namespace Aws
InvalidSnsTopicException & WithTopic(Aws::String &&value)
AWS_SES_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
InvalidSnsTopicException & WithTopic(const Aws::String &value)
InvalidSnsTopicException & WithTopic(const char *value)
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