AWS SDK for C++

AWS SDK for C++ Version 1.11.743

Loading...
Searching...
No Matches
NetworkInterfaceCountRequest.h
1
6#pragma once
7#include <aws/autoscaling/AutoScaling_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
9
10namespace Aws {
11namespace Utils {
12namespace Xml {
13class XmlNode;
14} // namespace Xml
15} // namespace Utils
16namespace AutoScaling {
17namespace Model {
18
28 public:
29 AWS_AUTOSCALING_API NetworkInterfaceCountRequest() = default;
30 AWS_AUTOSCALING_API NetworkInterfaceCountRequest(const Aws::Utils::Xml::XmlNode& xmlNode);
32
33 AWS_AUTOSCALING_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
34 AWS_AUTOSCALING_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
35
37
40 inline int GetMin() const { return m_min; }
41 inline bool MinHasBeenSet() const { return m_minHasBeenSet; }
42 inline void SetMin(int value) {
43 m_minHasBeenSet = true;
44 m_min = value;
45 }
47 SetMin(value);
48 return *this;
49 }
51
53
56 inline int GetMax() const { return m_max; }
57 inline bool MaxHasBeenSet() const { return m_maxHasBeenSet; }
58 inline void SetMax(int value) {
59 m_maxHasBeenSet = true;
60 m_max = value;
61 }
63 SetMax(value);
64 return *this;
65 }
67 private:
68 int m_min{0};
69
70 int m_max{0};
71 bool m_minHasBeenSet = false;
72 bool m_maxHasBeenSet = false;
73};
74
75} // namespace Model
76} // namespace AutoScaling
77} // namespace Aws
AWS_AUTOSCALING_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AWS_AUTOSCALING_API NetworkInterfaceCountRequest()=default
AWS_AUTOSCALING_API NetworkInterfaceCountRequest & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_AUTOSCALING_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
AWS_AUTOSCALING_API NetworkInterfaceCountRequest(const Aws::Utils::Xml::XmlNode &xmlNode)
std::basic_ostream< char, std::char_traits< char > > OStream