Delete Function Concurrency
lambda_delete_function_concurrency | R Documentation |
Removes a concurrent execution limit from a function¶
Description¶
Removes a concurrent execution limit from a function.
Usage¶
lambda_delete_function_concurrency(FunctionName)
Arguments¶
FunctionName |
[required] The name or ARN of the Lambda function. Name formats
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length. |
Value¶
An empty list.
Request syntax¶
svc$delete_function_concurrency(
FunctionName = "string"
)
Examples¶
## Not run:
# The following example deletes the reserved concurrent execution limit
# from a function named my-function.
svc$delete_function_concurrency(
FunctionName = "my-function"
)
## End(Not run)