AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
FromEmailAddressNotVerifiedException.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
49 inline const Aws::String& GetFromEmailAddress() const{ return m_fromEmailAddress; }
50 inline bool FromEmailAddressHasBeenSet() const { return m_fromEmailAddressHasBeenSet; }
51 inline void SetFromEmailAddress(const Aws::String& value) { m_fromEmailAddressHasBeenSet = true; m_fromEmailAddress = value; }
52 inline void SetFromEmailAddress(Aws::String&& value) { m_fromEmailAddressHasBeenSet = true; m_fromEmailAddress = std::move(value); }
53 inline void SetFromEmailAddress(const char* value) { m_fromEmailAddressHasBeenSet = true; m_fromEmailAddress.assign(value); }
56 inline FromEmailAddressNotVerifiedException& WithFromEmailAddress(const char* value) { SetFromEmailAddress(value); return *this;}
58 private:
59
60 Aws::String m_fromEmailAddress;
61 bool m_fromEmailAddressHasBeenSet = false;
62 };
63
64} // namespace Model
65} // namespace SES
66} // namespace Aws
AWS_SES_API FromEmailAddressNotVerifiedException(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_SES_API FromEmailAddressNotVerifiedException & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
FromEmailAddressNotVerifiedException & WithFromEmailAddress(const Aws::String &value)
FromEmailAddressNotVerifiedException & WithFromEmailAddress(const char *value)
AWS_SES_API void OutputToStream(Aws::OStream &oStream, const char *location) const
FromEmailAddressNotVerifiedException & WithFromEmailAddress(Aws::String &&value)
AWS_SES_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream