Skip to content

Start Workflow Run

glue_start_workflow_run R Documentation

Starts a new run of the specified workflow

Description

Starts a new run of the specified workflow.

Usage

glue_start_workflow_run(Name, RunProperties)

Arguments

Name

[required] The name of the workflow to start.

RunProperties

The workflow run properties for the new workflow run.

Value

A list with the following syntax:

list(
  RunId = "string"
)

Request syntax

svc$start_workflow_run(
  Name = "string",
  RunProperties = list(
    "string"
  )
)