dataflow_graphs
Creates, updates, deletes, gets or lists a dataflow_graphs resource.
Overview
| Name | dataflow_graphs |
| Type | Resource |
| Id | aws.glue.dataflow_graphs |
Fields
The following fields are returned by SELECT queries:
- get_dataflow_graph
| Name | Datatype | Description |
|---|---|---|
dag_edges | array | A list of the edges in the resulting DAG. |
dag_nodes | array | A list of the nodes in the resulting DAG. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_dataflow_graph | select | region | Transforms 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_dataflow_graph
Transforms a Python script into a directed acyclic graph (DAG).
SELECT
dag_edges,
dag_nodes
FROM aws.glue.dataflow_graphs
WHERE region = '{{ region }}' -- required
;