/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { template 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& result); CheckCapacityResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The capacity required by the rules and scope.

*/ inline long long GetCapacity() const{ return m_capacity; } /** *

The capacity required by the rules and scope.

*/ inline void SetCapacity(long long value) { m_capacity = value; } /** *

The capacity required by the rules and scope.

*/ inline CheckCapacityResult& WithCapacity(long long value) { SetCapacity(value); return *this;} private: long long m_capacity; }; } // namespace Model } // namespace WAFV2 } // namespace Aws