AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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:
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 inline void SetCallerReference(const Aws::String& value) { m_callerReferenceHasBeenSet = true; m_callerReference = value; }
47 inline void SetCallerReference(Aws::String&& value) { m_callerReferenceHasBeenSet = true; m_callerReference = std::move(value); }
48 inline void SetCallerReference(const char* value) { m_callerReferenceHasBeenSet = true; m_callerReference.assign(value); }
50 inline CreateReusableDelegationSetRequest& WithCallerReference(Aws::String&& value) { SetCallerReference(std::move(value)); return *this;}
51 inline CreateReusableDelegationSetRequest& WithCallerReference(const char* value) { SetCallerReference(value); return *this;}
53
55
59 inline const Aws::String& GetHostedZoneId() const{ return m_hostedZoneId; }
60 inline bool HostedZoneIdHasBeenSet() const { return m_hostedZoneIdHasBeenSet; }
61 inline void SetHostedZoneId(const Aws::String& value) { m_hostedZoneIdHasBeenSet = true; m_hostedZoneId = value; }
62 inline void SetHostedZoneId(Aws::String&& value) { m_hostedZoneIdHasBeenSet = true; m_hostedZoneId = std::move(value); }
63 inline void SetHostedZoneId(const char* value) { m_hostedZoneIdHasBeenSet = true; m_hostedZoneId.assign(value); }
65 inline CreateReusableDelegationSetRequest& WithHostedZoneId(Aws::String&& value) { SetHostedZoneId(std::move(value)); return *this;}
66 inline CreateReusableDelegationSetRequest& WithHostedZoneId(const char* value) { SetHostedZoneId(value); return *this;}
68 private:
69
70 Aws::String m_callerReference;
71 bool m_callerReferenceHasBeenSet = false;
72
73 Aws::String m_hostedZoneId;
74 bool m_hostedZoneIdHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace Route53
79} // namespace Aws
CreateReusableDelegationSetRequest & WithHostedZoneId(const char *value)
CreateReusableDelegationSetRequest & WithCallerReference(Aws::String &&value)
CreateReusableDelegationSetRequest & WithHostedZoneId(const Aws::String &value)
CreateReusableDelegationSetRequest & WithCallerReference(const char *value)
CreateReusableDelegationSetRequest & WithCallerReference(const Aws::String &value)
CreateReusableDelegationSetRequest & WithHostedZoneId(Aws::String &&value)
AWS_ROUTE53_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String