AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
HostedZoneLimit.h
1
6#pragma once
7#include <aws/route53/Route53_EXPORTS.h>
8#include <aws/route53/model/HostedZoneLimitType.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 HostedZoneLimit();
35 AWS_ROUTE53_API HostedZoneLimit(const Aws::Utils::Xml::XmlNode& xmlNode);
36 AWS_ROUTE53_API HostedZoneLimit& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
37
38 AWS_ROUTE53_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
39
40
42
49 inline const HostedZoneLimitType& GetType() const{ return m_type; }
50 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
51 inline void SetType(const HostedZoneLimitType& value) { m_typeHasBeenSet = true; m_type = value; }
52 inline void SetType(HostedZoneLimitType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); }
53 inline HostedZoneLimit& WithType(const HostedZoneLimitType& value) { SetType(value); return *this;}
54 inline HostedZoneLimit& WithType(HostedZoneLimitType&& value) { SetType(std::move(value)); return *this;}
56
58
61 inline long long GetValue() const{ return m_value; }
62 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
63 inline void SetValue(long long value) { m_valueHasBeenSet = true; m_value = value; }
64 inline HostedZoneLimit& WithValue(long long value) { SetValue(value); return *this;}
66 private:
67
69 bool m_typeHasBeenSet = false;
70
71 long long m_value;
72 bool m_valueHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace Route53
77} // namespace Aws
HostedZoneLimit & WithType(HostedZoneLimitType &&value)
HostedZoneLimit & WithValue(long long value)
AWS_ROUTE53_API HostedZoneLimit & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetType(const HostedZoneLimitType &value)
AWS_ROUTE53_API HostedZoneLimit(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_ROUTE53_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
HostedZoneLimit & WithType(const HostedZoneLimitType &value)
void SetType(HostedZoneLimitType &&value)
const HostedZoneLimitType & GetType() const