/** * 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 Lambda { namespace Model { class AWS_LAMBDA_API GetFunctionConcurrencyResult { public: GetFunctionConcurrencyResult(); GetFunctionConcurrencyResult(const Aws::AmazonWebServiceResult& result); GetFunctionConcurrencyResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The number of simultaneous executions that are reserved for the function.

*/ inline int GetReservedConcurrentExecutions() const{ return m_reservedConcurrentExecutions; } /** *

The number of simultaneous executions that are reserved for the function.

*/ inline void SetReservedConcurrentExecutions(int value) { m_reservedConcurrentExecutions = value; } /** *

The number of simultaneous executions that are reserved for the function.

*/ inline GetFunctionConcurrencyResult& WithReservedConcurrentExecutions(int value) { SetReservedConcurrentExecutions(value); return *this;} private: int m_reservedConcurrentExecutions; }; } // namespace Model } // namespace Lambda } // namespace Aws