AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetReusableDelegationSetLimitRequest.h
1
6#pragma once
7#include <aws/route53/Route53_EXPORTS.h>
8#include <aws/route53/Route53Request.h>
9#include <aws/route53/model/ReusableDelegationSetLimitType.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Route53
16{
17namespace Model
18{
19
27 {
28 public:
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "GetReusableDelegationSetLimit"; }
36
37 AWS_ROUTE53_API Aws::String SerializePayload() const override;
38
39
41
46 inline const ReusableDelegationSetLimitType& GetType() const{ return m_type; }
47 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
48 inline void SetType(const ReusableDelegationSetLimitType& value) { m_typeHasBeenSet = true; m_type = value; }
49 inline void SetType(ReusableDelegationSetLimitType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); }
51 inline GetReusableDelegationSetLimitRequest& WithType(ReusableDelegationSetLimitType&& value) { SetType(std::move(value)); return *this;}
53
55
58 inline const Aws::String& GetDelegationSetId() const{ return m_delegationSetId; }
59 inline bool DelegationSetIdHasBeenSet() const { return m_delegationSetIdHasBeenSet; }
60 inline void SetDelegationSetId(const Aws::String& value) { m_delegationSetIdHasBeenSet = true; m_delegationSetId = value; }
61 inline void SetDelegationSetId(Aws::String&& value) { m_delegationSetIdHasBeenSet = true; m_delegationSetId = std::move(value); }
62 inline void SetDelegationSetId(const char* value) { m_delegationSetIdHasBeenSet = true; m_delegationSetId.assign(value); }
65 inline GetReusableDelegationSetLimitRequest& WithDelegationSetId(const char* value) { SetDelegationSetId(value); return *this;}
67 private:
68
70 bool m_typeHasBeenSet = false;
71
72 Aws::String m_delegationSetId;
73 bool m_delegationSetIdHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace Route53
78} // namespace Aws
GetReusableDelegationSetLimitRequest & WithType(ReusableDelegationSetLimitType &&value)
AWS_ROUTE53_API Aws::String SerializePayload() const override
GetReusableDelegationSetLimitRequest & WithDelegationSetId(const Aws::String &value)
GetReusableDelegationSetLimitRequest & WithDelegationSetId(Aws::String &&value)
GetReusableDelegationSetLimitRequest & WithDelegationSetId(const char *value)
GetReusableDelegationSetLimitRequest & WithType(const ReusableDelegationSetLimitType &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String