There are more AWS SDK examples available in the AWS Doc SDK Examples
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 themy-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.
-
For API details, see DeleteFunctionConcurrency
in AWS CLI Command Reference.
-
- PowerShell
-
- Tools for PowerShell
-
Example 1: This examples removes the Function Concurrency of the Lambda Function.
Remove-LMFunctionConcurrency -FunctionName "MylambdaFunction123"
-
For API details, see DeleteFunctionConcurrency in AWS Tools for PowerShell Cmdlet Reference.
-