AWS
put_function_concurrency
Throttles Lambda by setting reserved concurrency amount
Below are the details and signature of the activity Python module.
Type | action |
Module | chaosaws.awslambda.actions |
Name | delete_event_source_mapping |
Return | mapping |
Usage
JSON
{
"name": "delete-event-source-mapping",
"type": "action",
"provider": {
"type": "python",
"module": "chaosaws.awslambda.actions",
"func": "delete_event_source_mapping",
"arguments": {
"event_uuid": ""
}
}
}
YAML
name: delete-event-source-mapping
provider:
arguments:
event_uuid: ''
func: delete_event_source_mapping
module: chaosaws.awslambda.actions
type: python
type: action
Arguments
Name | Type | Default | Required |
---|---|---|---|
event_uuid | string | Yes |
Signature
def delete_event_source_mapping(
event_uuid: str,
configuration: Dict[str, Dict[str, str]] = None,
secrets: Dict[str, Dict[str, str]] = None) -> Dict[str, Any]:
pass