Skip to content

Lambda  >  Operations  >  delete_function_concurrency

delete_function_concurrency

Operation

delete_function_concurrency async

delete_function_concurrency(input: DeleteFunctionConcurrencyInput, plugins: list[Plugin] | None = None) -> DeleteFunctionConcurrencyOutput

Removes a concurrent execution limit from a function.

Parameters:

Name Type Description Default
input DeleteFunctionConcurrencyInput

An instance of DeleteFunctionConcurrencyInput.

required
plugins list[Plugin] | None

A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations.

None

Returns:

Type Description
DeleteFunctionConcurrencyOutput

An instance of DeleteFunctionConcurrencyOutput.

Input

DeleteFunctionConcurrencyInput dataclass

Dataclass for DeleteFunctionConcurrencyInput structure.

Attributes

function_name class-attribute instance-attribute
function_name: str | None = None

The name or ARN of the Lambda function.

Name formats

  • Function name -- my-function.

  • Function ARN -- arn:aws:lambda:us-west-2:123456789012:function:my-function.

  • Partial ARN -- 123456789012:function:my-function.

The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.

Output

DeleteFunctionConcurrencyOutput dataclass

Dataclass for DeleteFunctionConcurrencyOutput structure.