parameters property

List<String>? parameters
getter/setter pair

Parameters for the Airflow command/subcommand as an array of arguments.

It may contain positional arguments like ["my-dag-id"], key-value parameters like ["--foo=bar"] or ["--foo","bar"], or other flags like ["-f"].

Implementation

core.List<core.String>? parameters;