ScalingConfig — AWS SDK for Ruby V3 (original) (raw)
Class: Aws::Lambda::Types::ScalingConfig
Inherits:
Struct
- Object
- Struct
- Aws::Lambda::Types::ScalingConfig show all
Defined in:
gems/aws-sdk-lambda/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 Summarycollapse
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.
5977 5978 5979 5980 5981 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 5977 class ScalingConfig < Struct.new( :maximum_concurrency) SENSITIVE = [] include Aws::Structure end |
---|