AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
InvalidSNSDestinationException.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
34 {
35 public:
39
40 AWS_SES_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
41 AWS_SES_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
42
43
45
48 inline const Aws::String& GetConfigurationSetName() const{ return m_configurationSetName; }
49 inline bool ConfigurationSetNameHasBeenSet() const { return m_configurationSetNameHasBeenSet; }
50 inline void SetConfigurationSetName(const Aws::String& value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName = value; }
51 inline void SetConfigurationSetName(Aws::String&& value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName = std::move(value); }
52 inline void SetConfigurationSetName(const char* value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName.assign(value); }
55 inline InvalidSNSDestinationException& WithConfigurationSetName(const char* value) { SetConfigurationSetName(value); return *this;}
57
59
62 inline const Aws::String& GetEventDestinationName() const{ return m_eventDestinationName; }
63 inline bool EventDestinationNameHasBeenSet() const { return m_eventDestinationNameHasBeenSet; }
64 inline void SetEventDestinationName(const Aws::String& value) { m_eventDestinationNameHasBeenSet = true; m_eventDestinationName = value; }
65 inline void SetEventDestinationName(Aws::String&& value) { m_eventDestinationNameHasBeenSet = true; m_eventDestinationName = std::move(value); }
66 inline void SetEventDestinationName(const char* value) { m_eventDestinationNameHasBeenSet = true; m_eventDestinationName.assign(value); }
69 inline InvalidSNSDestinationException& WithEventDestinationName(const char* value) { SetEventDestinationName(value); return *this;}
71 private:
72
73 Aws::String m_configurationSetName;
74 bool m_configurationSetNameHasBeenSet = false;
75
76 Aws::String m_eventDestinationName;
77 bool m_eventDestinationNameHasBeenSet = false;
78 };
79
80} // namespace Model
81} // namespace SES
82} // namespace Aws
AWS_SES_API InvalidSNSDestinationException & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_SES_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AWS_SES_API InvalidSNSDestinationException(const Aws::Utils::Xml::XmlNode &xmlNode)
InvalidSNSDestinationException & WithEventDestinationName(const char *value)
InvalidSNSDestinationException & WithConfigurationSetName(Aws::String &&value)
InvalidSNSDestinationException & WithConfigurationSetName(const char *value)
AWS_SES_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
InvalidSNSDestinationException & WithConfigurationSetName(const Aws::String &value)
InvalidSNSDestinationException & WithEventDestinationName(Aws::String &&value)
InvalidSNSDestinationException & WithEventDestinationName(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