This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-sdb/include/aws/sdb/model/TooManyRequestedAttributes.h

61 lines
1.5 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/sdb/SimpleDB_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace SimpleDB
{
namespace Model
{
/**
* <p>Too many attributes requested.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/sdb-2009-04-15/TooManyRequestedAttributes">AWS
* API Reference</a></p>
*/
class AWS_SIMPLEDB_API TooManyRequestedAttributes
{
public:
TooManyRequestedAttributes();
TooManyRequestedAttributes(const Aws::Utils::Xml::XmlNode& xmlNode);
TooManyRequestedAttributes& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
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 TooManyRequestedAttributes& WithBoxUsage(double value) { SetBoxUsage(value); return *this;}
private:
double m_boxUsage;
bool m_boxUsageHasBeenSet;
};
} // namespace Model
} // namespace SimpleDB
} // namespace Aws