:wave: hi folks…..Is there an easy way to get the ...
# ask-metaflow
s
👋 hi folks…..Is there an easy way to get the URL or details of an AWS Step Function from the
Run
? I’d love to paste a URL so someone running can easily get to the AWS UI. thankyou
1
a
You should be able to craft a URL for Step Functions UI from the metadata available for a run and use the UI plugins to surface that link in the Metaflow UI.
The UI plugin could look something like this
s
Cool! @square-wire-39606 but I’m not using the Metaflow UI ….yet. Was hoping some of the info would be captured in the
Run
or some place during flow
a
Yes - you would have the metadata captured in
Run('foo/run-id')['start'].task.metadata_dict
that will have the step functions state machine name
🙌 1