AWS SDK for C++

AWS SDK for C++ Version 1.11.685

Loading...
Searching...
No Matches
CreateReusableDelegationSetRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/route53/Route53Request.h>
9#include <aws/route53/Route53_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Route53 {
15namespace Model {
16
20 public:
21 AWS_ROUTE53_API CreateReusableDelegationSetRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "CreateReusableDelegationSet"; }
28
29 AWS_ROUTE53_API Aws::String SerializePayload() const override;
30
32
40 inline const Aws::String& GetCallerReference() const { return m_callerReference; }
41 inline bool CallerReferenceHasBeenSet() const { return m_callerReferenceHasBeenSet; }
42 template <typename CallerReferenceT = Aws::String>
43 void SetCallerReference(CallerReferenceT&& value) {
44 m_callerReferenceHasBeenSet = true;
45 m_callerReference = std::forward<CallerReferenceT>(value);
46 }
47 template <typename CallerReferenceT = Aws::String>
49 SetCallerReference(std::forward<CallerReferenceT>(value));
50 return *this;
51 }
53
55
59 inline const Aws::String& GetHostedZoneId() const { return m_hostedZoneId; }
60 inline bool HostedZoneIdHasBeenSet() const { return m_hostedZoneIdHasBeenSet; }
61 template <typename HostedZoneIdT = Aws::String>
62 void SetHostedZoneId(HostedZoneIdT&& value) {
63 m_hostedZoneIdHasBeenSet = true;
64 m_hostedZoneId = std::forward<HostedZoneIdT>(value);
65 }
66 template <typename HostedZoneIdT = Aws::String>
68 SetHostedZoneId(std::forward<HostedZoneIdT>(value));
69 return *this;
70 }
72 private:
73 Aws::String m_callerReference;
74 bool m_callerReferenceHasBeenSet = false;
75
76 Aws::String m_hostedZoneId;
77 bool m_hostedZoneIdHasBeenSet = false;
78};
79
80} // namespace Model
81} // namespace Route53
82} // namespace Aws
CreateReusableDelegationSetRequest & WithHostedZoneId(HostedZoneIdT &&value)
AWS_ROUTE53_API Aws::String SerializePayload() const override
CreateReusableDelegationSetRequest & WithCallerReference(CallerReferenceT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String