AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
AssociateDelegationSignerToDomainRequest.h
1
6#pragma once
7#include <aws/route53domains/Route53Domains_EXPORTS.h>
8#include <aws/route53domains/Route53DomainsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/route53domains/model/DnssecSigningAttributes.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Route53Domains
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_ROUTE53DOMAINS_API AssociateDelegationSignerToDomainRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "AssociateDelegationSignerToDomain"; }
32
33 AWS_ROUTE53DOMAINS_API Aws::String SerializePayload() const override;
34
35 AWS_ROUTE53DOMAINS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
36
37
39
42 inline const Aws::String& GetDomainName() const { return m_domainName; }
43 inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; }
44 template<typename DomainNameT = Aws::String>
45 void SetDomainName(DomainNameT&& value) { m_domainNameHasBeenSet = true; m_domainName = std::forward<DomainNameT>(value); }
46 template<typename DomainNameT = Aws::String>
47 AssociateDelegationSignerToDomainRequest& WithDomainName(DomainNameT&& value) { SetDomainName(std::forward<DomainNameT>(value)); return *this;}
49
51
55 inline const DnssecSigningAttributes& GetSigningAttributes() const { return m_signingAttributes; }
56 inline bool SigningAttributesHasBeenSet() const { return m_signingAttributesHasBeenSet; }
57 template<typename SigningAttributesT = DnssecSigningAttributes>
58 void SetSigningAttributes(SigningAttributesT&& value) { m_signingAttributesHasBeenSet = true; m_signingAttributes = std::forward<SigningAttributesT>(value); }
59 template<typename SigningAttributesT = DnssecSigningAttributes>
60 AssociateDelegationSignerToDomainRequest& WithSigningAttributes(SigningAttributesT&& value) { SetSigningAttributes(std::forward<SigningAttributesT>(value)); return *this;}
62 private:
63
64 Aws::String m_domainName;
65 bool m_domainNameHasBeenSet = false;
66
67 DnssecSigningAttributes m_signingAttributes;
68 bool m_signingAttributesHasBeenSet = false;
69 };
70
71} // namespace Model
72} // namespace Route53Domains
73} // namespace Aws
AWS_ROUTE53DOMAINS_API Aws::String SerializePayload() const override
AssociateDelegationSignerToDomainRequest & WithDomainName(DomainNameT &&value)
AssociateDelegationSignerToDomainRequest & WithSigningAttributes(SigningAttributesT &&value)
AWS_ROUTE53DOMAINS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String