AWS
get_function_concurrency
Get configuration information of lambda by its function name
Removes concurrency limit applied to the specified Lambda
Below are the details and signature of the activity Python module.
Type | action |
Module | chaosaws.awslambda.actions |
Name | delete_function_concurrency |
Return | mapping |
Usage
JSON
{
"name": "delete-function-concurrency",
"type": "action",
"provider": {
"type": "python",
"module": "chaosaws.awslambda.actions",
"func": "delete_function_concurrency",
"arguments": {
"function_name": ""
}
}
}
YAML
name: delete-function-concurrency
provider:
arguments:
function_name: ''
func: delete_function_concurrency
module: chaosaws.awslambda.actions
type: python
type: action
Arguments
Name | Type | Default | Required |
---|---|---|---|
function_name | string | Yes |
Signature
def delete_function_concurrency(
function_name: str,
configuration: Dict[str, Dict[str, str]] = None,
secrets: Dict[str, Dict[str, str]] = None) -> Dict[str, Any]:
pass