Class: Aws::Lambda::Types::DeleteFunctionConcurrencyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::DeleteFunctionConcurrencyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
Note:
When making an API call, you may pass DeleteFunctionConcurrencyRequest data as a hash:
{
function_name: "FunctionName", # required
}
Instance Attribute Summary collapse
-
#function_name ⇒ String
The name of the function you are removing concurrent execution limits from.
Instance Attribute Details
#function_name ⇒ String
The name of the function you are removing concurrent execution limits from. For more information, see concurrent-executions.
710 711 712 713 |
# File 'lib/aws-sdk-lambda/types.rb', line 710 class DeleteFunctionConcurrencyRequest < Struct.new( :function_name) include Aws::Structure end |