cancel_flow_run
Stop an active workflow execution in Prefect by providing the flow run UUID to terminate the process and free up resources.
Instructions
Cancel a flow run.
Args: flow_run_id: The flow run UUID
Returns: Confirmation message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
flow_run_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"flow_run_id": {
"title": "Flow Run Id",
"type": "string"
}
},
"required": [
"flow_run_id"
],
"type": "object"
}