AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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