Skip to main content

dataflow_graphs

Creates, updates, deletes, gets or lists a dataflow_graphs resource.

Overview

Namedataflow_graphs
TypeResource
Idaws.glue.dataflow_graphs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
dag_edgesarrayA list of the edges in the resulting DAG.
dag_nodesarrayA list of the nodes in the resulting DAG.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_dataflow_graphselectregionTransforms a Python script into a directed acyclic graph (DAG).

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Transforms a Python script into a directed acyclic graph (DAG).

SELECT
dag_edges,
dag_nodes
FROM aws.glue.dataflow_graphs
WHERE region = '{{ region }}' -- required
;