Skip to main content

scripts

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

Overview

Namescripts
TypeResource
Idaws.glue.scripts

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
create_scriptinsertregionTransforms a directed acyclic graph (DAG) into code.

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)

INSERT examples

Transforms a directed acyclic graph (DAG) into code.

INSERT INTO aws.glue.scripts (
DagNodes,
DagEdges,
Language,
region
)
SELECT
'{{ DagNodes }}',
'{{ DagEdges }}',
'{{ Language }}',
'{{ region }}'
RETURNING
python_script,
scala_code
;