AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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:
29 AWS_ROUTE53_API GetReusableDelegationSetLimitRequest() = default;
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 ReusableDelegationSetLimitType GetType() const { return m_type; }
47 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
48 inline void SetType(ReusableDelegationSetLimitType value) { m_typeHasBeenSet = true; m_type = value; }
51
53
56 inline const Aws::String& GetDelegationSetId() const { return m_delegationSetId; }
57 inline bool DelegationSetIdHasBeenSet() const { return m_delegationSetIdHasBeenSet; }
58 template<typename DelegationSetIdT = Aws::String>
59 void SetDelegationSetId(DelegationSetIdT&& value) { m_delegationSetIdHasBeenSet = true; m_delegationSetId = std::forward<DelegationSetIdT>(value); }
60 template<typename DelegationSetIdT = Aws::String>
61 GetReusableDelegationSetLimitRequest& WithDelegationSetId(DelegationSetIdT&& value) { SetDelegationSetId(std::forward<DelegationSetIdT>(value)); return *this;}
63 private:
64
66 bool m_typeHasBeenSet = false;
67
68 Aws::String m_delegationSetId;
69 bool m_delegationSetIdHasBeenSet = false;
70 };
71
72} // namespace Model
73} // namespace Route53
74} // namespace Aws
GetReusableDelegationSetLimitRequest & WithDelegationSetId(DelegationSetIdT &&value)
AWS_ROUTE53_API Aws::String SerializePayload() const override
GetReusableDelegationSetLimitRequest & WithType(ReusableDelegationSetLimitType value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String