AWS SDK for C++

AWS SDK for C++ Version 1.11.750

Loading...
Searching...
No Matches
NoSuchDomain.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
8#include <aws/sdb/SimpleDB_EXPORTS.h>
9
10namespace Aws {
11namespace Utils {
12namespace Xml {
13class XmlNode;
14} // namespace Xml
15} // namespace Utils
16namespace SimpleDB {
17namespace Model {
18
25 public:
26 AWS_SIMPLEDB_API NoSuchDomain() = default;
27 AWS_SIMPLEDB_API NoSuchDomain(const Aws::Utils::Xml::XmlNode& xmlNode);
28 AWS_SIMPLEDB_API NoSuchDomain& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
29
30 AWS_SIMPLEDB_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
31 AWS_SIMPLEDB_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
32
34
35 inline double GetBoxUsage() const { return m_boxUsage; }
36 inline bool BoxUsageHasBeenSet() const { return m_boxUsageHasBeenSet; }
37 inline void SetBoxUsage(double value) {
38 m_boxUsageHasBeenSet = true;
39 m_boxUsage = value;
40 }
41 inline NoSuchDomain& WithBoxUsage(double value) {
42 SetBoxUsage(value);
43 return *this;
44 }
46 private:
47 double m_boxUsage{0.0};
48 bool m_boxUsageHasBeenSet = false;
49};
50
51} // namespace Model
52} // namespace SimpleDB
53} // namespace Aws
NoSuchDomain & WithBoxUsage(double value)
AWS_SIMPLEDB_API NoSuchDomain & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_SIMPLEDB_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AWS_SIMPLEDB_API NoSuchDomain()=default
AWS_SIMPLEDB_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
AWS_SIMPLEDB_API NoSuchDomain(const Aws::Utils::Xml::XmlNode &xmlNode)
std::basic_ostream< char, std::char_traits< char > > OStream