Services or capabilities described in AWS documentation might vary by Region. To see the differences applicable to the AWS European Sovereign Cloud Region, see the AWS European Sovereign Cloud User Guide.Use DeleteFunctionConcurrency with a CLI
The following code examples show how to use DeleteFunctionConcurrency.
- CLI
-
- AWS CLI
-
To remove the reserved concurrent execution limit from a function
The following delete-function-concurrency example deletes the reserved concurrent execution limit from the my-function function.
aws lambda delete-function-concurrency \
--function-name my-function
This command produces no output.
For more information, see Reserving Concurrency for a Lambda Function in the AWS Lambda Developer Guide.
- PowerShell
-
- Tools for PowerShell V4
-
Example 1: This examples removes the Function Concurrency of the Lambda Function.
Remove-LMFunctionConcurrency -FunctionName "MylambdaFunction123"
- Tools for PowerShell V5
-
Example 1: This examples removes the Function Concurrency of the Lambda Function.
Remove-LMFunctionConcurrency -FunctionName "MylambdaFunction123"
For a complete list of AWS SDK developer guides and code examples, see
Using Lambda with an AWS SDK.
This topic also includes information about getting started and details about previous SDK versions.