AWS SDK for C++

AWS SDK for C++ Version 1.11.767

Loading...
Searching...
No Matches
DeleteVerifiedEmailAddressRequest.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
25 public:
26 AWS_SES_API DeleteVerifiedEmailAddressRequest() = default;
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "DeleteVerifiedEmailAddress"; }
33
34 AWS_SES_API Aws::String SerializePayload() const override;
35
36 protected:
37 AWS_SES_API void DumpBodyToUrl(Aws::Http::URI& uri) const override;
38
39 public:
41
44 inline const Aws::String& GetEmailAddress() const { return m_emailAddress; }
45 inline bool EmailAddressHasBeenSet() const { return m_emailAddressHasBeenSet; }
46 template <typename EmailAddressT = Aws::String>
47 void SetEmailAddress(EmailAddressT&& value) {
48 m_emailAddressHasBeenSet = true;
49 m_emailAddress = std::forward<EmailAddressT>(value);
50 }
51 template <typename EmailAddressT = Aws::String>
53 SetEmailAddress(std::forward<EmailAddressT>(value));
54 return *this;
55 }
57 private:
58 Aws::String m_emailAddress;
59 bool m_emailAddressHasBeenSet = false;
60};
61
62} // namespace Model
63} // namespace SES
64} // namespace Aws
AWS_SES_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DeleteVerifiedEmailAddressRequest & WithEmailAddress(EmailAddressT &&value)
AWS_SES_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String