Skip to content

Create Workflow

glue_create_workflow R Documentation

Creates a new workflow

Description

Creates a new workflow.

Usage

glue_create_workflow(Name, Description, DefaultRunProperties, Tags,
  MaxConcurrentRuns)

Arguments

Name

[required] The name to be assigned to the workflow. It should be unique within your account.

Description

A description of the workflow.

DefaultRunProperties

A collection of properties to be used as part of each execution of the workflow.

Run properties may be logged. Do not pass plaintext secrets as properties. Retrieve secrets from a Glue Connection, Amazon Web Services Secrets Manager or other secret management mechanism if you intend to use them within the workflow run.

Tags

The tags to be used with this workflow.

MaxConcurrentRuns

You can use this parameter to prevent unwanted multiple updates to data, to control costs, or in some cases, to prevent exceeding the maximum number of concurrent runs of any of the component jobs. If you leave this parameter blank, there is no limit to the number of concurrent workflow runs.

Value

A list with the following syntax:

list(
  Name = "string"
)

Request syntax

svc$create_workflow(
  Name = "string",
  Description = "string",
  DefaultRunProperties = list(
    "string"
  ),
  Tags = list(
    "string"
  ),
  MaxConcurrentRuns = 123
)