AWS SDK for C++

AWS SDK for C++ Version 1.11.767

Loading...
Searching...
No Matches
VerifyDomainIdentityRequest.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
27 public:
28 AWS_SES_API VerifyDomainIdentityRequest() = default;
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 "VerifyDomainIdentity"; }
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:
43
46 inline const Aws::String& GetDomain() const { return m_domain; }
47 inline bool DomainHasBeenSet() const { return m_domainHasBeenSet; }
48 template <typename DomainT = Aws::String>
49 void SetDomain(DomainT&& value) {
50 m_domainHasBeenSet = true;
51 m_domain = std::forward<DomainT>(value);
52 }
53 template <typename DomainT = Aws::String>
55 SetDomain(std::forward<DomainT>(value));
56 return *this;
57 }
59 private:
60 Aws::String m_domain;
61 bool m_domainHasBeenSet = false;
62};
63
64} // namespace Model
65} // namespace SES
66} // namespace Aws
AWS_SES_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
virtual const char * GetServiceRequestName() const override
VerifyDomainIdentityRequest & WithDomain(DomainT &&value)
AWS_SES_API Aws::String SerializePayload() const override
AWS_SES_API VerifyDomainIdentityRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String