Is it possible to pass a custom name to a flow run...
# ask-community
t
Is it possible to pass a custom name to a flow run in prefect 2.0?
j
@Tomás Emilio Silva Ebensperger do you mean the
flow_run_name
?
Copy code
@sync_compatible
@inject_client
async def run_deployment(
    name: str,
    client: OrionClient = None,
    parameters: dict = None,
    scheduled_time: datetime = None,
    flow_run_name: str = None,
This is the definition of
run_deployment
1
Hope it helps you!