Class: Aws::Lambda::Types::Concurrency
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::Concurrency
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#reserved_concurrent_executions ⇒ Integer
The number of concurrent executions that are reserved for this function.
Instance Attribute Details
#reserved_concurrent_executions ⇒ Integer
The number of concurrent executions that are reserved for this function. For more information, see [Managing Lambda reserved concurrency].
[1]: docs.aws.amazon.com/lambda/latest/dg/configuration-concurrency.html
502 503 504 505 506 |
# File 'lib/aws-sdk-lambda/types.rb', line 502 class Concurrency < Struct.new( :reserved_concurrent_executions) SENSITIVE = [] include Aws::Structure end |