AWS SDK for C++

AWS SDK for C++ Version 1.11.767

Loading...
Searching...
No Matches
EventDestinationAlreadyExistsException.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:
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
41 inline const Aws::String& GetConfigurationSetName() const { return m_configurationSetName; }
42 inline bool ConfigurationSetNameHasBeenSet() const { return m_configurationSetNameHasBeenSet; }
43 template <typename ConfigurationSetNameT = Aws::String>
44 void SetConfigurationSetName(ConfigurationSetNameT&& value) {
45 m_configurationSetNameHasBeenSet = true;
46 m_configurationSetName = std::forward<ConfigurationSetNameT>(value);
47 }
48 template <typename ConfigurationSetNameT = Aws::String>
50 SetConfigurationSetName(std::forward<ConfigurationSetNameT>(value));
51 return *this;
52 }
54
56
59 inline const Aws::String& GetEventDestinationName() const { return m_eventDestinationName; }
60 inline bool EventDestinationNameHasBeenSet() const { return m_eventDestinationNameHasBeenSet; }
61 template <typename EventDestinationNameT = Aws::String>
62 void SetEventDestinationName(EventDestinationNameT&& value) {
63 m_eventDestinationNameHasBeenSet = true;
64 m_eventDestinationName = std::forward<EventDestinationNameT>(value);
65 }
66 template <typename EventDestinationNameT = Aws::String>
68 SetEventDestinationName(std::forward<EventDestinationNameT>(value));
69 return *this;
70 }
72 private:
73 Aws::String m_configurationSetName;
74
75 Aws::String m_eventDestinationName;
76 bool m_configurationSetNameHasBeenSet = false;
77 bool m_eventDestinationNameHasBeenSet = false;
78};
79
80} // namespace Model
81} // namespace SES
82} // namespace Aws
EventDestinationAlreadyExistsException & WithEventDestinationName(EventDestinationNameT &&value)
AWS_SES_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AWS_SES_API EventDestinationAlreadyExistsException(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_SES_API EventDestinationAlreadyExistsException & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_SES_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
EventDestinationAlreadyExistsException & WithConfigurationSetName(ConfigurationSetNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream