/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include namespace Aws { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace SimpleDB { namespace Model { /** *

Too many predicates exist in the query expression.

See Also:

* AWS * API Reference

*/ class InvalidNumberPredicates { public: AWS_SIMPLEDB_API InvalidNumberPredicates(); AWS_SIMPLEDB_API InvalidNumberPredicates(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_SIMPLEDB_API InvalidNumberPredicates& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_SIMPLEDB_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_SIMPLEDB_API void OutputToStream(Aws::OStream& oStream, const char* location) const; inline double GetBoxUsage() const{ return m_boxUsage; } inline bool BoxUsageHasBeenSet() const { return m_boxUsageHasBeenSet; } inline void SetBoxUsage(double value) { m_boxUsageHasBeenSet = true; m_boxUsage = value; } inline InvalidNumberPredicates& WithBoxUsage(double value) { SetBoxUsage(value); return *this;} private: double m_boxUsage; bool m_boxUsageHasBeenSet = false; }; } // namespace Model } // namespace SimpleDB } // namespace Aws