Class: Aws::Lambda::Types::FunctionScalingConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::FunctionScalingConfig
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Configuration that defines the scaling behavior for a Lambda Managed Instances function, including the minimum and maximum number of execution environments that can be provisioned.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_execution_environments ⇒ Integer
The maximum number of execution environments that can be provisioned for the function.
-
#min_execution_environments ⇒ Integer
The minimum number of execution environments to maintain for the function.
Instance Attribute Details
#max_execution_environments ⇒ Integer
The maximum number of execution environments that can be provisioned for the function.
3956 3957 3958 3959 3960 3961 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3956 class FunctionScalingConfig < Struct.new( :min_execution_environments, :max_execution_environments) SENSITIVE = [] include Aws::Structure end |
#min_execution_environments ⇒ Integer
The minimum number of execution environments to maintain for the function.
3956 3957 3958 3959 3960 3961 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3956 class FunctionScalingConfig < Struct.new( :min_execution_environments, :max_execution_environments) SENSITIVE = [] include Aws::Structure end |