Workflow

class Workflow

A workflow is a collection of multiple dependent Glue jobs and crawlers that are run to complete a complex ETL task. A workflow manages the execution and monitoring of all its jobs and crawlers.

Types

Link copied to clipboard
class Builder
Link copied to clipboard
object Companion

Properties

Link copied to clipboard

This structure indicates the details of the blueprint that this particular workflow is created from.

Link copied to clipboard

The date and time when the workflow was created.

Link copied to clipboard

A collection of properties to be used as part of each execution of the workflow. The run properties are made available to each job in the workflow. A job can modify the properties for the next jobs in the flow.

Link copied to clipboard

A description of the workflow.

Link copied to clipboard

The graph representing all the Glue components that belong to the workflow as nodes and directed connections between them as edges.

Link copied to clipboard

The date and time when the workflow was last modified.

Link copied to clipboard

The information about the last execution of the workflow.

Link copied to clipboard

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.

Link copied to clipboard
val name: String?

The name of the workflow.

Functions

Link copied to clipboard
inline fun copy(block: Workflow.Builder.() -> Unit = {}): Workflow
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String