AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
InvalidParameterValue.h
1
6#pragma once
7#include <aws/sdb/SimpleDB_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 SimpleDB
20{
21namespace Model
22{
23
30 {
31 public:
32 AWS_SIMPLEDB_API InvalidParameterValue();
33 AWS_SIMPLEDB_API InvalidParameterValue(const Aws::Utils::Xml::XmlNode& xmlNode);
34 AWS_SIMPLEDB_API InvalidParameterValue& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
35
36 AWS_SIMPLEDB_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
37 AWS_SIMPLEDB_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
38
39
41
42 inline double GetBoxUsage() const{ return m_boxUsage; }
43 inline bool BoxUsageHasBeenSet() const { return m_boxUsageHasBeenSet; }
44 inline void SetBoxUsage(double value) { m_boxUsageHasBeenSet = true; m_boxUsage = value; }
45 inline InvalidParameterValue& WithBoxUsage(double value) { SetBoxUsage(value); return *this;}
47 private:
48
49 double m_boxUsage;
50 bool m_boxUsageHasBeenSet = false;
51 };
52
53} // namespace Model
54} // namespace SimpleDB
55} // namespace Aws
AWS_SIMPLEDB_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AWS_SIMPLEDB_API InvalidParameterValue & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
InvalidParameterValue & WithBoxUsage(double value)
AWS_SIMPLEDB_API InvalidParameterValue(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_SIMPLEDB_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
std::basic_ostream< char, std::char_traits< char > > OStream