/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include (Amazon SQS only) The scaling configuration for the event source. To remove
* the configuration, pass an empty value.See Also:
AWS
* API Reference
Limits the number of concurrent instances that the Amazon SQS event source * can invoke.
*/ inline int GetMaximumConcurrency() const{ return m_maximumConcurrency; } /** *Limits the number of concurrent instances that the Amazon SQS event source * can invoke.
*/ inline bool MaximumConcurrencyHasBeenSet() const { return m_maximumConcurrencyHasBeenSet; } /** *Limits the number of concurrent instances that the Amazon SQS event source * can invoke.
*/ inline void SetMaximumConcurrency(int value) { m_maximumConcurrencyHasBeenSet = true; m_maximumConcurrency = value; } /** *Limits the number of concurrent instances that the Amazon SQS event source * can invoke.
*/ inline ScalingConfig& WithMaximumConcurrency(int value) { SetMaximumConcurrency(value); return *this;} private: int m_maximumConcurrency; bool m_maximumConcurrencyHasBeenSet = false; }; } // namespace Model } // namespace Lambda } // namespace Aws