calm-energy-71162
02/14/2023, 3:19 PMParameter
of that flow that has a default will be evaluated at deploy time (not execution time) and all the runs for that step function will have the same value for that parameter.
For example, if I have a parameter:
datetime_run = Parameter(
"datetime_run",
default=datetime.now()
)
For all runs of that step function this parameter will have the same value (the time of when the step function was deployed, not the time it was executed). Correct?