Class: Aws::Lambda::Types::PutFunctionConcurrencyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::PutFunctionConcurrencyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
Note:
When making an API call, you may pass PutFunctionConcurrencyRequest data as a hash:
{
function_name: "FunctionName", # required
reserved_concurrent_executions: 1, # required
}
Instance Attribute Summary collapse
-
#function_name ⇒ String
The name of the function you are setting concurrent execution limits on.
-
#reserved_concurrent_executions ⇒ Integer
The concurrent execution limit reserved for this function.
Instance Attribute Details
#function_name ⇒ String
The name of the function you are setting concurrent execution limits on. For more information, see concurrent-executions.
1884 1885 1886 1887 1888 |
# File 'lib/aws-sdk-lambda/types.rb', line 1884 class PutFunctionConcurrencyRequest < Struct.new( :function_name, :reserved_concurrent_executions) include Aws::Structure end |
#reserved_concurrent_executions ⇒ Integer
The concurrent execution limit reserved for this function. For more information, see concurrent-executions.
1884 1885 1886 1887 1888 |
# File 'lib/aws-sdk-lambda/types.rb', line 1884 class PutFunctionConcurrencyRequest < Struct.new( :function_name, :reserved_concurrent_executions) include Aws::Structure end |