AWS SDK for C++

AWS SDK for C++ Version 1.11.637

Loading...
Searching...
No Matches
ServerlessV2FeaturesSupport.h
1
6#pragma once
7#include <aws/docdb/DocDB_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
9
10namespace Aws
11{
12namespace Utils
13{
14namespace Xml
15{
16 class XmlNode;
17} // namespace Xml
18} // namespace Utils
19namespace DocDB
20{
21namespace Model
22{
23
35 {
36 public:
37 AWS_DOCDB_API ServerlessV2FeaturesSupport() = default;
40
41 AWS_DOCDB_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
42 AWS_DOCDB_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
43
44
46
51 inline double GetMinCapacity() const { return m_minCapacity; }
52 inline bool MinCapacityHasBeenSet() const { return m_minCapacityHasBeenSet; }
53 inline void SetMinCapacity(double value) { m_minCapacityHasBeenSet = true; m_minCapacity = value; }
54 inline ServerlessV2FeaturesSupport& WithMinCapacity(double value) { SetMinCapacity(value); return *this;}
56
58
63 inline double GetMaxCapacity() const { return m_maxCapacity; }
64 inline bool MaxCapacityHasBeenSet() const { return m_maxCapacityHasBeenSet; }
65 inline void SetMaxCapacity(double value) { m_maxCapacityHasBeenSet = true; m_maxCapacity = value; }
66 inline ServerlessV2FeaturesSupport& WithMaxCapacity(double value) { SetMaxCapacity(value); return *this;}
68 private:
69
70 double m_minCapacity{0.0};
71 bool m_minCapacityHasBeenSet = false;
72
73 double m_maxCapacity{0.0};
74 bool m_maxCapacityHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace DocDB
79} // namespace Aws
AWS_DOCDB_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AWS_DOCDB_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
AWS_DOCDB_API ServerlessV2FeaturesSupport()=default
ServerlessV2FeaturesSupport & WithMaxCapacity(double value)
ServerlessV2FeaturesSupport & WithMinCapacity(double value)
AWS_DOCDB_API ServerlessV2FeaturesSupport & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_DOCDB_API ServerlessV2FeaturesSupport(const Aws::Utils::Xml::XmlNode &xmlNode)
std::basic_ostream< char, std::char_traits< char > > OStream