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/sesv2/SESV2_EXPORTS.h>
8#include <aws/sesv2/SESV2Request.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace SESV2
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_SESV2_API Aws::String SerializePayload() const override;
37
38
40
43 inline const Aws::String& GetEmailAddress() const{ return m_emailAddress; }
44 inline bool EmailAddressHasBeenSet() const { return m_emailAddressHasBeenSet; }
45 inline void SetEmailAddress(const Aws::String& value) { m_emailAddressHasBeenSet = true; m_emailAddress = value; }
46 inline void SetEmailAddress(Aws::String&& value) { m_emailAddressHasBeenSet = true; m_emailAddress = std::move(value); }
47 inline void SetEmailAddress(const char* value) { m_emailAddressHasBeenSet = true; m_emailAddress.assign(value); }
49 inline SendCustomVerificationEmailRequest& WithEmailAddress(Aws::String&& value) { SetEmailAddress(std::move(value)); return *this;}
50 inline SendCustomVerificationEmailRequest& WithEmailAddress(const char* value) { SetEmailAddress(value); return *this;}
52
54
58 inline const Aws::String& GetTemplateName() const{ return m_templateName; }
59 inline bool TemplateNameHasBeenSet() const { return m_templateNameHasBeenSet; }
60 inline void SetTemplateName(const Aws::String& value) { m_templateNameHasBeenSet = true; m_templateName = value; }
61 inline void SetTemplateName(Aws::String&& value) { m_templateNameHasBeenSet = true; m_templateName = std::move(value); }
62 inline void SetTemplateName(const char* value) { m_templateNameHasBeenSet = true; m_templateName.assign(value); }
64 inline SendCustomVerificationEmailRequest& WithTemplateName(Aws::String&& value) { SetTemplateName(std::move(value)); return *this;}
65 inline SendCustomVerificationEmailRequest& WithTemplateName(const char* value) { SetTemplateName(value); return *this;}
67
69
72 inline const Aws::String& GetConfigurationSetName() const{ return m_configurationSetName; }
73 inline bool ConfigurationSetNameHasBeenSet() const { return m_configurationSetNameHasBeenSet; }
74 inline void SetConfigurationSetName(const Aws::String& value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName = value; }
75 inline void SetConfigurationSetName(Aws::String&& value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName = std::move(value); }
76 inline void SetConfigurationSetName(const char* value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName.assign(value); }
81 private:
82
83 Aws::String m_emailAddress;
84 bool m_emailAddressHasBeenSet = false;
85
86 Aws::String m_templateName;
87 bool m_templateNameHasBeenSet = false;
88
89 Aws::String m_configurationSetName;
90 bool m_configurationSetNameHasBeenSet = false;
91 };
92
93} // namespace Model
94} // namespace SESV2
95} // namespace Aws
SendCustomVerificationEmailRequest & WithEmailAddress(const char *value)
SendCustomVerificationEmailRequest & WithConfigurationSetName(const Aws::String &value)
SendCustomVerificationEmailRequest & WithConfigurationSetName(Aws::String &&value)
SendCustomVerificationEmailRequest & WithTemplateName(const Aws::String &value)
SendCustomVerificationEmailRequest & WithTemplateName(Aws::String &&value)
SendCustomVerificationEmailRequest & WithEmailAddress(Aws::String &&value)
SendCustomVerificationEmailRequest & WithEmailAddress(const Aws::String &value)
SendCustomVerificationEmailRequest & WithConfigurationSetName(const char *value)
AWS_SESV2_API Aws::String SerializePayload() const override
SendCustomVerificationEmailRequest & WithTemplateName(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String