delete_work_queue
Remove a work queue from Prefect's workflow automation platform by specifying its unique identifier to manage workflow resources effectively.
Instructions
Delete a work queue by ID.
Args: work_queue_id: The work queue UUID
Returns: Confirmation message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
work_queue_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"work_queue_id": {
"title": "Work Queue Id",
"type": "string"
}
},
"required": [
"work_queue_id"
],
"type": "object"
}