AWS SDK for C++

AWS SDK for C++ Version 1.11.767

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