AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ReusableDelegationSetLimit.h
1
6#pragma once
7#include <aws/route53/Route53_EXPORTS.h>
8#include <aws/route53/model/ReusableDelegationSetLimitType.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Xml
16{
17 class XmlNode;
18} // namespace Xml
19} // namespace Utils
20namespace Route53
21{
22namespace Model
23{
24
32 {
33 public:
34 AWS_ROUTE53_API ReusableDelegationSetLimit();
37
38 AWS_ROUTE53_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
39
40
42
47 inline const ReusableDelegationSetLimitType& GetType() const{ return m_type; }
48 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
49 inline void SetType(const ReusableDelegationSetLimitType& value) { m_typeHasBeenSet = true; m_type = value; }
50 inline void SetType(ReusableDelegationSetLimitType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); }
51 inline ReusableDelegationSetLimit& WithType(const ReusableDelegationSetLimitType& value) { SetType(value); return *this;}
52 inline ReusableDelegationSetLimit& WithType(ReusableDelegationSetLimitType&& value) { SetType(std::move(value)); return *this;}
54
56
60 inline long long GetValue() const{ return m_value; }
61 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
62 inline void SetValue(long long value) { m_valueHasBeenSet = true; m_value = value; }
63 inline ReusableDelegationSetLimit& WithValue(long long value) { SetValue(value); return *this;}
65 private:
66
68 bool m_typeHasBeenSet = false;
69
70 long long m_value;
71 bool m_valueHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace Route53
76} // namespace Aws
ReusableDelegationSetLimit & WithType(const ReusableDelegationSetLimitType &value)
AWS_ROUTE53_API ReusableDelegationSetLimit & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetType(ReusableDelegationSetLimitType &&value)
const ReusableDelegationSetLimitType & GetType() const
void SetType(const ReusableDelegationSetLimitType &value)
AWS_ROUTE53_API ReusableDelegationSetLimit(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_ROUTE53_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
ReusableDelegationSetLimit & WithValue(long long value)
ReusableDelegationSetLimit & WithType(ReusableDelegationSetLimitType &&value)