AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
SendCustomVerificationEmailRequest.h
1
6#pragma once
7#include <aws/email/SES_EXPORTS.h>
8#include <aws/email/SESRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace SES
15{
16namespace Model
17{
18
26 {
27 public:
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "SendCustomVerificationEmail"; }
35
36 AWS_SES_API Aws::String SerializePayload() const override;
37
38 protected:
39 AWS_SES_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
40
41 public:
42
44
47 inline const Aws::String& GetEmailAddress() const{ return m_emailAddress; }
48 inline bool EmailAddressHasBeenSet() const { return m_emailAddressHasBeenSet; }
49 inline void SetEmailAddress(const Aws::String& value) { m_emailAddressHasBeenSet = true; m_emailAddress = value; }
50 inline void SetEmailAddress(Aws::String&& value) { m_emailAddressHasBeenSet = true; m_emailAddress = std::move(value); }
51 inline void SetEmailAddress(const char* value) { m_emailAddressHasBeenSet = true; m_emailAddress.assign(value); }
53 inline SendCustomVerificationEmailRequest& WithEmailAddress(Aws::String&& value) { SetEmailAddress(std::move(value)); return *this;}
54 inline SendCustomVerificationEmailRequest& WithEmailAddress(const char* value) { SetEmailAddress(value); return *this;}
56
58
62 inline const Aws::String& GetTemplateName() const{ return m_templateName; }
63 inline bool TemplateNameHasBeenSet() const { return m_templateNameHasBeenSet; }
64 inline void SetTemplateName(const Aws::String& value) { m_templateNameHasBeenSet = true; m_templateName = value; }
65 inline void SetTemplateName(Aws::String&& value) { m_templateNameHasBeenSet = true; m_templateName = std::move(value); }
66 inline void SetTemplateName(const char* value) { m_templateNameHasBeenSet = true; m_templateName.assign(value); }
68 inline SendCustomVerificationEmailRequest& WithTemplateName(Aws::String&& value) { SetTemplateName(std::move(value)); return *this;}
69 inline SendCustomVerificationEmailRequest& WithTemplateName(const char* value) { SetTemplateName(value); return *this;}
71
73
76 inline const Aws::String& GetConfigurationSetName() const{ return m_configurationSetName; }
77 inline bool ConfigurationSetNameHasBeenSet() const { return m_configurationSetNameHasBeenSet; }
78 inline void SetConfigurationSetName(const Aws::String& value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName = value; }
79 inline void SetConfigurationSetName(Aws::String&& value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName = std::move(value); }
80 inline void SetConfigurationSetName(const char* value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName.assign(value); }
85 private:
86
87 Aws::String m_emailAddress;
88 bool m_emailAddressHasBeenSet = false;
89
90 Aws::String m_templateName;
91 bool m_templateNameHasBeenSet = false;
92
93 Aws::String m_configurationSetName;
94 bool m_configurationSetNameHasBeenSet = false;
95 };
96
97} // namespace Model
98} // namespace SES
99} // namespace Aws
SendCustomVerificationEmailRequest & WithConfigurationSetName(const Aws::String &value)
SendCustomVerificationEmailRequest & WithConfigurationSetName(const char *value)
SendCustomVerificationEmailRequest & WithTemplateName(Aws::String &&value)
AWS_SES_API Aws::String SerializePayload() const override
SendCustomVerificationEmailRequest & WithTemplateName(const Aws::String &value)
AWS_SES_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
SendCustomVerificationEmailRequest & WithEmailAddress(const Aws::String &value)
SendCustomVerificationEmailRequest & WithTemplateName(const char *value)
SendCustomVerificationEmailRequest & WithEmailAddress(Aws::String &&value)
SendCustomVerificationEmailRequest & WithEmailAddress(const char *value)
SendCustomVerificationEmailRequest & WithConfigurationSetName(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String