delete_connection
Remove a specific connection from Apache Airflow by providing its connection ID, allowing management of data pipeline connections through the Airflow REST API.
Instructions
Delete a connection by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
conn_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"conn_id": {
"title": "Conn Id",
"type": "string"
}
},
"required": [
"conn_id"
],
"type": "object"
}