get_value
Retrieve specific configuration options from Apache Airflow using section and option parameters to simplify system setup and customization.
Instructions
Get a specific option from configuration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
option | Yes | ||
section | Yes |
Input Schema (JSON Schema)
{
"properties": {
"option": {
"title": "Option",
"type": "string"
},
"section": {
"title": "Section",
"type": "string"
}
},
"required": [
"section",
"option"
],
"title": "get_valueArguments",
"type": "object"
}