brave-fall-84099
04/07/2025, 3:54 PMDeployer
API equivalent of running python parameter_flow.py step-functions trigger
?
I know I can:
deployed_flow = deployer.step_functions().create(...)
deployed_flow.trigger()
However how can I just say "trigger whatever the latest deployed version of the flow is". So trigger()
without create()
.
My use case is that I want some code to trigger a step-function that is currently deployed without implicitly having to deploy my own version of it.dry-beach-38304
04/07/2025, 5:02 PMfrom_deployment
but (a) it’s not yet documented and (b) it’s not implemented for step-functions (though it seems to be for argo-workflows) which is what you are looking for (see: https://github.com/Netflix/metaflow/blob/c7a3b8ae4ddf771010a1abad15c1688fe7bf2109/[…]w/plugins/aws/step_functions/step_functions_deployer_objects.py). @brainy-truck-72938 for more context and update (I am not sure if implementing this function is in the works)brave-fall-84099
04/08/2025, 1:06 PMpython flow.py step-functions trigger
via os.subprocess for now