Hey all! I'm building flows programmatically using...
# ask-community
m
Hey all! I'm building flows programmatically using
Deployment.build_from_flow(schedules=[...], parameters={...}
. Is it possible to pass different schedules with different default parameters?
c
Hi Michal, to set different default parameters, you would want a separate
Deployment
for each set of parameters. The parameters aren't connected to the schedule, but rather it's the
Deployment
that ties together schedules and parameters.
m
@Chris Guidry thanks!