Description Usage Arguments Request syntax Examples
View source: R/lambda_operations.R
Removes a concurrent execution limit from a function.
1 | lambda_delete_function_concurrency(FunctionName)
|
FunctionName |
[required] The name 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. |
1 2 3 | svc$delete_function_concurrency(
FunctionName = "string"
)
|
1 2 3 4 5 6 7 8 | ## 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.