Class: Aws::Lambda::Types::FunctionScalingConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#max_execution_environmentsInteger

The maximum number of execution environments that can be provisioned for the function.

Returns:

  • (Integer)


3899
3900
3901
3902
3903
3904
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3899

class FunctionScalingConfig < Struct.new(
  :min_execution_environments,
  :max_execution_environments)
  SENSITIVE = []
  include Aws::Structure
end

#min_execution_environmentsInteger

The minimum number of execution environments to maintain for the function.

Returns:

  • (Integer)


3899
3900
3901
3902
3903
3904
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3899

class FunctionScalingConfig < Struct.new(
  :min_execution_environments,
  :max_execution_environments)
  SENSITIVE = []
  include Aws::Structure
end