Class: Aws::Lambda::Types::ScalingConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::ScalingConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
(Amazon SQS only) The scaling configuration for the event source. To remove the configuration, pass an empty value.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#maximum_concurrency ⇒ Integer
Limits the number of concurrent instances that the Amazon SQS event source can invoke.
Instance Attribute Details
#maximum_concurrency ⇒ Integer
Limits the number of concurrent instances that the Amazon SQS event source can invoke.
5860 5861 5862 5863 5864 |
# File 'lib/aws-sdk-lambda/types.rb', line 5860 class ScalingConfig < Struct.new( :maximum_concurrency) SENSITIVE = [] include Aws::Structure end |