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-wafv2/include/aws/wafv2/model/CheckCapacityResult.h

56 lines
1.2 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/wafv2/WAFV2_EXPORTS.h>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace WAFV2
{
namespace Model
{
class AWS_WAFV2_API CheckCapacityResult
{
public:
CheckCapacityResult();
CheckCapacityResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CheckCapacityResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The capacity required by the rules and scope.</p>
*/
inline long long GetCapacity() const{ return m_capacity; }
/**
* <p>The capacity required by the rules and scope.</p>
*/
inline void SetCapacity(long long value) { m_capacity = value; }
/**
* <p>The capacity required by the rules and scope.</p>
*/
inline CheckCapacityResult& WithCapacity(long long value) { SetCapacity(value); return *this;}
private:
long long m_capacity;
};
} // namespace Model
} // namespace WAFV2
} // namespace Aws