AWS SDK for C++

AWS SDK for C++ Version 1.11.767

Loading...
Searching...
No Matches
VerifyEmailIdentityRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/email/SESRequest.h>
9#include <aws/email/SES_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace SES {
15namespace Model {
16
26 public:
27 AWS_SES_API VerifyEmailIdentityRequest() = default;
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "VerifyEmailIdentity"; }
34
35 AWS_SES_API Aws::String SerializePayload() const override;
36
37 protected:
38 AWS_SES_API void DumpBodyToUrl(Aws::Http::URI& uri) const override;
39
40 public:
42
45 inline const Aws::String& GetEmailAddress() const { return m_emailAddress; }
46 inline bool EmailAddressHasBeenSet() const { return m_emailAddressHasBeenSet; }
47 template <typename EmailAddressT = Aws::String>
48 void SetEmailAddress(EmailAddressT&& value) {
49 m_emailAddressHasBeenSet = true;
50 m_emailAddress = std::forward<EmailAddressT>(value);
51 }
52 template <typename EmailAddressT = Aws::String>
54 SetEmailAddress(std::forward<EmailAddressT>(value));
55 return *this;
56 }
58 private:
59 Aws::String m_emailAddress;
60 bool m_emailAddressHasBeenSet = false;
61};
62
63} // namespace Model
64} // namespace SES
65} // namespace Aws
AWS_SES_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
virtual const char * GetServiceRequestName() const override
AWS_SES_API VerifyEmailIdentityRequest()=default
AWS_SES_API Aws::String SerializePayload() const override
VerifyEmailIdentityRequest & WithEmailAddress(EmailAddressT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String