create_connection
Create Airflow connections by specifying connection ID, type, and authentication details to enable data pipeline integrations.
Instructions
Create a connection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
conn_id | Yes | ||
conn_type | Yes | ||
extra | No | ||
host | No | ||
login | No | ||
password | No | ||
port | No | ||
schema | No |
Input Schema (JSON Schema)
{
"properties": {
"conn_id": {
"title": "Conn Id",
"type": "string"
},
"conn_type": {
"title": "Conn Type",
"type": "string"
},
"extra": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Extra"
},
"host": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Host"
},
"login": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Login"
},
"password": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Password"
},
"port": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Port"
},
"schema": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Schema"
}
},
"required": [
"conn_id",
"conn_type"
],
"type": "object"
}